[PackageKit-commit] packagekit: Branch 'master' - 14 commits
Richard Hughes
hughsient at kemper.freedesktop.org
Fri Jun 19 04:46:28 PDT 2009
backends/alpm/pk-backend-alpm.c | 127 ++++++++--
backends/yum/yumBackend.py | 2
configure.ac | 11
docs/html/img/gpk-prefs.png |binary
lib/packagekit-glib/pk-enum.c | 1
lib/packagekit-glib/pk-enum.h | 1
man/Makefile.am | 5
po/kn.po | 90 +++----
po/pl.po | 340 +++++++++++++++-------------
policy/org.freedesktop.packagekit.policy.in | 22 -
src/pk-polkit-action-lookup.c | 17 -
src/pk-transaction.c | 6
12 files changed, 358 insertions(+), 264 deletions(-)
New commits:
commit 89909015ea6f07364759419c2888ab62d2d5f17e
Author: Richard Hughes <richard at hughsie.com>
Date: Fri Jun 19 11:56:40 2009 +0100
Emit StatusChanged(finished) if we failed auth to fix up the GUI
diff --git a/src/pk-transaction.c b/src/pk-transaction.c
index c20452d..584a8ba 100644
--- a/src/pk-transaction.c
+++ b/src/pk-transaction.c
@@ -1569,7 +1569,8 @@ pk_transaction_action_obtain_authorization_finished_cb (GObject *source_object,
/* did not auth */
if (!polkit_authorization_result_get_is_authorized (result)) {
- /* emit an ::ErrorCode() and then ::Finished() */
+ /* emit an ::StatusChanged, ::ErrorCode() and then ::Finished() */
+ pk_transaction_status_changed_emit (transaction, PK_STATUS_ENUM_FINISHED);
pk_transaction_error_code_emit (transaction, PK_ERROR_ENUM_NOT_AUTHORIZED, "failed to obtain auth");
pk_transaction_finished_emit (transaction, PK_EXIT_ENUM_FAILED, 0);
commit 0f85960b8378b32bc2cbdd9bd36068f81f437098
Author: Valeriy Lyasotskiy <onestep at ukr.net>
Date: Fri Jun 19 11:56:18 2009 +0100
Don't check for docbook2man, check for libxslt
diff --git a/configure.ac b/configure.ac
index 5c34bb7..4a5f22d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -298,13 +298,13 @@ AC_SUBST(CONNMAN_CFLAGS)
AC_SUBST(CONNMAN_LIBS)
dnl ---------------------------------------------------------------------------
-dnl - Is docbook2man available?
+dnl - Is xsltproc available?
dnl ---------------------------------------------------------------------------
-AC_PATH_PROG(DOCBOOK2MAN, docbook2man, no)
-if test "$DOCBOOK2MAN" = "no" ; then
- AC_MSG_WARN([docbook2man not found, will not be able to build man documentation])
+AC_PATH_PROG(XSLTPROC, xsltproc, no)
+if test "$XSLTPROC" = "no" ; then
+ AC_MSG_WARN([xsltproc not found, will not be able to build man documentation])
fi
-AM_CONDITIONAL(HAVE_DOCBOOK2MAN, [test "$DOCBOOK2MAN" != "no"])
+AM_CONDITIONAL(HAVE_XSLTPROC, [test "$XSLTPROC" != "no"])
dnl ---------------------------------------------------------------------------
dnl - Make paths available for source files
diff --git a/man/Makefile.am b/man/Makefile.am
index 673a847..ecb50bc 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -3,14 +3,14 @@ EXTRA_DIST = \
pkmon.xml \
pkgenpack.xml
-if HAVE_DOCBOOK2MAN
+if HAVE_XSLTPROC
man_MANS = \
pkcon.1 \
pkmon.1 \
pkgenpack.1
endif
-if HAVE_DOCBOOK2MAN
+if HAVE_XSLTPROC
pkcon.1: pkcon.xml
xsltproc http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $? &> /dev/null
@@ -19,7 +19,6 @@ pkmon.1: pkmon.xml
pkgenpack.1: pkgenpack.xml
xsltproc http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $? &> /dev/null
-
endif
clean-local :
commit def6dbd2c577b0b3deaf7a13a7c3de63856ed28a
Author: Valeriy Lyasotskiy <onestep at ukr.net>
Date: Fri Jun 19 11:52:45 2009 +0100
Remove enable_developer section in configure end output
diff --git a/configure.ac b/configure.ac
index eaafc64..5c34bb7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -765,7 +765,6 @@ echo "
cppflags: ${CPPFLAGS}
Building unit tests: ${enable_tests}
Able to run locally: ${enable_local}
- Developer warnings: ${enable_developer}
Security framework: ${with_security_framework}
Networking stacks: ${networking_apis}
Browser plugin: ${build_browser_plugin}
commit a2425135a23c2b43c0816fa344b9a0a7697c95ea
Author: Richard Hughes <richard at hughsie.com>
Date: Fri Jun 19 11:51:39 2009 +0100
Revert "configure: remove check for docbook2man as it is not really needed (check for libxslt?)"
This reverts commit 08835fdfe11528421ebb25fefb15b0b7cefb953b.
diff --git a/autogen.sh b/autogen.sh
index 217750a..70925ea 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -29,7 +29,7 @@ fi
(cd $srcdir && autoreconf --force --install) || exit 1
(cd $srcdir && intltoolize) || exit 1
-conf_flags="--enable-gtk-doc"
+conf_flags="--enable-maintainer-mode --enable-gtk-doc"
if test x$NOCONFIGURE = x; then
echo Running $srcdir/configure $conf_flags "$@" ...
diff --git a/configure.ac b/configure.ac
index 589a091..eaafc64 100644
--- a/configure.ac
+++ b/configure.ac
@@ -298,6 +298,15 @@ AC_SUBST(CONNMAN_CFLAGS)
AC_SUBST(CONNMAN_LIBS)
dnl ---------------------------------------------------------------------------
+dnl - Is docbook2man available?
+dnl ---------------------------------------------------------------------------
+AC_PATH_PROG(DOCBOOK2MAN, docbook2man, no)
+if test "$DOCBOOK2MAN" = "no" ; then
+ AC_MSG_WARN([docbook2man not found, will not be able to build man documentation])
+ fi
+AM_CONDITIONAL(HAVE_DOCBOOK2MAN, [test "$DOCBOOK2MAN" != "no"])
+
+dnl ---------------------------------------------------------------------------
dnl - Make paths available for source files
dnl ---------------------------------------------------------------------------
AC_SUBST(SYSCONFDIR, $sysconfdir)
@@ -756,6 +765,7 @@ echo "
cppflags: ${CPPFLAGS}
Building unit tests: ${enable_tests}
Able to run locally: ${enable_local}
+ Developer warnings: ${enable_developer}
Security framework: ${with_security_framework}
Networking stacks: ${networking_apis}
Browser plugin: ${build_browser_plugin}
diff --git a/man/Makefile.am b/man/Makefile.am
index 923f929..673a847 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -3,11 +3,14 @@ EXTRA_DIST = \
pkmon.xml \
pkgenpack.xml
+if HAVE_DOCBOOK2MAN
man_MANS = \
pkcon.1 \
pkmon.1 \
pkgenpack.1
+endif
+if HAVE_DOCBOOK2MAN
pkcon.1: pkcon.xml
xsltproc http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $? &> /dev/null
@@ -17,6 +20,8 @@ pkmon.1: pkmon.xml
pkgenpack.1: pkgenpack.xml
xsltproc http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $? &> /dev/null
+endif
+
clean-local :
rm -f *~
rm -f *.1
commit b8dcc82cf149f27ca32aab31efbf1cdf3b7ec7a4
Author: Richard Hughes <richard at hughsie.com>
Date: Fri Jun 19 11:47:39 2009 +0100
Send PK_STATUS_ENUM_WAITING_FOR_AUTH when we are waiting for an authentication
diff --git a/src/pk-transaction.c b/src/pk-transaction.c
index 97218cd..c20452d 100644
--- a/src/pk-transaction.c
+++ b/src/pk-transaction.c
@@ -1699,6 +1699,9 @@ pk_transaction_obtain_authorization (PkTransaction *transaction, gboolean only_t
/* log */
pk_syslog_add (transaction->priv->syslog, PK_SYSLOG_TYPE_AUTH, "uid %i is trying to obtain %s auth (only_trusted:%i)", transaction->priv->uid, action_id, only_trusted);
+ /* emit status for GUIs */
+ pk_transaction_status_changed_emit (transaction, PK_STATUS_ENUM_WAITING_FOR_AUTH);
+
/* check subject */
transaction->priv->waiting_for_auth = TRUE;
commit dfd6dde2deeb2ee0fd932d4dca9efc105d4e1ccd
Author: Richard Hughes <richard at hughsie.com>
Date: Fri Jun 19 11:24:44 2009 +0100
Update a screenshot
diff --git a/docs/html/img/gpk-prefs.png b/docs/html/img/gpk-prefs.png
index ba64279..45d90c9 100644
Binary files a/docs/html/img/gpk-prefs.png and b/docs/html/img/gpk-prefs.png differ
commit 0f0a9bdb242c57ac5e50cc774f3dda99d7fdc1a4
Author: Richard Hughes <richard at hughsie.com>
Date: Fri Jun 19 11:24:35 2009 +0100
Add a new status enum, waiting-for-auth
diff --git a/lib/packagekit-glib/pk-enum.c b/lib/packagekit-glib/pk-enum.c
index ef483b4..80bcd81 100644
--- a/lib/packagekit-glib/pk-enum.c
+++ b/lib/packagekit-glib/pk-enum.c
@@ -86,6 +86,7 @@ static const PkEnumMatch enum_status[] = {
{PK_STATUS_ENUM_SCAN_APPLICATIONS, "scan-applications"},
{PK_STATUS_ENUM_GENERATE_PACKAGE_LIST, "generate-package-list"},
{PK_STATUS_ENUM_WAITING_FOR_LOCK, "waiting-for-lock"},
+ {PK_STATUS_ENUM_WAITING_FOR_AUTH, "waiting-for-auth"},
{0, NULL}
};
diff --git a/lib/packagekit-glib/pk-enum.h b/lib/packagekit-glib/pk-enum.h
index 0e49cb2..f0cbf47 100644
--- a/lib/packagekit-glib/pk-enum.h
+++ b/lib/packagekit-glib/pk-enum.h
@@ -135,6 +135,7 @@ typedef enum {
PK_STATUS_ENUM_SCAN_APPLICATIONS,
PK_STATUS_ENUM_GENERATE_PACKAGE_LIST,
PK_STATUS_ENUM_WAITING_FOR_LOCK,
+ PK_STATUS_ENUM_WAITING_FOR_AUTH,
PK_STATUS_ENUM_UNKNOWN
} PkStatusEnum;
commit 42bb87696ad97a9bd6aa787cda508c960c0d41ed
Author: Richard Hughes <richard at hughsie.com>
Date: Thu Jun 18 08:47:36 2009 +0100
Be less clever getting the icon in the action lookup function
diff --git a/src/pk-polkit-action-lookup.c b/src/pk-polkit-action-lookup.c
index 7c19599..ba33fda 100644
--- a/src/pk-polkit-action-lookup.c
+++ b/src/pk-polkit-action-lookup.c
@@ -168,40 +168,23 @@ static gchar *
pk_action_lookup_get_icon_name (PolkitBackendActionLookup *lookup, const gchar *action_id,
PolkitDetails *details, PolkitActionDescription *action_description)
{
- PkRoleEnum role = PK_ROLE_ENUM_UNKNOWN;
gboolean only_trusted = TRUE;
- const gchar *role_text;
const gchar *only_trusted_text;
gchar *value = NULL;
if (!g_str_has_prefix (action_id, "org.freedesktop.packagekit."))
goto out;
- /* get role */
- role_text = polkit_details_lookup (details, "role");
- if (role_text != NULL)
- role = pk_role_enum_from_text (role_text);
-
/* get only-trusted */
only_trusted_text = polkit_details_lookup (details, "only-trusted");
if (only_trusted_text != NULL)
only_trusted = g_str_equal (only_trusted_text, "true");
- /* set proxy */
- if (role == PK_ROLE_ENUM_UNKNOWN) {
- value = g_strdup ("preferences-system-network-proxy");
- goto out;
- }
-
/* only-trusted */
if (!only_trusted) {
value = g_strdup ("emblem-important");
goto out;
}
-
- /* fallback */
- value = g_strdup ("package-x-generic");
-
out:
return value;
}
commit d684105abdcdcd0b094225f98fb181f5327cd3ce
Author: Richard Hughes <richard at hughsie.com>
Date: Thu Jun 18 08:46:12 2009 +0100
Use generic icons for the PolicyKit policy actions
diff --git a/policy/org.freedesktop.packagekit.policy.in b/policy/org.freedesktop.packagekit.policy.in
index 98bf5f3..c683de7 100644
--- a/policy/org.freedesktop.packagekit.policy.in
+++ b/policy/org.freedesktop.packagekit.policy.in
@@ -16,7 +16,7 @@
<action id="org.freedesktop.packagekit.cancel-foreign">
<_description>Cancel foreign task</_description>
<_message>Authentication is required to cancel a task that was not started by yourself</_message>
- <icon_name>pk-package-delete</icon_name>
+ <icon_name>package-x-generic</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
@@ -27,7 +27,7 @@
<action id="org.freedesktop.packagekit.package-install">
<_description>Install signed package</_description>
<_message>Authentication is required to install a signed package</_message>
- <icon_name>pk-package-add</icon_name>
+ <icon_name>package-x-generic</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
@@ -38,7 +38,7 @@
<action id="org.freedesktop.packagekit.package-install-untrusted">
<_description>Install untrusted local file</_description>
<_message>Authentication is required to install an untrusted package</_message>
- <icon_name>pk-package-add</icon_name>
+ <icon_name>package-x-generic</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
@@ -49,7 +49,7 @@
<action id="org.freedesktop.packagekit.system-trust-signing-key">
<_description>Trust a key used for signing packages</_description>
<_message>Authentication is required to consider a key used for signing packages as trusted</_message>
- <icon_name>pk-package-add</icon_name>
+ <icon_name>package-x-generic</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
@@ -60,7 +60,7 @@
<action id="org.freedesktop.packagekit.package-eula-accept">
<_description>Accept EULA</_description>
<_message>Authentication is required to accept a EULA</_message>
- <icon_name>pk-package-add</icon_name>
+ <icon_name>package-x-generic</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
@@ -71,7 +71,7 @@
<action id="org.freedesktop.packagekit.package-remove">
<_description>Remove package</_description>
<_message>Authentication is required to remove packages</_message>
- <icon_name>pk-package-delete</icon_name>
+ <icon_name>package-x-generic</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
@@ -82,7 +82,7 @@
<action id="org.freedesktop.packagekit.system-update">
<_description>Update packages</_description>
<_message>Authentication is required to update packages</_message>
- <icon_name>pk-package-update</icon_name>
+ <icon_name>package-x-generic</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
@@ -93,7 +93,7 @@
<action id="org.freedesktop.packagekit.system-rollback">
<_description>Rollback to a previous transaction</_description>
<_message>Authentication is required to rollback a transaction</_message>
- <icon_name>pk-rollback</icon_name>
+ <icon_name>package-x-generic</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
@@ -104,7 +104,7 @@
<action id="org.freedesktop.packagekit.system-sources-configure">
<_description>Change software source parameters</_description>
<_message>Authentication is required to change software source parameters</_message>
- <icon_name>pk-package-info</icon_name>
+ <icon_name>package-x-generic</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
@@ -115,7 +115,7 @@
<action id="org.freedesktop.packagekit.system-sources-refresh">
<_description>Refresh system sources</_description>
<_message>Authentication is required to refresh the system sources</_message>
- <icon_name>pk-refresh-cache</icon_name>
+ <icon_name>package-x-generic</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
@@ -126,7 +126,7 @@
<action id="org.freedesktop.packagekit.system-network-proxy-configure">
<_description>Set network proxy</_description>
<_message>Authentication is required to set the network proxy used for downloading packages</_message>
- <icon_name>applications-internet</icon_name>
+ <icon_name>preferences-system-network-proxy</icon_name>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>no</allow_inactive>
commit 20ea7ef2fcef69c320e5fa3335a70569e226ac06
Author: shanky <shanky at fedoraproject.org>
Date: Fri Jun 19 05:36:48 2009 +0000
Sending translation for Kannada
diff --git a/po/kn.po b/po/kn.po
index 06dcbf4..6c1ea2e 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -1,14 +1,14 @@
-# translation of packagekit.master.PackageKit.po to Kannada
+# translation of packagekit.master.kn.po to Kannada
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Shankar Prasad <svenkate at redhat.com>, 2009.
msgid ""
msgstr ""
-"Project-Id-Version: packagekit.master.PackageKit\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-04-14 02:09+0000\n"
-"PO-Revision-Date: 2009-04-14 14:55+0530\n"
+"Project-Id-Version: packagekit.master.kn\n"
+"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=PackageKit&component=General\n"
+"POT-Creation-Date: 2009-05-27 15:24+0000\n"
+"PO-Revision-Date: 2009-06-15 14:37+0530\n"
"Last-Translator: Shankar Prasad <svenkate at redhat.com>\n"
"Language-Team: Kannada <en at li.org>\n"
"MIME-Version: 1.0\n"
@@ -495,8 +495,8 @@ msgstr "à²à²ªà²à²à³à²à³à²à²³à³:"
#. TRANSLATORS: if we should show debugging data
#: ../client/pk-console.c:1767 ../client/pk-generate-pack.c:185
#: ../client/pk-monitor.c:125
-#: ../contrib/command-not-found/pk-command-not-found.c:518
-#: ../src/pk-main.c:199
+#: ../contrib/command-not-found/pk-command-not-found.c:520
+#: ../src/pk-main.c:211
msgid "Show extra debugging information"
msgstr "ಹà³à²à³à²à²¿à²¨ ದà³à²· ನಿವಾರಣಾ ಮಾಹಿತಿಯನà³à²¨à³ ತà³à²°à²¿à²¸à³"
@@ -701,55 +701,62 @@ msgstr "à²à²à³âಪà³à²à³ à²à³à²¶ à²
ಥವ à²à²¡à²¤à²¦ ಹà³à²¸à²°à²
msgid "The package manager cannot perform this type of operation."
msgstr "ಪà³à²¯à²¾à²à³à²à³ ವà³à²¯à²µà²¸à³à²¥à²¾à²ªà² ಠಬà²à³à²¯ à²à²¾à²°à³à²¯à²µà²¨à³à²¨à³ ನಿರà³à²µà²¹à²¿à²¸à²²à³ ಸಾಧà³à²¯à²µà²¿à²²à³à²²."
+#. TRANSLATORS: This is when the distro didn't include libarchive support into PK
+#: ../client/pk-generate-pack.c:280
+msgid ""
+"Service packs cannot be created as PackageKit was not built with libarchive "
+"support."
+msgstr "PackageKit à²
ನà³à²¨à³ libarchive ಬà³à²à²¬à²²à²¦à³à²à²¦à²¿à²à³ ನಿರà³à²®à²¿à²¸à²¦à³ à²à²°à³à²µ à²à²¾à²°à²£ ಸರà³à²µà²¿à²¸à³ ಪà³à²¯à²¾à²à³âà²à²³à²¨à³à²¨à³ ನಿರà³à²®à²¿à²¸à²²à³ ಸಾಧà³à²¯à²µà²¿à²°à³à²µà³à²¦à²¿à²²à³à²²."
+
#. TRANSLATORS: the user specified an absolute path, but didn't get the extension correct
-#: ../client/pk-generate-pack.c:285
+#: ../client/pk-generate-pack.c:291
msgid "If specifying a file, the service pack name must end with"
msgstr "à²à²à²¦à³ à²à²¡à²¤à²µà²¨à³à²¨à³ ಸà³à²à²¿à²¸à³à²µà²à²¤à²¿à²¦à³à²¦à²°à³, ಸರà³à²µà²¿à²¸à³â ಪà³à²¯à²¾à²à³ ಹà³à²¸à²°à³ à²à²¦à²°à³à²à²¦à²¿à²à³ ಪà³à²°à³à²£à²à³à²³à³à²³à²¬à³à²à³"
#. TRANSLATORS: This is when file already exists
-#: ../client/pk-generate-pack.c:301
+#: ../client/pk-generate-pack.c:307
msgid "A pack with the same name already exists, do you want to overwrite it?"
msgstr "à²à²¦à³ ಹà³à²¸à²°à²¿à²¨ à²à²à²¦à³ ಪà³à²¯à²¾à²à³ à²
ಸà³à²¤à²¿à²¤à³à²µà²¦à²²à³à²²à²¿à²¦à³, ನà³à²µà²¦à²¨à³à²¨à³ ತಿದà³à²¦à²¿ ಬರà³à²¯à²²à³ ಬಯಸà³à²¤à³à²¤à³à²°à³?"
#. TRANSLATORS: This is when the pack was not overwritten
-#: ../client/pk-generate-pack.c:304
+#: ../client/pk-generate-pack.c:310
msgid "The pack was not overwritten."
msgstr "ಪà³à²¯à²¾à²à³ à²
ನà³à²¨à³ ತಿದà³à²¦à²¿ ಬರà³à²¯à²²à²¾à²à²¿à²²à³à²²."
#. TRANSLATORS: This is when the temporary directory cannot be created, the directory name follows
-#: ../client/pk-generate-pack.c:317
+#: ../client/pk-generate-pack.c:323
msgid "Failed to create directory:"
msgstr "à²à³à²¶à²µà²¨à³à²¨à³ ನಿರà³à²®à²¿à²¸à³à²µà²²à³à²²à²¿ ವಿಫಲà²à³à²à²¡à²¿à²¦à³:"
#. TRANSLATORS: This is when the list of packages from the remote computer cannot be opened
-#: ../client/pk-generate-pack.c:327
+#: ../client/pk-generate-pack.c:333
msgid "Failed to open package list."
msgstr "ಪà³à²¯à²¾à²à³à²à³à²à²³ ಪà²à³à²à²¿à²¯à²¨à³à²¨à³ ತà³à²°à³à²¯à³à²µà²²à³à²²à²¿ ವಿಫಲà²à³à²à²¡à²¿à²¦à³."
#. TRANSLATORS: The package name is being matched up to available packages
-#: ../client/pk-generate-pack.c:338
+#: ../client/pk-generate-pack.c:344
msgid "Finding package name."
msgstr "ಪà³à²¯à²¾à²à³à²à²¿à²¨ ಹà³à²¸à²°à²¨à³à²¨à³ ಪತà³à²¤à³ ಮಾಡಲಾà²à³à²¤à³à²¤à²¿à²¦à³."
#. TRANSLATORS: This is when the package cannot be found in any software source. The detailed error follows
-#: ../client/pk-generate-pack.c:342
+#: ../client/pk-generate-pack.c:348
#, c-format
msgid "Failed to find package '%s': %s"
msgstr "ಪà³à²¯à²¾à²à³à²à³ '%s' à²
ನà³à²¨à³ ಪತà³à²¤à³ ಮಾಡಲಾà²à²²à²¿à²²à³à²²: %s"
#. TRANSLATORS: This is telling the user we are in the process of making the pack
-#: ../client/pk-generate-pack.c:359
+#: ../client/pk-generate-pack.c:365
msgid "Creating service pack..."
msgstr "ಸರà³à²µà²¿à²¸à³â ಪà³à²¯à²¾à²à²¨à³à²¨à³ ರà²à²¿à²¸à²²à²¾à²à³à²¤à³à²¤à²¿à²¦à³..."
#. TRANSLATORS: we succeeded in making the file
-#: ../client/pk-generate-pack.c:366
+#: ../client/pk-generate-pack.c:372
#, c-format
msgid "Service pack created '%s'"
msgstr "ಸರà³à²µà²¿à²¸à³â ಪà³à²¯à²¾à²à²¨à³à²¨à³ ರà²à²¿à²¸à²²à²¾à²à²¿à²¦à³ '%s'"
#. TRANSLATORS: we failed to make te file
-#: ../client/pk-generate-pack.c:371
+#: ../client/pk-generate-pack.c:377
#, c-format
msgid "Failed to create '%s': %s"
msgstr "'%s' à²
ನà³à²¨à³ ರà²à²¿à²¸à³à²µà²²à³à²²à²¿ ವಿಫಲà²à³à²à²¡à²¿à²¦à³: %s"
@@ -781,71 +788,71 @@ msgid "Please enter a number from 1 to %i: "
msgstr "1 ರಿà²à²¦ %i à²à²³à²à²¿à²¨ à²à²à²¦à³ à²
à²à²à³à²¯à²¨à³à²¨à³ ನಮà³à²¦à²¿à²¸à²¿: "
#. TRANSLATORS: we failed to find the package, this shouldn't happen
-#: ../contrib/command-not-found/pk-command-not-found.c:369
+#: ../contrib/command-not-found/pk-command-not-found.c:371
msgid "Failed to search for file"
msgstr "à²à²¡à²¤à²à³à²à²¾à²à²¿ ಹà³à²¡à³à²à³à²µà²²à³à²²à²¿ ವಿಫಲà²à³à²à²¡à²¿à²¦à³"
#. TRANSLATORS: we failed to launch the executable, the error follows
-#: ../contrib/command-not-found/pk-command-not-found.c:493
+#: ../contrib/command-not-found/pk-command-not-found.c:495
msgid "Failed to launch:"
msgstr "à²à²°à²à²à²¿à²¸à³à²µà²²à³à²²à²¿ ವಿಫಲà²à³à²à²¡à²¿à²¦à³:"
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/command-not-found/pk-command-not-found.c:534
+#: ../contrib/command-not-found/pk-command-not-found.c:536
msgid "PackageKit Command Not Found"
msgstr "PackageKit à²à²à³à²à³à²¯à³ à²à²à²¡à³à²¬à²à²¦à²¿à²²à³à²²"
#. TRANSLATORS: the prefix of all the output telling the user why it's not executing
-#: ../contrib/command-not-found/pk-command-not-found.c:556
+#: ../contrib/command-not-found/pk-command-not-found.c:559
msgid "Command not found."
msgstr "à²à²à³à²à³à²¯à³ à²à²à²¡à³à²¬à²à²¦à²¿à²²à³à²²."
#. TRANSLATORS: tell the user what we think the command is
-#: ../contrib/command-not-found/pk-command-not-found.c:563
+#: ../contrib/command-not-found/pk-command-not-found.c:566
msgid "Similar command is:"
msgstr "ಹà³à²²à³à²µ à²à²à³à²à³:"
#. TRANSLATORS: Ask the user if we should run the similar command
-#: ../contrib/command-not-found/pk-command-not-found.c:572
+#: ../contrib/command-not-found/pk-command-not-found.c:575
msgid "Run similar command:"
msgstr "à²à²¦à²¨à³à²¨à³ ಹà³à²²à³à²µ à²à²à³à²à³à²¯à²¨à³à²¨à³ à²à²²à²¾à²¯à²¿à²¸à²¿:"
#. TRANSLATORS: show the user a list of commands that they could have meant
#. TRANSLATORS: show the user a list of commands we could run
-#: ../contrib/command-not-found/pk-command-not-found.c:584
-#: ../contrib/command-not-found/pk-command-not-found.c:593
+#: ../contrib/command-not-found/pk-command-not-found.c:587
+#: ../contrib/command-not-found/pk-command-not-found.c:596
msgid "Similar commands are:"
msgstr "ಹà³à²²à³à²µ à²à²à³à²à³à²à²³à³:"
#. TRANSLATORS: ask the user to choose a file to run
-#: ../contrib/command-not-found/pk-command-not-found.c:600
+#: ../contrib/command-not-found/pk-command-not-found.c:603
msgid "Please choose a command to run"
msgstr "ದಯವಿà²à³à²à³ à²à²²à²¾à²¯à²¿à²¸à²²à³ à²à²à²¦à³ à²à²à³à²à³à²¯à²¨à³à²¨à³ à²à²°à²¿à²¸à²¿"
#. TRANSLATORS: tell the user what package provides the command
-#: ../contrib/command-not-found/pk-command-not-found.c:615
+#: ../contrib/command-not-found/pk-command-not-found.c:618
msgid "The package providing this file is:"
msgstr "ಠà²à²¡à²¤à²µà²¨à³à²¨à³ à²à²¦à²à²¿à²¸à³à²µ ಪà³à²¯à²¾à²à³à²à³:"
#. TRANSLATORS: as the user if we want to install a package to provide the command
-#: ../contrib/command-not-found/pk-command-not-found.c:620
+#: ../contrib/command-not-found/pk-command-not-found.c:623
#, c-format
msgid "Install package '%s' to provide command '%s'?"
msgstr "ಪà³à²¯à²¾à²à³à²à³ '%s' à²
ನà³à²¨à³ à²à²à³à²à³ '%s' à²
ನà³à²¨à³ à²à²¦à²à²¿à²¸à³à²µà²à²¤à³ à²
ನà³à²¸à³à²¥à²¾à²ªà²¿à²¸à²¬à³à²à³?"
#. TRANSLATORS: Show the user a list of packages that provide this command
-#: ../contrib/command-not-found/pk-command-not-found.c:641
+#: ../contrib/command-not-found/pk-command-not-found.c:644
msgid "Packages providing this file are:"
msgstr "ಠà²à²¡à²¤à²µà²¨à³à²¨à³ à²à²¦à²à²¿à²¸à³à²µ ಪà³à²¯à²¾à²à³à²à³à²à²³à³à²à²¦à²°à³:"
#. TRANSLATORS: Show the user a list of packages that they can install to provide this command
-#: ../contrib/command-not-found/pk-command-not-found.c:650
+#: ../contrib/command-not-found/pk-command-not-found.c:653
msgid "Suitable packages are:"
msgstr "ಸà³à²à³à²¤à²µà²¾à²¦ ಪà³à²¯à²¾à²à³à²à³à²à²³à³à²à²¦à²°à³:"
#. get selection
#. TRANSLATORS: ask the user to choose a file to install
-#: ../contrib/command-not-found/pk-command-not-found.c:658
+#: ../contrib/command-not-found/pk-command-not-found.c:661
msgid "Please choose a package to install"
msgstr "à²
ನà³à²¸à³à²¥à²¾à²ªà²¿à²¸à²²à³ ದಯವಿà²à³à²à³ à²à²à²¦à³ ಪà³à²¯à²¾à²à³à²à²¨à³à²¨à³ à²à²°à²¿à²¸à²¿"
@@ -1030,48 +1037,47 @@ msgid ""
msgstr "org.freedesktop.PackageKit.conf à²à²¡à²¤à²µà²¨à³à²¨à³ ವà³à²¯à²µà²¸à³à²¥à³à²¯ à²à³à²¶à²¦à²²à³à²²à²¿ à²
ನà³à²¸à³à²¥à²¾à²ªà²¿à²¸à²²à²¾à²à²¿à²²à³à²²:"
#. TRANSLATORS: a backend is the system package tool, e.g. yum, apt
-#: ../src/pk-main.c:193
+#: ../src/pk-main.c:205
msgid "Packaging backend to use, e.g. dummy"
msgstr "ಬಳಸಬà³à²à²¿à²°à³à²µ ಪà³à²¯à²¾à²à³à²à²¿à²à²à³ ಬà³à²¯à²¾à²à³à²à²¡à³, à²à²¦à²¾. dummy"
#. TRANSLATORS: if we should run in the background
-#: ../src/pk-main.c:196
+#: ../src/pk-main.c:208
msgid "Daemonize and detach from the terminal"
msgstr "ಡà³à²®à²¨à³ à²à²à²¿ ಮಾಡೠಹಾà²à³ à²à²°à³à²®à²¿à²¨à²²à³âನಿà²à²¦ à²à²³à²à³"
#. TRANSLATORS: if we should not monitor how long we are inactive for
-#: ../src/pk-main.c:202
+#: ../src/pk-main.c:214
msgid "Disable the idle timer"
msgstr "à²à²¡ à²à³à²®à²°à²¿à²¨à²¿à²à²¦ à²
ಶà²à³à²¤à²à³à²³à²¿à²¸à³"
#. TRANSLATORS: show version
-#: ../src/pk-main.c:205
+#: ../src/pk-main.c:217
msgid "Show version and exit"
msgstr "à²à²µà³à²¤à³à²¤à²¿à²¯à²¨à³à²¨à³ ತà³à²°à²¿à²¸à²¿ ನಿರà³à²à²®à²¿à²¸à³"
#. TRANSLATORS: exit after we've started up, used for user profiling
-#: ../src/pk-main.c:208
+#: ../src/pk-main.c:220
msgid "Exit after a small delay"
msgstr "à²à²¿à²à³à² ವಿಳà²à²¬à²¦ ನà²à²¤à²° ನಿರà³à²à²®à²¿à²¸à³"
#. TRANSLATORS: exit straight away, used for automatic profiling
-#: ../src/pk-main.c:211
+#: ../src/pk-main.c:223
msgid "Exit after the engine has loaded"
msgstr "à²à²à²à²¿à²¨à³ ಲà³à²¡à³ à²à²¦ ನà²à²¤à²° ನಿರà³à²à²®à²¿à²¸à³"
#. TRANSLATORS: describing the service that is running
-#: ../src/pk-main.c:226
+#: ../src/pk-main.c:238
msgid "PackageKit service"
msgstr "PackageKit ಸà³à²µà³"
#. TRANSLATORS: fatal error, dbus is not running
-#: ../src/pk-main.c:263
+#: ../src/pk-main.c:275
msgid "Cannot connect to the system bus"
msgstr "ವà³à²¯à²µà²¸à³à²¥à³à²¯ ಬಸà³âನà³à²à²¦à²¿à²à³ ಸà²à²ªà²°à³à²à²¹à³à²à²¦à²²à³ ಸಾಧà³à²¯à²µà²¾à²à²¿à²²à³à²²"
-#. TRANSLATORS: cannot register on system bus, unknown reason
-#: ../src/pk-main.c:313
-#, c-format
+#. TRANSLATORS: cannot register on system bus, unknown reason -- geeky error follows
+#: ../src/pk-main.c:331
msgid "Error trying to start:"
msgstr "à²à²°à²à²à²¿à²¸à²²à³ ಪà³à²°à²¯à²¤à³à²¨à²¿à²¸à²¿à²¦à²¾à² ದà³à²·:"
commit dd27f249d3d7d59df438334ffde3950a605871ed
Author: raven <raven at fedoraproject.org>
Date: Thu Jun 18 17:24:44 2009 +0000
Sending translation for Polish
diff --git a/po/pl.po b/po/pl.po
index 7ee7c89..c7cdd41 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,8 +5,8 @@ msgid ""
msgstr ""
"Project-Id-Version: pl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-05-26 22:05+0000\n"
-"PO-Revision-Date: 2009-05-27 00:08+0200\n"
+"POT-Creation-Date: 2009-06-18 19:16+0200\n"
+"PO-Revision-Date: 2009-06-18 19:20+0200\n"
"Last-Translator: Piotr DrÄ
g <piotrdrag at gmail.com>\n"
"Language-Team: Polish <pl at li.org>\n"
"MIME-Version: 1.0\n"
@@ -14,230 +14,231 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#. TRANSLATORS: this is an atomic transaction
-#: ../client/pk-console.c:234
+#: ../client/pk-console.c:231
msgid "Transaction"
msgstr "Transakcja"
#. TRANSLATORS: this is the time the transaction was started in system timezone
-#: ../client/pk-console.c:236
+#: ../client/pk-console.c:233
msgid "System time"
msgstr "Czas systemowy"
#. TRANSLATORS: this is if the transaction succeeded or not
-#: ../client/pk-console.c:238
+#: ../client/pk-console.c:235
msgid "Succeeded"
msgstr "Powodzenie"
#. TRANSLATORS: if the repo is enabled
-#: ../client/pk-console.c:238 ../client/pk-console.c:405
+#: ../client/pk-console.c:235 ../client/pk-console.c:402
msgid "True"
msgstr "Prawda"
-#: ../client/pk-console.c:238 ../client/pk-console.c:405
+#: ../client/pk-console.c:235 ../client/pk-console.c:402
msgid "False"
msgstr "FaÅsz"
#. TRANSLATORS: this is the transactions role, e.g. "update-system"
-#: ../client/pk-console.c:240
+#. TRANSLATORS: the trasaction role, e.g. update-system
+#: ../client/pk-console.c:237 ../src/pk-polkit-action-lookup.c:228
msgid "Role"
msgstr "Rola"
#. TRANSLATORS: this is The duration of the transaction
-#: ../client/pk-console.c:245
+#: ../client/pk-console.c:242
msgid "Duration"
msgstr "Czas trwania"
-#: ../client/pk-console.c:245
+#: ../client/pk-console.c:242
msgid "(seconds)"
msgstr "(sekundy)"
#. TRANSLATORS: this is The command line used to do the action
-#: ../client/pk-console.c:249
+#: ../client/pk-console.c:246
msgid "Command line"
msgstr "Wiersz poleceÅ"
#. TRANSLATORS: this is the user ID of the user that started the action
-#: ../client/pk-console.c:251
+#: ../client/pk-console.c:248
msgid "User ID"
msgstr "Identyfikator użytkownika"
#. TRANSLATORS: this is the username, e.g. hughsie
-#: ../client/pk-console.c:258
+#: ../client/pk-console.c:255
msgid "Username"
msgstr "Nazwa użytkownika"
#. TRANSLATORS: this is the users real name, e.g. "Richard Hughes"
-#: ../client/pk-console.c:262
+#: ../client/pk-console.c:259
msgid "Real name"
msgstr "ImiÄ i nazwisko"
-#: ../client/pk-console.c:270
+#: ../client/pk-console.c:267
msgid "Affected packages:"
msgstr "Dotyczy pakietów:"
-#: ../client/pk-console.c:272
+#: ../client/pk-console.c:269
msgid "Affected packages: None"
msgstr "Dotyczy pakietów: żadnych"
#. TRANSLATORS: this is the distro, e.g. Fedora 10
-#: ../client/pk-console.c:297
+#: ../client/pk-console.c:294
msgid "Distribution"
msgstr "Dystrybucja"
#. TRANSLATORS: this is type of update, stable or testing
-#: ../client/pk-console.c:299
+#: ../client/pk-console.c:296
msgid "Type"
msgstr "Typ"
#. TRANSLATORS: this is any summary text describing the upgrade
#. TRANSLATORS: this is the summary of the group
-#: ../client/pk-console.c:301 ../client/pk-console.c:324
+#: ../client/pk-console.c:298 ../client/pk-console.c:321
msgid "Summary"
msgstr "Podsumowanie"
#. TRANSLATORS: this is the group category name
-#: ../client/pk-console.c:313
+#: ../client/pk-console.c:310
msgid "Category"
msgstr "Kategoria"
#. TRANSLATORS: this is group identifier
-#: ../client/pk-console.c:315
+#: ../client/pk-console.c:312
msgid "ID"
msgstr "Identyfikator"
#. TRANSLATORS: this is the parent group
-#: ../client/pk-console.c:318
+#: ../client/pk-console.c:315
msgid "Parent"
msgstr "NadrzÄdna"
#. TRANSLATORS: this is the name of the parent group
-#: ../client/pk-console.c:321
+#: ../client/pk-console.c:318
msgid "Name"
msgstr "Nazwa"
#. TRANSLATORS: this is preferred icon for the group
-#: ../client/pk-console.c:327
+#: ../client/pk-console.c:324
msgid "Icon"
msgstr "Ikona"
#. TRANSLATORS: this is a header for the package that can be updated
-#: ../client/pk-console.c:342
+#: ../client/pk-console.c:339
msgid "Details about the update:"
msgstr "SzczegóÅy aktualizacji:"
#. TRANSLATORS: details about the update, package name and version
-#: ../client/pk-console.c:344
+#: ../client/pk-console.c:341
msgid "Package"
msgstr "Pakiet"
#. TRANSLATORS: details about the update, any packages that this update updates
-#: ../client/pk-console.c:347
+#: ../client/pk-console.c:344
msgid "Updates"
msgstr "Aktualizuje"
#. TRANSLATORS: details about the update, any packages that this update obsoletes
-#: ../client/pk-console.c:351
+#: ../client/pk-console.c:348
msgid "Obsoletes"
msgstr "ZastÄpuje"
#. TRANSLATORS: details about the update, the vendor URLs
-#: ../client/pk-console.c:355
+#: ../client/pk-console.c:352
msgid "Vendor"
msgstr "Producent"
#. TRANSLATORS: details about the update, the bugzilla URLs
-#: ../client/pk-console.c:359
+#: ../client/pk-console.c:356
msgid "Bugzilla"
msgstr "Bugzilla"
#. TRANSLATORS: details about the update, the CVE URLs
-#: ../client/pk-console.c:363
+#: ../client/pk-console.c:360
msgid "CVE"
msgstr "CVE"
#. TRANSLATORS: details about the update, if the package requires a restart
-#: ../client/pk-console.c:367
+#: ../client/pk-console.c:364
msgid "Restart"
msgstr "Uruchom ponownie"
#. TRANSLATORS: details about the update, any description of the update
-#: ../client/pk-console.c:371
+#: ../client/pk-console.c:368
msgid "Update text"
msgstr "Tekst aktualizacji"
#. TRANSLATORS: details about the update, the changelog for the package
-#: ../client/pk-console.c:375
+#: ../client/pk-console.c:372
msgid "Changes"
msgstr "Zmiany"
#. TRANSLATORS: details about the update, the ongoing state of the update
-#: ../client/pk-console.c:379
+#: ../client/pk-console.c:376
msgid "State"
msgstr "Stan"
#. TRANSLATORS: details about the update, date the update was issued
-#: ../client/pk-console.c:384
+#: ../client/pk-console.c:381
msgid "Issued"
msgstr "Wydano"
#. TRANSLATORS: details about the update, date the update was updated
-#: ../client/pk-console.c:389
+#: ../client/pk-console.c:386
msgid "Updated"
msgstr "Zaktualizowano"
-#: ../client/pk-console.c:476 ../client/pk-console.c:478
+#: ../client/pk-console.c:473 ../client/pk-console.c:475
msgid "Percentage"
msgstr "Procentowo"
-#: ../client/pk-console.c:478
+#: ../client/pk-console.c:475
msgid "Unknown"
msgstr "Nieznane"
#. TRANSLATORS: a package requires the system to be restarted
-#: ../client/pk-console.c:529
+#: ../client/pk-console.c:517
msgid "System restart required by:"
msgstr "Ponowne uruchomienie systemu jest wymagane przez:"
#. TRANSLATORS: a package requires the session to be restarted
-#: ../client/pk-console.c:532
+#: ../client/pk-console.c:520
msgid "Session restart required:"
msgstr "Wymagane jest ponowne uruchomienie sesji:"
#. TRANSLATORS: a package requires the application to be restarted
-#: ../client/pk-console.c:535
+#: ../client/pk-console.c:523
msgid "Application restart required by:"
msgstr "Ponowne uruchomienie programu jest wymagane przez:"
#. TRANSLATORS: a package needs to restart they system
-#: ../client/pk-console.c:572
+#: ../client/pk-console.c:578
msgid "Please restart the computer to complete the update."
msgstr "ProszÄ uruchomiÄ ponownie komputer, aby zakoÅczyÄ aktualizacjÄ."
#. TRANSLATORS: a package needs to restart the session
-#: ../client/pk-console.c:575
+#: ../client/pk-console.c:581
msgid "Please logout and login to complete the update."
msgstr "ProszÄ wylogowaÄ siÄ i zalogowaÄ, aby zakoÅczyÄ aktualizacjÄ."
#. TRANSLATORS: a package needs to restart the application
-#: ../client/pk-console.c:578
+#: ../client/pk-console.c:584
msgid "Please restart the application as it is being used."
msgstr "ProszÄ uruchomiÄ program ponownie, ponieważ jest używany."
#. TRANSLATORS: The package is already installed on the system
-#: ../client/pk-console.c:691
+#: ../client/pk-console.c:711
#, c-format
msgid "The package %s is already installed"
msgstr "Pakiet %s jest już zainstalowany"
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:699
+#: ../client/pk-console.c:719
#, c-format
msgid "The package %s could not be installed: %s"
msgstr "Nie można zainstalowaÄ pakietu %s: %s"
#. TRANSLATORS: There was a programming error that shouldn't happen. The detailed error follows
-#: ../client/pk-console.c:724 ../client/pk-console.c:751
-#: ../client/pk-console.c:847 ../client/pk-console.c:964
+#: ../client/pk-console.c:744 ../client/pk-console.c:767
+#: ../client/pk-console.c:863 ../client/pk-console.c:980
#: ../client/pk-tools-common.c:62 ../client/pk-tools-common.c:81
#: ../client/pk-tools-common.c:89
#, c-format
@@ -245,401 +246,401 @@ msgid "Internal error: %s"
msgstr "WewnÄtrzny bÅÄ
d: %s"
#. TRANSLATORS: There was an error installing the packages. The detailed error follows
-#: ../client/pk-console.c:732 ../client/pk-console.c:1360
+#: ../client/pk-console.c:752 ../client/pk-console.c:1376
#, c-format
msgid "This tool could not install the packages: %s"
msgstr "To narzÄdzie nie może zainstalowaÄ pakietów: %s"
#. TRANSLATORS: There was an error installing the files. The detailed error follows
-#: ../client/pk-console.c:759
+#: ../client/pk-console.c:775
#, c-format
msgid "This tool could not install the files: %s"
msgstr "To narzÄdzie nie może zainstalowaÄ plików: %s"
#. TRANSLATORS: The package name was not found in the installed list. The detailed error follows
-#: ../client/pk-console.c:815
+#: ../client/pk-console.c:831
#, c-format
msgid "This tool could not remove %s: %s"
msgstr "To narzÄdzie nie może usunÄ
Ä %s: %s"
#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:838 ../client/pk-console.c:876
-#: ../client/pk-console.c:909
+#: ../client/pk-console.c:854 ../client/pk-console.c:892
+#: ../client/pk-console.c:925
#, c-format
msgid "This tool could not remove the packages: %s"
msgstr "To narzÄdzie nie może usunÄ
Ä pakietów: %s"
#. TRANSLATORS: When removing, we might have to remove other dependencies
-#: ../client/pk-console.c:888
+#: ../client/pk-console.c:904
msgid "The following packages have to be removed:"
msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ usuniÄte:"
#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#: ../client/pk-console.c:895
+#: ../client/pk-console.c:911
msgid "Proceed removing additional packages?"
msgstr "KontynuowaÄ usuwanie dodatkowych pakietów?"
#. TRANSLATORS: We did not remove any packages
-#: ../client/pk-console.c:900
+#: ../client/pk-console.c:916
msgid "The package removal was canceled!"
msgstr "Anulowano usuniÄcie pakietu!"
#. TRANSLATORS: The package name was not found in any software sources
-#: ../client/pk-console.c:941
+#: ../client/pk-console.c:957
#, c-format
msgid "This tool could not download the package %s as it could not be found"
msgstr "To narzÄdzie nie może pobraÄ pakietu %s, ponieważ nie można go znaleźÄ"
#. TRANSLATORS: Could not download the packages for some reason. The detailed error follows
-#: ../client/pk-console.c:972
+#: ../client/pk-console.c:988
#, c-format
msgid "This tool could not download the packages: %s"
msgstr "To narzÄdzie nie może pobraÄ pakietów: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:999 ../client/pk-console.c:1008
+#: ../client/pk-console.c:1015 ../client/pk-console.c:1024
#, c-format
msgid "This tool could not update %s: %s"
msgstr "To narzÄdzie nie może zaktualizowaÄ %s: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1030 ../client/pk-console.c:1038
+#: ../client/pk-console.c:1046 ../client/pk-console.c:1054
#, c-format
msgid "This tool could not get the requirements for %s: %s"
msgstr "To narzÄdzie nie może uzyskaÄ wymagaÅ dla %s: %s"
#. TRANSLATORS: There was an error getting the dependencies for the package. The detailed error follows
-#: ../client/pk-console.c:1060 ../client/pk-console.c:1068
+#: ../client/pk-console.c:1076 ../client/pk-console.c:1084
#, c-format
msgid "This tool could not get the dependencies for %s: %s"
msgstr "To narzÄdzie nie może uzyskaÄ zależnoÅci dla %s: %s"
#. TRANSLATORS: There was an error getting the details about the package. The detailed error follows
-#: ../client/pk-console.c:1090 ../client/pk-console.c:1098
+#: ../client/pk-console.c:1106 ../client/pk-console.c:1114
#, c-format
msgid "This tool could not get package details for %s: %s"
msgstr "To narzÄdzie nie może uzyskaÄ szczegóÅów pakietu %s: %s"
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1120
+#: ../client/pk-console.c:1136
#, c-format
msgid "This tool could not find the files for %s: %s"
msgstr "To narzÄdzie nie może znaleÅºÄ plików dla %s: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1128
+#: ../client/pk-console.c:1144
#, c-format
msgid "This tool could not get the file list for %s: %s"
msgstr "To narzÄdzie nie może uzyskaÄ listy plików dla %s: %s"
#. TRANSLATORS: There was an error getting the list of packages. The filename follows
-#: ../client/pk-console.c:1150
+#: ../client/pk-console.c:1166
#, c-format
msgid "File already exists: %s"
msgstr "Plik już istnieje: %s"
#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1155 ../client/pk-console.c:1211
-#: ../client/pk-console.c:1286
+#: ../client/pk-console.c:1171 ../client/pk-console.c:1227
+#: ../client/pk-console.c:1302
msgid "Getting package list"
msgstr "Pobieranie listy pakietów"
#. TRANSLATORS: There was an error getting the list of packages. The detailed error follows
-#: ../client/pk-console.c:1161 ../client/pk-console.c:1217
-#: ../client/pk-console.c:1292
+#: ../client/pk-console.c:1177 ../client/pk-console.c:1233
+#: ../client/pk-console.c:1308
#, c-format
msgid "This tool could not get package list: %s"
msgstr "To narzÄdzie nie może pobraÄ listy pakietów: %s"
#. TRANSLATORS: There was an error saving the list
-#: ../client/pk-console.c:1172
+#: ../client/pk-console.c:1188
#, c-format
msgid "Failed to save to disk"
msgstr "Zapisanie na dysku nie powiodÅo siÄ"
#. TRANSLATORS: There was an error getting the list. The filename follows
-#: ../client/pk-console.c:1206 ../client/pk-console.c:1281
+#: ../client/pk-console.c:1222 ../client/pk-console.c:1297
#, c-format
msgid "File does not exist: %s"
msgstr "Plik nie istnieje: %s"
#. TRANSLATORS: header to a list of packages newly added
-#: ../client/pk-console.c:1238
+#: ../client/pk-console.c:1254
msgid "Packages to add"
msgstr "Pakiety do dodania"
#. TRANSLATORS: header to a list of packages removed
-#: ../client/pk-console.c:1246
+#: ../client/pk-console.c:1262
msgid "Packages to remove"
msgstr "Pakiety do usuniÄcia"
#. TRANSLATORS: We didn't find any differences
-#: ../client/pk-console.c:1314
+#: ../client/pk-console.c:1330
#, c-format
msgid "No new packages need to be installed"
msgstr "Nie trzeba instalowaÄ nowych pakietów"
#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1320
+#: ../client/pk-console.c:1336
msgid "To install"
msgstr "Do zainstalowania"
#. TRANSLATORS: searching takes some time....
-#: ../client/pk-console.c:1332
+#: ../client/pk-console.c:1348
msgid "Searching for package: "
msgstr "Wyszukiwanie pakietu: "
#. TRANSLATORS: package was not found -- this is the end of a string ended in ...
-#: ../client/pk-console.c:1336
+#: ../client/pk-console.c:1352
msgid "not found."
msgstr "nie znaleziono."
#. TRANSLATORS: We didn't find any packages to install
-#: ../client/pk-console.c:1347
+#: ../client/pk-console.c:1363
#, c-format
msgid "No packages can be found to install"
msgstr "Nie można znaleÅºÄ pakietów do zainstalowania"
#. TRANSLATORS: installing new packages from package list
-#: ../client/pk-console.c:1353
+#: ../client/pk-console.c:1369
msgid "Installing packages"
msgstr "Instalowanie pakietów"
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1389
+#: ../client/pk-console.c:1405
#, c-format
msgid "This tool could not find the update details for %s: %s"
msgstr "To narzÄdzie nie może znaleÅºÄ szczegóÅów aktualizacji dla %s: %s"
#. TRANSLATORS: There was an error getting the details about the update for the package. The detailed error follows
-#: ../client/pk-console.c:1397
+#: ../client/pk-console.c:1413
#, c-format
msgid "This tool could not get the update details for %s: %s"
msgstr "To narzÄdzie nie może uzyskaÄ szczegóÅów aktualizacji dla %s: %s"
#. TRANSLATORS: This was an unhandled error, and we don't have _any_ context
-#: ../client/pk-console.c:1443
+#: ../client/pk-console.c:1444
msgid "Error:"
msgstr "BÅÄ
d:"
#. TRANSLATORS: This a list of details about the package
-#: ../client/pk-console.c:1457
+#: ../client/pk-console.c:1458
msgid "Package description"
msgstr "Opis pakietu"
#. TRANSLATORS: This a message (like a little note that may be of interest) from the transaction
-#: ../client/pk-console.c:1473
+#: ../client/pk-console.c:1474
msgid "Message:"
msgstr "Komunikat:"
#. TRANSLATORS: This a list files contained in the package
-#: ../client/pk-console.c:1501
+#: ../client/pk-console.c:1502
msgid "Package files"
msgstr "Pliki pakietu"
#. TRANSLATORS: This where the package has no files
-#: ../client/pk-console.c:1509
+#: ../client/pk-console.c:1510
msgid "No files"
msgstr "Brak plików"
#. TRANSLATORS: This a request for a GPG key signature from the backend, which the client will prompt for later
-#: ../client/pk-console.c:1532
+#: ../client/pk-console.c:1533
msgid "Repository signature required"
msgstr "Wymagany jest podpis repozytorium"
#. TRANSLATORS: This a prompt asking the user to import the security key
-#: ../client/pk-console.c:1542
+#: ../client/pk-console.c:1543
msgid "Do you accept this signature?"
msgstr "ZaakceptowaÄ ten podpis?"
#. TRANSLATORS: This is where the user declined the security key
-#: ../client/pk-console.c:1546
+#: ../client/pk-console.c:1547
msgid "The signature was not accepted."
msgstr "Podpis nie zostaÅ zaakceptowany."
#. TRANSLATORS: This a request for a EULA
-#: ../client/pk-console.c:1580
+#: ../client/pk-console.c:1581
msgid "End user license agreement required"
msgstr "Licencja jest wymagana"
#. TRANSLATORS: This a prompt asking the user to agree to the license
-#: ../client/pk-console.c:1587
+#: ../client/pk-console.c:1588
msgid "Do you agree to this license?"
msgstr "ZaakceptowaÄ tÄ licencjÄ?"
#. TRANSLATORS: This is where the user declined the license
-#: ../client/pk-console.c:1591
+#: ../client/pk-console.c:1592
msgid "The license was refused."
msgstr "Odrzucono licencjÄ."
#. TRANSLATORS: This is when the daemon crashed, and we are up shit creek without a paddle
-#: ../client/pk-console.c:1620
+#: ../client/pk-console.c:1621
msgid "The daemon crashed mid-transaction!"
msgstr "Demon zawiesiÅ siÄ w poÅowie transakcji!"
#. TRANSLATORS: This is the header to the --help menu
-#: ../client/pk-console.c:1673
+#: ../client/pk-console.c:1674
msgid "PackageKit Console Interface"
msgstr "Interfejs konsoli PackageKit"
#. these are commands we can use with pkcon
-#: ../client/pk-console.c:1675
+#: ../client/pk-console.c:1676
msgid "Subcommands:"
msgstr "Podpolecenia:"
#. TRANSLATORS: command line argument, if we should show debugging information
#. TRANSLATORS: if we should show debugging data
-#: ../client/pk-console.c:1767 ../client/pk-generate-pack.c:185
+#: ../client/pk-console.c:1768 ../client/pk-generate-pack.c:185
#: ../client/pk-monitor.c:125
-#: ../contrib/command-not-found/pk-command-not-found.c:520
+#: ../contrib/command-not-found/pk-command-not-found.c:521
#: ../src/pk-main.c:211
msgid "Show extra debugging information"
msgstr "WyÅwietla dodatkowe informacje o debugowaniu"
#. TRANSLATORS: command line argument, just show the version string
-#: ../client/pk-console.c:1770 ../client/pk-monitor.c:127
+#: ../client/pk-console.c:1771 ../client/pk-monitor.c:127
msgid "Show the program version and exit"
msgstr "WyÅwietla wersjÄ programu i wyÅÄ
cza"
#. TRANSLATORS: command line argument, use a filter to narrow down results
-#: ../client/pk-console.c:1773
+#: ../client/pk-console.c:1774
msgid "Set the filter, e.g. installed"
msgstr "Ustawia filtr, np. zainstalowane"
#. TRANSLATORS: command line argument, work asynchronously
-#: ../client/pk-console.c:1776
+#: ../client/pk-console.c:1777
msgid "Exit without waiting for actions to complete"
msgstr "WyÅÄ
cza bez oczekiwania na zakoÅczenie dziaÅaÅ"
#. TRANSLATORS: This is when we could not connect to the system bus, and is fatal
-#: ../client/pk-console.c:1803
+#: ../client/pk-console.c:1804
msgid "This tool could not connect to system DBUS."
msgstr "To narzÄdzie nie może poÅÄ
czyÄ siÄ z systemowym D-Bus."
#. TRANSLATORS: The user specified an incorrect filter
-#: ../client/pk-console.c:1894
+#: ../client/pk-console.c:1893
msgid "The filter specified was invalid"
msgstr "Podany filtr jest nieprawidÅowy"
#. TRANSLATORS: a search type can be name, details, file, etc
-#: ../client/pk-console.c:1912
+#: ../client/pk-console.c:1911
msgid "A search type is required, e.g. name"
msgstr "Wymagany jest typ wyszukiwania, np. nazwa"
#. TRANSLATORS: the user needs to provide a search term
-#: ../client/pk-console.c:1918 ../client/pk-console.c:1926
-#: ../client/pk-console.c:1934 ../client/pk-console.c:1942
+#: ../client/pk-console.c:1917 ../client/pk-console.c:1925
+#: ../client/pk-console.c:1933 ../client/pk-console.c:1941
msgid "A search term is required"
msgstr "Wymagany jest wyszukiwany termin"
#. TRANSLATORS: the search type was provided, but invalid
-#: ../client/pk-console.c:1948
+#: ../client/pk-console.c:1947
msgid "Invalid search type"
msgstr "NieprawidÅowy typ wyszukiwania"
#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console.c:1954
+#: ../client/pk-console.c:1953
msgid "A package name or filename to install is required"
msgstr "Wymagana jest nazwa pakietu lub pliku do zainstalowania"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:1962
+#: ../client/pk-console.c:1961
msgid "A type, key_id and package_id are required"
msgstr "Wymagany jest typ, key_id i package_id"
#. TRANSLATORS: the user did not specify what they wanted to remove
-#: ../client/pk-console.c:1970
+#: ../client/pk-console.c:1969
msgid "A package name to remove is required"
msgstr "Wymagana jest nazwa pakietu do usuniÄcia"
#. TRANSLATORS: the user did not specify anything about what to download or where
-#: ../client/pk-console.c:1977
+#: ../client/pk-console.c:1976
msgid ""
"A destination directory and then the package names to download are required"
msgstr "Wymagany jest katalog docelowy, a nastÄpnie nazwy pakietów do pobrania"
#. TRANSLATORS: the directory does not exist, so we can't continue
-#: ../client/pk-console.c:1983
+#: ../client/pk-console.c:1982
msgid "Directory not found"
msgstr "Nie znaleziono katalogu"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:1990
+#: ../client/pk-console.c:1989
msgid "A licence identifier (eula-id) is required"
msgstr "Wymagany jest identyfikator licencji (eula-id)"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:1999
+#: ../client/pk-console.c:1998
msgid "A transaction identifier (tid) is required"
msgstr "Wymagany jest identyfikator transakcji (tid)"
#. TRANSLATORS: The user did not specify a package name
-#: ../client/pk-console.c:2015
+#: ../client/pk-console.c:2014
msgid "A package name to resolve is required"
msgstr "Wymagana jest nazwa pakietu do rozwiÄ
zania"
#. TRANSLATORS: The user did not specify a repository (software source) name
-#: ../client/pk-console.c:2023 ../client/pk-console.c:2031
+#: ../client/pk-console.c:2022 ../client/pk-console.c:2030
msgid "A repository name is required"
msgstr "Wymagana jest nazwa repozytorium"
#. TRANSLATORS: The user didn't provide any data
-#: ../client/pk-console.c:2039
+#: ../client/pk-console.c:2038
msgid "A repo name, parameter and value are required"
msgstr "Wymagana jest nazwa, parametr i wartoÅÄ repozytorium"
#. TRANSLATORS: The user didn't specify what action to use
-#: ../client/pk-console.c:2052
+#: ../client/pk-console.c:2051
msgid "An action, e.g. 'update-system' is required"
msgstr "Wymagane jest dziaÅanie, np. \"update-system\""
#. TRANSLATORS: The user specified an invalid action
-#: ../client/pk-console.c:2058
+#: ../client/pk-console.c:2057
msgid "A correct role is required"
msgstr "Wymagana jest bieżÄ
ca rola"
#. TRANSLATORS: we keep a database updated with the time that an action was last executed
-#: ../client/pk-console.c:2064
+#: ../client/pk-console.c:2063
msgid "Failed to get the time since this action was last completed"
msgstr ""
"Uzyskanie czasu od ostatniego zakoÅczenia tego dziaÅania nie powiodÅo siÄ"
#. TRANSLATORS: The user did not provide a package name
#. TRANSLATORS: This is when the user fails to supply the package name
-#: ../client/pk-console.c:2073 ../client/pk-console.c:2084
-#: ../client/pk-console.c:2092 ../client/pk-console.c:2108
-#: ../client/pk-console.c:2116 ../client/pk-generate-pack.c:241
+#: ../client/pk-console.c:2072 ../client/pk-console.c:2083
+#: ../client/pk-console.c:2091 ../client/pk-console.c:2107
+#: ../client/pk-console.c:2115 ../client/pk-generate-pack.c:241
msgid "A package name is required"
msgstr "Wymagana jest nazwa pakietu"
#. TRANSLATORS: each package "provides" certain things, e.g. mime(gstreamer-decoder-mp3), the user didn't specify it
-#: ../client/pk-console.c:2100
+#: ../client/pk-console.c:2099
msgid "A package provide string is required"
msgstr "Wymagany jest ÅaÅcuch dostarczania pakietu"
#. TRANSLATORS: The user didn't specify a filename to create as a list
-#: ../client/pk-console.c:2124
+#: ../client/pk-console.c:2123
msgid "A list file name to create is required"
msgstr "Wymagana jest lista nazw plików do utworzenia"
#. TRANSLATORS: The user didn't specify a filename to open as a list
-#: ../client/pk-console.c:2133 ../client/pk-console.c:2142
+#: ../client/pk-console.c:2132 ../client/pk-console.c:2141
msgid "A list file to open is required"
msgstr "Wymagana jest lista plików do otwarcia"
#. TRANSLATORS: The user tried to use an unsupported option on the command line
-#: ../client/pk-console.c:2195
+#: ../client/pk-console.c:2194
#, c-format
msgid "Option '%s' is not supported"
msgstr "Opcja \"%s\" nie jest obsÅugiwana"
#. TRANSLATORS: User does not have permission to do this
-#: ../client/pk-console.c:2208
+#: ../client/pk-console.c:2207
msgid "Incorrect privileges for this operation"
msgstr "Niepoprawne uprawnienia dla tego dziaÅania"
#. TRANSLATORS: Generic failure of what they asked to do
-#: ../client/pk-console.c:2211
+#: ../client/pk-console.c:2210
msgid "Command failed"
msgstr "Polecenie nie powiodÅo siÄ"
@@ -791,125 +792,125 @@ msgid "Please enter a number from 1 to %i: "
msgstr "ProszÄ podaÄ numer od 1 do %i: "
#. TRANSLATORS: we failed to find the package, this shouldn't happen
-#: ../contrib/command-not-found/pk-command-not-found.c:371
+#: ../contrib/command-not-found/pk-command-not-found.c:372
msgid "Failed to search for file"
msgstr "Znalezienie pliku nie powiodÅo siÄ"
#. TRANSLATORS: we failed to launch the executable, the error follows
-#: ../contrib/command-not-found/pk-command-not-found.c:495
+#: ../contrib/command-not-found/pk-command-not-found.c:496
msgid "Failed to launch:"
msgstr "Uruchomienie nie powiodÅo siÄ:"
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/command-not-found/pk-command-not-found.c:536
+#: ../contrib/command-not-found/pk-command-not-found.c:537
msgid "PackageKit Command Not Found"
msgstr "Nie znaleziono polecenia PackageKit"
#. TRANSLATORS: the prefix of all the output telling the user why it's not executing
-#: ../contrib/command-not-found/pk-command-not-found.c:559
+#: ../contrib/command-not-found/pk-command-not-found.c:560
msgid "Command not found."
msgstr "Nie znaleziono polecenia."
#. TRANSLATORS: tell the user what we think the command is
-#: ../contrib/command-not-found/pk-command-not-found.c:566
+#: ../contrib/command-not-found/pk-command-not-found.c:567
msgid "Similar command is:"
msgstr "Podobne polecenie:"
#. TRANSLATORS: Ask the user if we should run the similar command
-#: ../contrib/command-not-found/pk-command-not-found.c:575
+#: ../contrib/command-not-found/pk-command-not-found.c:576
msgid "Run similar command:"
msgstr "Wykonaj podobne polecenie:"
#. TRANSLATORS: show the user a list of commands that they could have meant
#. TRANSLATORS: show the user a list of commands we could run
-#: ../contrib/command-not-found/pk-command-not-found.c:587
-#: ../contrib/command-not-found/pk-command-not-found.c:596
+#: ../contrib/command-not-found/pk-command-not-found.c:588
+#: ../contrib/command-not-found/pk-command-not-found.c:597
msgid "Similar commands are:"
msgstr "Podobne polecenia:"
#. TRANSLATORS: ask the user to choose a file to run
-#: ../contrib/command-not-found/pk-command-not-found.c:603
+#: ../contrib/command-not-found/pk-command-not-found.c:604
msgid "Please choose a command to run"
msgstr "ProszÄ wybraÄ polecenie do wykonania"
#. TRANSLATORS: tell the user what package provides the command
-#: ../contrib/command-not-found/pk-command-not-found.c:618
+#: ../contrib/command-not-found/pk-command-not-found.c:619
msgid "The package providing this file is:"
msgstr "Pakiet dostarczajÄ
cy ten plik:"
#. TRANSLATORS: as the user if we want to install a package to provide the command
-#: ../contrib/command-not-found/pk-command-not-found.c:623
+#: ../contrib/command-not-found/pk-command-not-found.c:624
#, c-format
msgid "Install package '%s' to provide command '%s'?"
msgstr "ZainstalowaÄ pakiet \"%s\", aby dostarczyÄ polecenie \"%s\"?"
#. TRANSLATORS: Show the user a list of packages that provide this command
-#: ../contrib/command-not-found/pk-command-not-found.c:644
+#: ../contrib/command-not-found/pk-command-not-found.c:645
msgid "Packages providing this file are:"
msgstr "Pakiety dostarczajÄ
ce ten plik:"
#. TRANSLATORS: Show the user a list of packages that they can install to provide this command
-#: ../contrib/command-not-found/pk-command-not-found.c:653
+#: ../contrib/command-not-found/pk-command-not-found.c:654
msgid "Suitable packages are:"
msgstr "Odpowiednie pakiety:"
#. get selection
#. TRANSLATORS: ask the user to choose a file to install
-#: ../contrib/command-not-found/pk-command-not-found.c:661
+#: ../contrib/command-not-found/pk-command-not-found.c:662
msgid "Please choose a package to install"
msgstr "ProszÄ wybraÄ pakiet do zainstalowania"
#. TRANSLATORS: when we are getting data from the daemon
-#: ../contrib/browser-plugin/src/contents.cpp:298
+#: ../contrib/browser-plugin/src/contents.cpp:299
msgid "Getting package information..."
msgstr "Pobieranie informacji o pakiecie..."
#. TRANSLATORS: run an applicaiton
-#: ../contrib/browser-plugin/src/contents.cpp:304
+#: ../contrib/browser-plugin/src/contents.cpp:305
#, c-format
msgid "Run %s"
msgstr "Uruchom %s"
#. TRANSLATORS: show the installed version of a package
-#: ../contrib/browser-plugin/src/contents.cpp:310
+#: ../contrib/browser-plugin/src/contents.cpp:311
msgid "Installed version"
msgstr "Zainstalowana wersja"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/src/contents.cpp:318
+#: ../contrib/browser-plugin/src/contents.cpp:319
#, c-format
msgid "Run version %s now"
msgstr "Uruchom wersjÄ %s"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/src/contents.cpp:324
+#: ../contrib/browser-plugin/src/contents.cpp:325
msgid "Run now"
msgstr "Uruchom teraz"
#. TRANSLATORS: update to a new version of the package
-#: ../contrib/browser-plugin/src/contents.cpp:330
+#: ../contrib/browser-plugin/src/contents.cpp:331
#, c-format
msgid "Update to version %s"
msgstr "Zaktualizuj do wersji %s"
#. TRANSLATORS: To install a package
-#: ../contrib/browser-plugin/src/contents.cpp:336
+#: ../contrib/browser-plugin/src/contents.cpp:337
#, c-format
msgid "Install %s now"
msgstr "Zainstaluj %s"
#. TRANSLATORS: the version of the package
-#: ../contrib/browser-plugin/src/contents.cpp:339
+#: ../contrib/browser-plugin/src/contents.cpp:340
msgid "Version"
msgstr "Wersja"
#. TRANSLATORS: noting found, so can't install
-#: ../contrib/browser-plugin/src/contents.cpp:344
+#: ../contrib/browser-plugin/src/contents.cpp:345
msgid "No packages found for your system"
msgstr "Nie znaleziono pakietów dla systemu"
#. TRANSLATORS: package is being installed
-#: ../contrib/browser-plugin/src/contents.cpp:349
+#: ../contrib/browser-plugin/src/contents.cpp:350
msgid "Installing..."
msgstr "Instalowanie..."
@@ -1091,8 +1092,37 @@ msgstr "UsÅuga PackageKit"
msgid "Cannot connect to the system bus"
msgstr "Nie można poÅÄ
czyÄ siÄ z magistralÄ
systemowÄ
"
-#. TRANSLATORS: cannot register on system bus, unknown reason
+#. TRANSLATORS: cannot register on system bus, unknown reason -- geeky error follows
#: ../src/pk-main.c:331
-#, c-format
msgid "Error trying to start:"
msgstr "BÅÄ
d podczas próbowania uruchomienia:"
+
+#. TRANSLATORS: is not GPG signed
+#: ../src/pk-polkit-action-lookup.c:128 ../src/pk-polkit-action-lookup.c:147
+msgid "The software is not from a trusted source."
+msgstr "Oprogramowanie nie jest z zaufanego źródÅa."
+
+#. TRANSLATORS: user has to trust provider -- I know, this sucks
+#: ../src/pk-polkit-action-lookup.c:132
+msgid "Do not update this package unless you are sure it is safe to do so."
+msgstr ""
+"Nie należy aktualizowaÄ tego pakietu, jeÅli nie ma siÄ pewnoÅci, że to "
+"bezpieczne."
+
+#. TRANSLATORS: warn the user that all bets are off
+#: ../src/pk-polkit-action-lookup.c:136 ../src/pk-polkit-action-lookup.c:155
+msgid "Malicious software can damage your computer or cause other harm."
+msgstr ""
+"ZÅoÅliwe oprogramowanie może uszkodziÄ komputer lub spowodowaÄ inne szkody."
+
+#. TRANSLATORS: user has to trust provider -- I know, this sucks
+#: ../src/pk-polkit-action-lookup.c:151
+msgid "Do not install this package unless you are sure it is safe to do so."
+msgstr ""
+"Nie należy instalowaÄ tego pakietu, jeÅli nie ma siÄ pewnoÅci, że to "
+"bezpieczne."
+
+#. TRANSLATORS: if the transaction is forced to install only trusted packages
+#: ../src/pk-polkit-action-lookup.c:235
+msgid "Only trusted"
+msgstr "Tylko zaufane"
commit 08835fdfe11528421ebb25fefb15b0b7cefb953b
Author: Valeriy Lyasotskiy <onestep at ukr.net>
Date: Thu Jun 18 11:39:56 2009 +0300
configure: remove check for docbook2man as it is not really needed (check for libxslt?)
diff --git a/autogen.sh b/autogen.sh
index 70925ea..217750a 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -29,7 +29,7 @@ fi
(cd $srcdir && autoreconf --force --install) || exit 1
(cd $srcdir && intltoolize) || exit 1
-conf_flags="--enable-maintainer-mode --enable-gtk-doc"
+conf_flags="--enable-gtk-doc"
if test x$NOCONFIGURE = x; then
echo Running $srcdir/configure $conf_flags "$@" ...
diff --git a/configure.ac b/configure.ac
index eaafc64..589a091 100644
--- a/configure.ac
+++ b/configure.ac
@@ -298,15 +298,6 @@ AC_SUBST(CONNMAN_CFLAGS)
AC_SUBST(CONNMAN_LIBS)
dnl ---------------------------------------------------------------------------
-dnl - Is docbook2man available?
-dnl ---------------------------------------------------------------------------
-AC_PATH_PROG(DOCBOOK2MAN, docbook2man, no)
-if test "$DOCBOOK2MAN" = "no" ; then
- AC_MSG_WARN([docbook2man not found, will not be able to build man documentation])
- fi
-AM_CONDITIONAL(HAVE_DOCBOOK2MAN, [test "$DOCBOOK2MAN" != "no"])
-
-dnl ---------------------------------------------------------------------------
dnl - Make paths available for source files
dnl ---------------------------------------------------------------------------
AC_SUBST(SYSCONFDIR, $sysconfdir)
@@ -765,7 +756,6 @@ echo "
cppflags: ${CPPFLAGS}
Building unit tests: ${enable_tests}
Able to run locally: ${enable_local}
- Developer warnings: ${enable_developer}
Security framework: ${with_security_framework}
Networking stacks: ${networking_apis}
Browser plugin: ${build_browser_plugin}
diff --git a/man/Makefile.am b/man/Makefile.am
index 673a847..923f929 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -3,14 +3,11 @@ EXTRA_DIST = \
pkmon.xml \
pkgenpack.xml
-if HAVE_DOCBOOK2MAN
man_MANS = \
pkcon.1 \
pkmon.1 \
pkgenpack.1
-endif
-if HAVE_DOCBOOK2MAN
pkcon.1: pkcon.xml
xsltproc http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $? &> /dev/null
@@ -20,8 +17,6 @@ pkmon.1: pkmon.xml
pkgenpack.1: pkgenpack.xml
xsltproc http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $? &> /dev/null
-endif
-
clean-local :
rm -f *~
rm -f *.1
commit 85b21fa40422af625e52d2020059abe6ff4e8c31
Author: Valeriy Lyasotskiy <onestep at ukr.net>
Date: Thu Jun 18 10:59:20 2009 +0300
alpm: added update_system, improved transaction progress stuff
diff --git a/backends/alpm/pk-backend-alpm.c b/backends/alpm/pk-backend-alpm.c
index c97bc9f..a4a057d 100644
--- a/backends/alpm/pk-backend-alpm.c
+++ b/backends/alpm/pk-backend-alpm.c
@@ -60,6 +60,8 @@ gchar *current_file = NULL;
off_t trans_xfered;
off_t trans_total;
+int trans_subprogress;
+
typedef enum {
PK_ALPM_SEARCH_TYPE_NULL,
PK_ALPM_SEARCH_TYPE_RESOLVE,
@@ -156,7 +158,7 @@ pkg_equals_to (pmpkg_t *pkg, const gchar *name, const gchar *version)
static void
cb_trans_evt (pmtransevt_t event, void *data1, void *data2)
{
- // TODO: Add more code here
+ /* TODO: Add more code here */
gchar **package_ids;
gchar *package_id_needle;
gchar *package_id_str;
@@ -166,6 +168,9 @@ cb_trans_evt (pmtransevt_t event, void *data1, void *data2)
case PM_TRANS_EVT_REMOVE_START:
pk_backend_set_allow_cancel (backend_instance, FALSE);
+ /* reset transaction subprogress */
+ trans_subprogress = -1;
+
package_id_str = pkg_to_package_id_str (data1, ALPM_LOCAL_DB_ALIAS);
pk_backend_package (backend_instance, PK_INFO_ENUM_REMOVING, package_id_str, alpm_pkg_get_desc (data1));
g_free (package_id_str);
@@ -173,6 +178,9 @@ cb_trans_evt (pmtransevt_t event, void *data1, void *data2)
case PM_TRANS_EVT_ADD_START:
pk_backend_set_allow_cancel (backend_instance, FALSE);
+ /* reset transaction subprogress */
+ trans_subprogress = -1;
+
pk_backend_set_status (backend_instance, PK_STATUS_ENUM_INSTALL);
package_id_needle = pkg_to_package_id_str (data1, "");
egg_debug ("needle is %s", package_id_needle);
@@ -198,6 +206,11 @@ cb_trans_evt (pmtransevt_t event, void *data1, void *data2)
g_free (package_id_needle);
break;
case PM_TRANS_EVT_UPGRADE_START:
+ pk_backend_set_allow_cancel (backend_instance, FALSE);
+
+ /* reset transaction subprogress */
+ trans_subprogress = -1;
+
package_id_str = pkg_to_package_id_str (data1, "local");
pk_backend_package (backend_instance, PK_INFO_ENUM_UPDATING, package_id_str, alpm_pkg_get_desc (data1));
g_free (package_id_str);
@@ -209,19 +222,24 @@ cb_trans_evt (pmtransevt_t event, void *data1, void *data2)
static void
cb_trans_conv (pmtransconv_t conv, void *data1, void *data2, void *data3, int *response)
{
- // TODO: check if some code needs to be placed there
+ /* TODO: check if some code needs to be placed there */
}
static void
cb_trans_progress (pmtransprog_t event, const char *pkgname, int percent, int howmany, int current)
{
- if (event == PM_TRANS_PROGRESS_ADD_START || event == PM_TRANS_PROGRESS_UPGRADE_START || event == PM_TRANS_PROGRESS_REMOVE_START) {
- int trans_percent;
+ if (trans_subprogress != percent) {
+ /* avoid duplicates */
+ trans_subprogress = percent;
- egg_debug ("alpm: transaction percentage for %s is %i", pkgname, percent);
- trans_percent = (int) ((float) ((current - 1) * 100 + percent)) / ((float) (howmany * 100)) * 100;
- pk_backend_set_sub_percentage ((PkBackend *) backend_instance, percent);
- pk_backend_set_percentage ((PkBackend *) backend_instance, trans_percent);
+ if (event == PM_TRANS_PROGRESS_ADD_START || event == PM_TRANS_PROGRESS_UPGRADE_START || event == PM_TRANS_PROGRESS_REMOVE_START) {
+ int trans_percent;
+
+ egg_debug ("alpm: transaction percentage for %s is %i", pkgname, percent);
+ trans_percent = (int) ((float) ((current - 1) * 100 + percent)) / ((float) (howmany * 100)) * 100;
+ pk_backend_set_sub_percentage ((PkBackend *) backend_instance, percent);
+ pk_backend_set_percentage ((PkBackend *) backend_instance, trans_percent);
+ }
}
}
@@ -233,27 +251,39 @@ cb_dl_progress (const char *filename, off_t file_xfered, off_t file_total)
if (g_str_has_suffix (filename, ALPM_PKG_EXT)) {
if (!egg_strequal (filename, current_file)) {
- unsigned int iterator;
- gchar *package_id = NULL;
- gchar **package_ids = pk_backend_get_strv (backend_instance, "package_ids");
+ alpm_list_t *repos;
+ alpm_list_t *packages;
+ pmpkg_t *current_pkg = NULL;
+ const gchar *repo_name = NULL;
g_free (current_file);
current_file = g_strdup (filename);
- /* search for this package in package_ids */
- for (iterator = 0; package_id == NULL && iterator < g_strv_length (package_ids); ++iterator) {
- PkPackageId *id = pk_package_id_new_from_string (package_ids[iterator]);
- gchar *pkginfo = g_strjoin ("-", pk_package_id_get_name (id), pk_package_id_get_version (id), NULL);
- if (g_str_has_prefix (filename, pkginfo))
- package_id = package_ids[iterator];
- g_free (pkginfo);
- pk_package_id_free (id);
+ /* iterate repos */
+ for (repos = alpm_option_get_syncdbs (); current_pkg == NULL && repos; repos = alpm_list_next (repos)) {
+ pmdb_t *db = alpm_list_getdata (repos);
+
+ /* iterate pkgs */
+ for (packages = alpm_db_getpkgcache (db); current_pkg == NULL && packages; packages = alpm_list_next (packages)) {
+ pmpkg_t *pkg = alpm_list_getdata (packages);
+
+ /* compare package information with file name */
+ gchar *pkginfo = g_strjoin ("-", alpm_pkg_get_name (pkg), alpm_pkg_get_version (pkg), NULL);
+ if (pkginfo != NULL && strcmp (pkginfo, "") != 0)
+ egg_debug ("matching %s with %s", filename, pkginfo);
+ if (g_str_has_prefix (filename, pkginfo)) {
+ current_pkg = pkg;
+ repo_name = alpm_db_get_name (db);
+ }
+ g_free (pkginfo);
+ }
}
/* emit package */
- if (package_id != NULL) {
- pmpkg_t *pkg = pkg_from_package_id_str (package_id);
- pk_backend_package (backend_instance, PK_INFO_ENUM_DOWNLOADING, package_id, alpm_pkg_get_desc (pkg));
+ if (current_pkg != NULL) {
+ gchar *package_id = pkg_to_package_id_str (current_pkg, repo_name);
+ pk_backend_package (backend_instance, PK_INFO_ENUM_DOWNLOADING, package_id, alpm_pkg_get_desc (current_pkg));
+ g_free (package_id);
}
}
}
@@ -576,7 +606,7 @@ parse_config (const char *file, const char *givensection, pmdb_t * const givendb
static void
backend_initialize (PkBackend *backend)
{
- // initialize backend_instance for use in callback functions
+ /* initialize backend_instance for use in callback functions */
backend_instance = backend;
egg_debug ("alpm: initializing backend");
@@ -880,13 +910,13 @@ backend_get_details (PkBackend *backend, gchar **package_ids)
}
}
- // get licenses_str content to licenses array
+ /* get licenses_str content to licenses array */
licenses = g_string_free (licenses_str, FALSE);
- // return details
+ /* return details */
pk_backend_details (backend, package_ids[iterator], licenses, PK_GROUP_ENUM_OTHER, alpm_pkg_get_desc (pkg), alpm_pkg_get_url(pkg), alpm_pkg_get_size (pkg));
- // free licenses array as we no longer need it
+ /* free licenses array as we no longer need it */
g_free (licenses);
}
@@ -1086,7 +1116,7 @@ backend_get_update_detail (PkBackend *backend, gchar **package_ids)
pk_backend_set_allow_cancel (backend, FALSE);
for (iterator = 0; iterator < g_strv_length (package_ids); ++iterator) {
- // TODO: add changelog code here
+ /* TODO: add changelog code here */
PkPackageId *id = pk_package_id_new_from_string (package_ids[iterator]);
pmpkg_t *installed_pkg = alpm_db_get_pkg (alpm_option_get_localdb (), pk_package_id_get_name (id));
@@ -1482,6 +1512,47 @@ backend_update_packages (PkBackend *backend, gboolean only_trusted, gchar **pack
}
/**
+ * backend_update_system_thread:
+ */
+static gboolean
+backend_update_system_thread (PkBackend *backend)
+{
+ alpm_list_t *data = NULL;
+
+ /* don't specify any flags for now */
+ pmtransflag_t flags = 0;
+
+ /* create a new transaction */
+ if (alpm_trans_init (PM_TRANS_TYPE_SYNC, flags, cb_trans_evt, cb_trans_conv, cb_trans_progress) != 0) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_TRANSACTION_ERROR, alpm_strerrorlast ());
+ pk_backend_finished (backend);
+ return FALSE;
+ }
+
+ /* set action, prepare and commit transaction */
+ if (alpm_trans_sysupgrade () != 0 || alpm_trans_prepare (&data) != 0 || alpm_trans_commit (&data) != 0) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_TRANSACTION_ERROR, alpm_strerrorlast ());
+ alpm_trans_release ();
+ pk_backend_finished (backend);
+ return FALSE;
+ }
+
+ alpm_trans_release ();
+
+ pk_backend_finished (backend);
+ return TRUE;
+}
+
+/**
+ * backend_update_system:
+ */
+static void
+backend_update_system (PkBackend *backend)
+{
+ pk_backend_thread_create (backend, backend_update_system_thread);
+}
+
+/**
* backend_what_provides:
*/
static void
@@ -1528,6 +1599,6 @@ PK_BACKEND_OPTIONS (
backend_search_group, /* search_group */
backend_search_name, /* search_name */
backend_update_packages, /* update_packages */
- NULL, /* update_system */
+ backend_update_system, /* update_system */
backend_what_provides /* what_provides */
);
commit e473806380e146be7c19173c457077513df245a3
Author: Richard Hughes <richard at hughsie.com>
Date: Thu Jun 18 08:13:00 2009 +0100
yum: use a float for present_version as rawhide is 11.90. Fixes rh#506649
diff --git a/backends/yum/yumBackend.py b/backends/yum/yumBackend.py
index 2906985..160144f 100755
--- a/backends/yum/yumBackend.py
+++ b/backends/yum/yumBackend.py
@@ -2162,7 +2162,7 @@ class PackageKitYumBackend(PackageKitBaseBackend, PackagekitPackage):
# are we already on the latest version
try:
- present_version = int(self.yumbase.conf.yumvar['releasever'])
+ present_version = float(self.yumbase.conf.yumvar['releasever'])
except Exception, e:
self.error(ERROR_INTERNAL_ERROR, _format_str(traceback.format_exc()))
if (present_version >= last_version):
More information about the PackageKit-commit
mailing list