[PackageKit-commit] packagekit: Branch 'master' - 12 commits
Richard Hughes
hughsient at kemper.freedesktop.org
Fri Oct 16 01:43:56 PDT 2009
backends/alpm/pk-backend-alpm.c | 1
backends/apt/pk-backend-apt.c | 1
backends/aptcc/pk-backend-aptcc.cpp | 1
backends/box/pk-backend-box.c | 1
backends/conary/pk-backend-conary.c | 1
backends/dummy/pk-backend-dummy.c | 1
backends/opkg/pk-backend-opkg.c | 1
backends/pisi/pk-backend-pisi.c | 1
backends/poldek/pk-backend-poldek.c | 1
backends/portage/pk-backend-portage.c | 17
backends/ports/pk-backend-ports.c | 1
backends/razor/pk-backend-razor.c | 1
backends/slapt/pk-backend-slapt.c | 1
backends/smart/pk-backend-smart.c | 1
backends/test/pk-backend-test-fail.c | 1
backends/test/pk-backend-test-nop.c | 1
backends/test/pk-backend-test-spawn.c | 1
backends/test/pk-backend-test-succeed.c | 1
backends/test/pk-backend-test-thread.c | 1
backends/urpmi/helpers/perl_packagekit/prints.pm | 6
backends/urpmi/helpers/urpmi-dispatched-backend.pl | 41 +
backends/urpmi/pk-backend-urpmi.c | 22
backends/yum/pk-backend-yum.c | 46 +
backends/yum/yum-comps-groups.conf | 4
backends/zypp/pk-backend-zypp.cpp | 1
contrib/PackageKit.spec.in | 37 -
docs/html/pk-matrix.html | 4
etc/PackageKit.conf.in | 8
lib/packagekit-glib2/pk-client.c | 5
lib/python/packagekit/pylint.sh | 2
po/ja.po | 709 ++++++++++-----------
src/pk-backend.c | 6
src/pk-backend.h | 4
33 files changed, 540 insertions(+), 390 deletions(-)
New commits:
commit 952272722ad861b5bf0eb3e86be66bbc3ec7150e
Author: Richard Hughes <richard at hughsie.com>
Date: Wed Oct 14 12:48:45 2009 +0100
yum: add a few more entries in the yum-comps mapping
diff --git a/backends/yum/yum-comps-groups.conf b/backends/yum/yum-comps-groups.conf
index e1ca846..248c388 100644
--- a/backends/yum/yum-comps-groups.conf
+++ b/backends/yum/yum-comps-groups.conf
@@ -14,9 +14,9 @@ localization=base-system;input-methods,language-support;khmer-support,language-s
multimedia=apps;sound-and-video,rpmfusion_free;sound-and-video
office=apps;office,apps;editors
other=apps;engineering-and-scientific,rpmfusion_free;misc-libs,rpmfusion_nonfree;emulators
-programming=development;haskell,development;kde-software-development,development;gnome-software-development,development;development-tools,development;eclipse,development;development-libs,development;x-software-development,development;web-development,development;legacy-software-development,development;ruby,development;java-development,development;xfce-software-development,development;fedora-packager,development;mingw32,development;ocaml
+programming=development;haskell,development;kde-software-development,development;gnome-software-development,development;development-tools,development;eclipse,development;development-libs,development;x-software-development,development;web-development,development;legacy-software-development,development;ruby,development;java-development,development;xfce-software-development,development;fedora-packager,development;mingw32,development;ocaml;development;perl;development;books
publishing=apps;authoring-and-publishing,apps;font-design
-servers=servers;clustering,servers;dns-server,servers;server-cfg,servers;news-server,servers;web-server,servers;smb-server,servers;sql-server,servers;ftp-server,servers;printing,servers;mysql,servers;mail-server,servers;network-server,servers;legacy-network-server
+servers=servers;clustering,servers;dns-server,servers;server-cfg,servers;news-server,servers;web-server,servers;smb-server,servers;sql-server,servers;ftp-server,servers;printing,servers;mysql,servers;mail-server,servers;network-server,servers;legacy-network-server;servers;directory-server
system=base-system;java,base-system;base-x,base-system;hardware-support,base-system;dial-up,base-system;base,rpmfusion_free;base,rpmfusion_free;system-tools,rpmfusion_nonfree;hardware-support,rpmfusion_nonfree;misc-tools,rpmfusion_nonfree;base
virtualization=base-system;virtualization
commit 8ee9b0199d537421035816b1dde7af236dc20a30
Author: Richard Hughes <richard at hughsie.com>
Date: Wed Oct 14 10:09:05 2009 +0100
yum: only advertise GetDistroUpgrades if the preupgrade binary is present
diff --git a/backends/yum/pk-backend-yum.c b/backends/yum/pk-backend-yum.c
index 24af7a3..00a4227 100644
--- a/backends/yum/pk-backend-yum.c
+++ b/backends/yum/pk-backend-yum.c
@@ -23,6 +23,8 @@
#include <pk-backend-spawn.h>
#include <string.h>
+#define PREUPGRADE_BINARY "/usr/bin/preupgrade"
+
static PkBackendSpawn *spawn;
/**
@@ -126,6 +128,49 @@ backend_get_filters (PkBackend *backend)
}
/**
+ * backend_get_roles:
+ */
+static PkBitfield
+backend_get_roles (PkBackend *backend)
+{
+ PkBitfield roles;
+ roles = pk_bitfield_from_enums (
+ PK_ROLE_ENUM_CANCEL,
+ PK_ROLE_ENUM_GET_DEPENDS,
+ PK_ROLE_ENUM_GET_DETAILS,
+ PK_ROLE_ENUM_GET_FILES,
+ PK_ROLE_ENUM_GET_REQUIRES,
+ PK_ROLE_ENUM_GET_PACKAGES,
+ PK_ROLE_ENUM_WHAT_PROVIDES,
+ PK_ROLE_ENUM_GET_UPDATES,
+ PK_ROLE_ENUM_GET_UPDATE_DETAIL,
+ PK_ROLE_ENUM_INSTALL_PACKAGES,
+ PK_ROLE_ENUM_INSTALL_FILES,
+ PK_ROLE_ENUM_REFRESH_CACHE,
+ PK_ROLE_ENUM_REMOVE_PACKAGES,
+ PK_ROLE_ENUM_DOWNLOAD_PACKAGES,
+ PK_ROLE_ENUM_RESOLVE,
+ PK_ROLE_ENUM_SEARCH_DETAILS,
+ PK_ROLE_ENUM_SEARCH_FILE,
+ PK_ROLE_ENUM_SEARCH_GROUP,
+ PK_ROLE_ENUM_SEARCH_NAME,
+ PK_ROLE_ENUM_UPDATE_PACKAGES,
+ PK_ROLE_ENUM_UPDATE_SYSTEM,
+ PK_ROLE_ENUM_GET_REPO_LIST,
+ PK_ROLE_ENUM_REPO_ENABLE,
+ PK_ROLE_ENUM_REPO_SET_DATA,
+ PK_ROLE_ENUM_GET_CATEGORIES,
+ PK_ROLE_ENUM_SIMULATE_INSTALL_FILES,
+ -1);
+
+ /* only add GetDistroUpgrades if the binary is present */
+ if (g_file_test (PREUPGRADE_BINARY, G_FILE_TEST_EXISTS))
+ pk_bitfield_add (roles, PK_ROLE_ENUM_GET_DISTRO_UPGRADES);
+
+ return roles;
+}
+
+/**
* backend_get_mime_types:
*/
static gchar *
@@ -492,7 +537,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
- NULL, /* get_roles */
+ backend_get_roles, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_cancel, /* cancel */
backend_download_packages, /* download_packages */
commit 5ef3c8dc0a01e70be8d440de759460a5a427b179
Author: Richard Hughes <richard at hughsie.com>
Date: Wed Oct 14 10:00:51 2009 +0100
Add a vtable entry get_roles() to allow the backend to override what is advertised by the daemon
diff --git a/backends/alpm/pk-backend-alpm.c b/backends/alpm/pk-backend-alpm.c
index 4debf07..21647c7 100644
--- a/backends/alpm/pk-backend-alpm.c
+++ b/backends/alpm/pk-backend-alpm.c
@@ -1610,6 +1610,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_cancel, /* cancel */
backend_download_packages, /* download_packages */
diff --git a/backends/apt/pk-backend-apt.c b/backends/apt/pk-backend-apt.c
index badb3b5..87cd58f 100644
--- a/backends/apt/pk-backend-apt.c
+++ b/backends/apt/pk-backend-apt.c
@@ -476,6 +476,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_cancel, /* cancel */
backend_download_packages, /* download_packages */
diff --git a/backends/aptcc/pk-backend-aptcc.cpp b/backends/aptcc/pk-backend-aptcc.cpp
index 91175bc..dfbf30a 100644
--- a/backends/aptcc/pk-backend-aptcc.cpp
+++ b/backends/aptcc/pk-backend-aptcc.cpp
@@ -1498,6 +1498,7 @@ extern "C" PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_cancel, /* cancel */
backend_download_packages, /* download_packages */
diff --git a/backends/box/pk-backend-box.c b/backends/box/pk-backend-box.c
index 6097cbb..e4e5d16 100644
--- a/backends/box/pk-backend-box.c
+++ b/backends/box/pk-backend-box.c
@@ -672,6 +672,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
NULL, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
NULL, /* get_mime_types */
NULL, /* cancel */
NULL, /* download_packages */
diff --git a/backends/conary/pk-backend-conary.c b/backends/conary/pk-backend-conary.c
index 1a46847..3168976 100644
--- a/backends/conary/pk-backend-conary.c
+++ b/backends/conary/pk-backend-conary.c
@@ -358,6 +358,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
NULL,//backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
NULL, /* get_mime_types */
backend_cancel, /* cancel */
NULL, /* download_packages */
diff --git a/backends/dummy/pk-backend-dummy.c b/backends/dummy/pk-backend-dummy.c
index 1e4d788..374ec55 100644
--- a/backends/dummy/pk-backend-dummy.c
+++ b/backends/dummy/pk-backend-dummy.c
@@ -1243,6 +1243,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_cancel, /* cancel */
backend_download_packages, /* download_packages */
diff --git a/backends/opkg/pk-backend-opkg.c b/backends/opkg/pk-backend-opkg.c
index ef9a6b6..9fb7adb 100644
--- a/backends/opkg/pk-backend-opkg.c
+++ b/backends/opkg/pk-backend-opkg.c
@@ -727,6 +727,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
NULL, /* get_mime_types */
NULL, /* cancel */
NULL, /* download_packages */
diff --git a/backends/pisi/pk-backend-pisi.c b/backends/pisi/pk-backend-pisi.c
index c414544..62a0b69 100644
--- a/backends/pisi/pk-backend-pisi.c
+++ b/backends/pisi/pk-backend-pisi.c
@@ -352,6 +352,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
NULL, /* get_mime_types */
backend_cancel, /* cancel */
NULL, /* download_packages */
diff --git a/backends/poldek/pk-backend-poldek.c b/backends/poldek/pk-backend-poldek.c
index c3c474d..7309f00 100644
--- a/backends/poldek/pk-backend-poldek.c
+++ b/backends/poldek/pk-backend-poldek.c
@@ -3090,6 +3090,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_get_cancel, /* cancel */
backend_download_packages, /* download_packages */
diff --git a/backends/portage/pk-backend-portage.c b/backends/portage/pk-backend-portage.c
index 98d558a..ab92f1f 100644
--- a/backends/portage/pk-backend-portage.c
+++ b/backends/portage/pk-backend-portage.c
@@ -393,35 +393,36 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
- NULL, /* get_mime_types */
+ NULL, /* get_roles */
+ NULL, /* get_mime_types */
backend_cancel, /* cancel */
- NULL, /* download_packages */
+ NULL, /* download_packages */
NULL, /* get_categories */
backend_get_depends, /* get_depends */
backend_get_details, /* get_details */
- NULL, /* get_distro_upgrades */
+ NULL, /* get_distro_upgrades */
backend_get_files, /* get_files */
backend_get_packages, /* get_packages */
backend_get_repo_list, /* get_repo_list */
backend_get_requires, /* get_requires */
backend_get_update_detail, /* get_update_detail */
backend_get_updates, /* get_updates */
- NULL, /* install_files */
+ NULL, /* install_files */
backend_install_packages, /* install_packages */
- NULL, /* install_signature */
+ NULL, /* install_signature */
backend_refresh_cache, /* refresh_cache */
backend_remove_packages, /* remove_packages */
backend_repo_enable, /* repo_enable */
- NULL, /* repo_set_data */
+ NULL, /* repo_set_data */
backend_resolve, /* resolve */
- NULL, /* rollback */
+ NULL, /* rollback */
backend_search_details, /* search_details */
backend_search_file, /* search_file */
backend_search_group, /* search_group */
backend_search_name, /* search_name */
backend_update_packages, /* update_packages */
backend_update_system, /* update_system */
- NULL, /* what_provides */
+ NULL, /* what_provides */
NULL, /* simulate_install_files */
NULL, /* simulate_install_packages */
NULL, /* simulate_remove_packages */
diff --git a/backends/ports/pk-backend-ports.c b/backends/ports/pk-backend-ports.c
index ecd9e4a..5ae5bb2 100644
--- a/backends/ports/pk-backend-ports.c
+++ b/backends/ports/pk-backend-ports.c
@@ -404,6 +404,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_cancel, /* cancel */
backend_download_packages, /* download_packages */
diff --git a/backends/razor/pk-backend-razor.c b/backends/razor/pk-backend-razor.c
index 78d451e..c704da3 100644
--- a/backends/razor/pk-backend-razor.c
+++ b/backends/razor/pk-backend-razor.c
@@ -398,6 +398,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
NULL, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
NULL, /* get_mime_types */
NULL, /* cancel */
NULL, /* download_packages */
diff --git a/backends/slapt/pk-backend-slapt.c b/backends/slapt/pk-backend-slapt.c
index c84be84..66cff77 100644
--- a/backends/slapt/pk-backend-slapt.c
+++ b/backends/slapt/pk-backend-slapt.c
@@ -1335,6 +1335,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_cancel, /* cancel */
backend_download_packages, /* download_packages */
diff --git a/backends/smart/pk-backend-smart.c b/backends/smart/pk-backend-smart.c
index 69850b2..1c7ad77 100644
--- a/backends/smart/pk-backend-smart.c
+++ b/backends/smart/pk-backend-smart.c
@@ -436,6 +436,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_cancel, /* cancel */
backend_download_packages, /* download_packages */
diff --git a/backends/test/pk-backend-test-fail.c b/backends/test/pk-backend-test-fail.c
index 9b75559..651f697 100644
--- a/backends/test/pk-backend-test-fail.c
+++ b/backends/test/pk-backend-test-fail.c
@@ -254,6 +254,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
NULL, /* get_mime_types */
backend_cancel, /* cancel */
NULL, /* download_packages */
diff --git a/backends/test/pk-backend-test-nop.c b/backends/test/pk-backend-test-nop.c
index 569580b..4058b79 100644
--- a/backends/test/pk-backend-test-nop.c
+++ b/backends/test/pk-backend-test-nop.c
@@ -30,6 +30,7 @@ PK_BACKEND_OPTIONS (
NULL, /* destroy */
NULL, /* get_groups */
NULL, /* get_filters */
+ NULL, /* get_roles */
NULL, /* get_mime_types */
NULL, /* cancel */
NULL, /* download_packages */
diff --git a/backends/test/pk-backend-test-spawn.c b/backends/test/pk-backend-test-spawn.c
index 01d3fc8..44f84fa 100644
--- a/backends/test/pk-backend-test-spawn.c
+++ b/backends/test/pk-backend-test-spawn.c
@@ -71,6 +71,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
NULL, /* get_groups */
NULL, /* get_filters */
+ NULL, /* get_roles */
NULL, /* get_mime_types */
NULL, /* cancel */
NULL, /* download_packages */
diff --git a/backends/test/pk-backend-test-succeed.c b/backends/test/pk-backend-test-succeed.c
index 66fb5b1..6d3cc40 100644
--- a/backends/test/pk-backend-test-succeed.c
+++ b/backends/test/pk-backend-test-succeed.c
@@ -386,6 +386,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_cancel, /* cancel */
backend_download_packages, /* download_packages */
diff --git a/backends/test/pk-backend-test-thread.c b/backends/test/pk-backend-test-thread.c
index c5e1a1e..dc891eb 100644
--- a/backends/test/pk-backend-test-thread.c
+++ b/backends/test/pk-backend-test-thread.c
@@ -143,6 +143,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
NULL, /* get_groups */
NULL, /* get_filters */
+ NULL, /* get_roles */
NULL, /* get_mime_types */
backend_cancel, /* cancel */
NULL, /* download_packages */
diff --git a/backends/urpmi/pk-backend-urpmi.c b/backends/urpmi/pk-backend-urpmi.c
index 5c5458e..d02ec32 100644
--- a/backends/urpmi/pk-backend-urpmi.c
+++ b/backends/urpmi/pk-backend-urpmi.c
@@ -367,6 +367,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
NULL, /* get_mime_types */
NULL, /* cancel */
NULL, /* download_packages */
diff --git a/backends/yum/pk-backend-yum.c b/backends/yum/pk-backend-yum.c
index 659798e..24af7a3 100644
--- a/backends/yum/pk-backend-yum.c
+++ b/backends/yum/pk-backend-yum.c
@@ -492,6 +492,7 @@ PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
backend_cancel, /* cancel */
backend_download_packages, /* download_packages */
diff --git a/backends/zypp/pk-backend-zypp.cpp b/backends/zypp/pk-backend-zypp.cpp
index 3d8af63..d6fcbd1 100644
--- a/backends/zypp/pk-backend-zypp.cpp
+++ b/backends/zypp/pk-backend-zypp.cpp
@@ -1865,6 +1865,7 @@ extern "C" PK_BACKEND_OPTIONS (
backend_destroy, /* destroy */
backend_get_groups, /* get_groups */
backend_get_filters, /* get_filters */
+ NULL, /* get_roles */
backend_get_mime_types, /* get_mime_types */
NULL, /* cancel */
NULL, /* download_packages */
diff --git a/src/pk-backend.c b/src/pk-backend.c
index f28dcbd..1e0c7f2 100644
--- a/src/pk-backend.c
+++ b/src/pk-backend.c
@@ -219,6 +219,12 @@ pk_backend_get_roles (PkBackend *backend)
if (backend->priv->roles != 0)
goto out;
+ /* not compulsory, but use it if we've got it */
+ if (backend->priv->desc->get_roles != NULL) {
+ backend->priv->roles = backend->priv->desc->get_roles (backend);
+ goto out;
+ }
+
/* lets reduce pointer dereferences... */
desc = backend->priv->desc;
if (desc->cancel != NULL)
diff --git a/src/pk-backend.h b/src/pk-backend.h
index 7c7a732..a2a50f0 100644
--- a/src/pk-backend.h
+++ b/src/pk-backend.h
@@ -215,6 +215,7 @@ typedef struct {
void (*destroy) (PkBackend *backend);
PkBitfield (*get_groups) (PkBackend *backend);
PkBitfield (*get_filters) (PkBackend *backend);
+ PkBitfield (*get_roles) (PkBackend *backend);
gchar *(*get_mime_types) (PkBackend *backend);
void (*cancel) (PkBackend *backend);
void (*download_packages) (PkBackend *backend,
@@ -302,7 +303,7 @@ typedef struct {
gpointer padding[10];
} PkBackendDesc;
-#define PK_BACKEND_OPTIONS(description, author, initialize, destroy, get_groups, get_filters, \
+#define PK_BACKEND_OPTIONS(description, author, initialize, destroy, get_groups, get_filters, get_roles, \
get_mime_types, cancel, download_packages, get_categories, get_depends, \
get_details, get_distro_upgrades, get_files, get_packages, get_repo_list, \
get_requires, get_update_detail, get_updates, install_files, \
@@ -318,6 +319,7 @@ typedef struct {
destroy, \
get_groups, \
get_filters, \
+ get_roles, \
get_mime_types, \
cancel, \
download_packages, \
commit 1593a790de5922e9950675ca523e767cd8ca45f4
Author: Richard Hughes <richard at hughsie.com>
Date: Wed Oct 14 09:50:51 2009 +0100
trivial: don't show recursion loop warnings on the console, they're uninteresting
diff --git a/lib/python/packagekit/pylint.sh b/lib/python/packagekit/pylint.sh
index 2c964c2..cc3dcc5 100755
--- a/lib/python/packagekit/pylint.sh
+++ b/lib/python/packagekit/pylint.sh
@@ -1 +1 @@
-pylint --disable-msg=W0614,C0301,C0103,W0613,C0111,R0913,R0904,R0903,C0302,W0401,R0912,R0914,R0911,R0915,R0902,W0612,W0703 --output-format colorized $1
+pylint --disable-msg=W0614,C0301,C0103,W0613,C0111,R0913,R0904,R0903,C0302,W0401,R0912,R0914,R0911,R0915,R0902,W0612,W0703 --output-format colorized $1 2>/dev/null
commit 2f385b4fbee4c7b3659385da412a494b035fd4f8
Author: Aurelien Lefebvre <alk at imj.fr>
Date: Mon Oct 12 15:49:41 2009 +0200
Update feature matrix for urpmi
diff --git a/docs/html/pk-matrix.html b/docs/html/pk-matrix.html
index f49962f..1e6f5fa 100644
--- a/docs/html/pk-matrix.html
+++ b/docs/html/pk-matrix.html
@@ -177,7 +177,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- ports -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- slapt -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- smart -->
-<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
+<td><img src="img/status-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- zypp -->
</tr>
@@ -339,7 +339,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- slapt -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- smart -->
-<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
+<td><img src="img/status-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- zypp -->
</tr>
commit 7d8a7f7b07416a07841d408341e7687408ccc01d
Author: Aurelien Lefebvre <alk at imj.fr>
Date: Mon Oct 12 15:47:37 2009 +0200
urpmi: added repo_enable method implementation
Patch from Michael Scherer <misc at mandriva dot org>
diff --git a/backends/urpmi/helpers/urpmi-dispatched-backend.pl b/backends/urpmi/helpers/urpmi-dispatched-backend.pl
index e2d011a..9a0cf72 100755
--- a/backends/urpmi/helpers/urpmi-dispatched-backend.pl
+++ b/backends/urpmi/helpers/urpmi-dispatched-backend.pl
@@ -97,6 +97,9 @@ sub dispatch_command {
remove_packages($urpm, $args);
urpm::media::configure($urpm);
}
+ elsif($command eq "repo-enable") {
+ repo_enable($urpm, $args);
+ }
elsif($command eq "resolve") {
resolve($urpm, $args);
}
@@ -512,6 +515,28 @@ sub remove_packages {
_finished();
}
+sub repo_enable {
+
+ my ($urpm, $args) = @_;
+
+ my $name = @{$args}[0];
+ my $enable = @{$args}[1] eq "yes" ? 1 : 0;
+
+ my @media = grep { $_->{name} eq $name } @{$urpm->{media}};
+ if ($#media == 0) {
+ if ($enable) {
+ delete @media[0]->{ignore};
+ } else {
+ $media[0]->{ignore} = 1;
+ }
+ urpm::media::write_config($urpm);
+ } else {
+ pk_print_error(PK_ERROR_ENUM_REPO_NOT_FOUND, qq(Repository named "$name" not found.\n));
+ }
+
+ _finished();
+}
+
sub resolve {
my ($urpm, $args) = @_;
diff --git a/backends/urpmi/pk-backend-urpmi.c b/backends/urpmi/pk-backend-urpmi.c
index 787ce73..5c5458e 100644
--- a/backends/urpmi/pk-backend-urpmi.c
+++ b/backends/urpmi/pk-backend-urpmi.c
@@ -225,6 +225,15 @@ backend_remove_packages (PkBackend *backend, gchar **package_ids, gboolean allow
}
/**
+ * pk_backend_repo_enable:
+ */
+static void
+backend_repo_enable (PkBackend *backend, const gchar *rid, gboolean enabled)
+{
+ pk_backend_spawn_helper (spawn, "urpmi-dispatched-backend.pl", "repo-enable", rid, pk_backend_bool_to_text (enabled), NULL);
+}
+
+/**
* pk_backend_search_group:
*/
static void
@@ -376,7 +385,7 @@ PK_BACKEND_OPTIONS (
NULL, /* install_signature */
backend_refresh_cache, /* refresh_cache */
backend_remove_packages, /* remove_packages */
- NULL, /* repo_enable */
+ backend_repo_enable, /* repo_enable */
NULL, /* repo_set_data */
backend_resolve, /* resolve */
NULL, /* rollback */
commit ccc23cf3638c0b305fec8bf47da2f19d0fe69023
Author: Aurelien Lefebvre <alk at imj.fr>
Date: Mon Oct 12 15:45:14 2009 +0200
urpmi: added get_repo_list method implementation
Patch from Michael Scherer <misc at mandriva dot org>
diff --git a/backends/urpmi/helpers/perl_packagekit/prints.pm b/backends/urpmi/helpers/perl_packagekit/prints.pm
index 58debab..af1a9ee 100644
--- a/backends/urpmi/helpers/perl_packagekit/prints.pm
+++ b/backends/urpmi/helpers/perl_packagekit/prints.pm
@@ -25,6 +25,7 @@ our @EXPORT = qw(
pk_print_percentage
pk_print_sub_percentage
pk_print_distro_upgrade
+ pk_print_repo_details
);
sub pk_print_package {
@@ -109,4 +110,9 @@ sub pk_print_distro_upgrade {
printf("distro-upgrade\t%s\t%s\t%s\n", $dtype, $name, $summary);
}
+sub pk_print_repo_details {
+ my($id, $description, $enabled) = @_;
+ printf("repo-detail\t%s\t%s\t%s\n", $id, $description, $enabled);
+}
+
1;
diff --git a/backends/urpmi/helpers/urpmi-dispatched-backend.pl b/backends/urpmi/helpers/urpmi-dispatched-backend.pl
index a7cd562..e2d011a 100755
--- a/backends/urpmi/helpers/urpmi-dispatched-backend.pl
+++ b/backends/urpmi/helpers/urpmi-dispatched-backend.pl
@@ -70,6 +70,9 @@ sub dispatch_command {
elsif($command eq "get-packages") {
get_packages($urpm, $args);
}
+ elsif($command eq "get-repo-list") {
+ get_repo_list($urpm, $args);
+ }
elsif($command eq "get-requires") {
get_requires($urpm, $args);
}
@@ -274,6 +277,16 @@ sub get_packages {
_finished();
}
+sub get_repo_list {
+
+ my ($urpm, $args) = @_;
+ foreach my $media (@{$urpm->{media}}) {
+ pk_print_repo_details($media->{name}, $media->{name}, $media->{ignore});
+ }
+ _finished();
+}
+
+
sub get_requires {
my ($urpm, $args) = @_;
diff --git a/backends/urpmi/pk-backend-urpmi.c b/backends/urpmi/pk-backend-urpmi.c
index 9aa8af5..787ce73 100644
--- a/backends/urpmi/pk-backend-urpmi.c
+++ b/backends/urpmi/pk-backend-urpmi.c
@@ -247,6 +247,14 @@ backend_get_packages (PkBackend *backend, PkBitfield filters)
pk_backend_spawn_helper (spawn, "urpmi-dispatched-backend.pl", "get-packages", filters_text, NULL);
g_free (filters_text);
}
+/**
+ * backend_get_repo_list:
+ */
+static void
+backend_get_repo_list (PkBackend *backend, PkBitfield filters)
+{
+ pk_backend_spawn_helper (spawn, "urpmi-dispatched-backend.pl", "get-repo-list", NULL);
+}
/**
* backend_get_requires:
@@ -359,7 +367,7 @@ PK_BACKEND_OPTIONS (
backend_get_distro_upgrades, /* get_distro_upgrades */
backend_get_files, /* get_files */
backend_get_packages, /* get_packages */
- NULL, /* get_repo_list */
+ backend_get_repo_list, /* get_repo_list */
backend_get_requires, /* get_requires */
backend_get_update_detail, /* get_update_detail */
backend_get_updates, /* get_updates */
commit fa6e1e7b4172e5544fb7a93032307d62233ff574
Author: Aurelien Lefebvre <alk at imj.fr>
Date: Mon Oct 12 15:42:14 2009 +0200
urpmi: fix hardcoded /tmp filename
Patch from Michael Scherer <misc at mandriva dot org>
diff --git a/backends/urpmi/helpers/urpmi-dispatched-backend.pl b/backends/urpmi/helpers/urpmi-dispatched-backend.pl
index d305a4a..a7cd562 100755
--- a/backends/urpmi/helpers/urpmi-dispatched-backend.pl
+++ b/backends/urpmi/helpers/urpmi-dispatched-backend.pl
@@ -15,6 +15,7 @@ local $| = 1; # stdout autoflush
use lib;
use File::Basename;
+use File::Temp;
BEGIN {
push @INC, dirname($0);
@@ -195,7 +196,7 @@ sub get_distro_upgrades {
%product_id = _parse_line(<PRODUCT_FILE>);
close(PRODUCT_FILE);
- my $distribfile_path = "/tmp/distrib.list";
+ my (undef, $distribfile_path) = tempfile("packagekit_urpmi_XXXXXX", UNLINK => 1);
_download_distrib_file($distribfile_path, \%product_id);
-f $distribfile_path or goto finished;
commit 80e57a7fb4ee573ef9df5b4a36bb3dc12f1b8704
Author: Richard Hughes <richard at hughsie.com>
Date: Mon Oct 12 14:16:00 2009 +0100
trivial: sync spec file with Fedora upstream
diff --git a/contrib/PackageKit.spec.in b/contrib/PackageKit.spec.in
index f9802ef..afee47d 100644
--- a/contrib/PackageKit.spec.in
+++ b/contrib/PackageKit.spec.in
@@ -25,7 +25,7 @@ Requires: PackageKit-yum-plugin = %{version}-%{release}
Requires: PackageKit-yum = %{version}-%{release}
Requires: shared-mime-info
Requires: comps-extras
-%if 0%{?rhel} != 0
+%if 0%{?rhel} == 0
Requires: preupgrade
%endif
BuildRequires: polkit >= %{polkit_version}
@@ -77,6 +77,7 @@ Requires: %{name} = %{version}-%{release}
%description yum
A backend for PackageKit to enable yum functionality.
+%if 0%{?rhel} == 0
%package smart
Summary: PackageKit SMART backend
Group: System Environment/Libraries
@@ -85,6 +86,7 @@ Requires: %{name} = %{version}-%{release}
%description smart
A backend for PackageKit to enable SMART functionality.
+%endif
%package docs
Summary: Documentation for PackageKit
@@ -219,17 +221,6 @@ Requires: PackageKit-glib = %{version}-%{release}
A simple helper that offers to install new packages on the command line
using PackageKit.
-%package ruck
-Summary: rug-like interface that uses PackageKit
-Group: Development/Libraries
-Requires: PackageKit = %{version}-%{release}
-
-%description ruck
-Ruck is a rug-like interface for PackageKit, where rug is the command-line
-interface for rcd and red carpet daemon.
-Ruck is for a couple of lazy people who got used to Red Carpet's rug command
-and are unable to learn any new tricks.
-
%package device-rebind
Summary: Device rebind functionality for PackageKit
Group: Development/Libraries
@@ -244,7 +235,18 @@ user to restart the computer or remove and re-insert the device.
%setup -q
%build
-%configure --disable-static --enable-yum --enable-smart --with-default-backend=yum --disable-local
+%configure \
+ --disable-static \
+ --enable-yum \
+%if 0%{?rhel} == 0
+ --enable-smart \
+%endif
+ --with-default-backend=yum \
+ --disable-local \
+ --disable-ruck \
+ --disable-strict \
+ --disable-glib \
+ --disable-tests
make %{?_smp_mflags}
@@ -341,12 +343,14 @@ update-mime-database %{_datadir}/mime &> /dev/null || :
%dir %{_datadir}/PackageKit/website/img/thumbnails
%{_datadir}/PackageKit/website/img/thumbnails/*.png
+%if 0%{?rhel} == 0
%files smart
%defattr(-,root,root,-)
%doc README AUTHORS NEWS COPYING
%{_libdir}/packagekit-backend/libpk_backend_smart.so
%dir %{_datadir}/PackageKit/helpers/smart
%{_datadir}/PackageKit/helpers/smart/*
+%endif
%files yum
%defattr(-,root,root,-)
@@ -411,19 +415,12 @@ update-mime-database %{_datadir}/mime &> /dev/null || :
%{_sbindir}/pk-device-rebind
%{_datadir}/man/man1/pk-device-rebind.1.gz
-%files ruck
-%defattr(-,root,root,-)
-%doc README AUTHORS NEWS COPYING
-%{_bindir}/ruck
-%{_datadir}/ruck/*
-
%files glib-devel
%defattr(-,root,root,-)
%doc README AUTHORS NEWS COPYING
%{_libdir}/libpackagekit-glib*.so
%{_libdir}/pkgconfig/packagekit-glib*.pc
%dir %{_includedir}/PackageKit
-%dir %{_includedir}/PackageKit/packagekit-glib
%dir %{_includedir}/PackageKit/packagekit-glib2
%{_includedir}/PackageKit/packagekit-glib*/*.h
commit dba5786cbe26bbe2f02984f9f71ddfb1dcdd1918
Author: Richard Hughes <richard at hughsie.com>
Date: Mon Oct 12 14:15:41 2009 +0100
bugfix: Raise some of the DoS limits in the config file as it causes gnome-shell not to install properly
diff --git a/etc/PackageKit.conf.in b/etc/PackageKit.conf.in
index 9e3bca9..1d31631 100644
--- a/etc/PackageKit.conf.in
+++ b/etc/PackageKit.conf.in
@@ -191,8 +191,8 @@ StateChangedTimeoutNormal=600
# cause errors if the desktop client is doing many requests to the daemon in a
# short period of time.
#
-# default=100
-SimultaneousTransactionsForUid=100
+# default=500
+SimultaneousTransactionsForUid=500
# The maximum number of items that can be resolved in one method
#
@@ -200,8 +200,8 @@ SimultaneousTransactionsForUid=100
# cause errors if the desktop client is trying to resolve a large number of
# packages in one method.
#
-# default=10
-MaximumItemsToResolve=10
+# default=100
+MaximumItemsToResolve=100
# The maximum number of packages that can be processed in one method
#
commit 749bff526e92ae74d5be178cd70cc361d1af7f09
Author: hyuuga <hyuuga at fedoraproject.org>
Date: Sat Oct 10 03:09:33 2009 +0000
Sending translation for Japanese
diff --git a/po/ja.po b/po/ja.po
index ab09207..566d511 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-22 08:31+0000\n"
-"PO-Revision-Date: 2009-09-22 21:37+0900\n"
+"POT-Creation-Date: 2009-10-09 20:51+0000\n"
+"PO-Revision-Date: 2009-10-10 12:07+0900\n"
"Last-Translator: Hyu_gabaru Ryu_ichi <hyu_gabaru at yahoo.co.jp>\n"
"Language-Team: Japanese <fedora-trans-ja at redhat.com>\n"
"MIME-Version: 1.0\n"
@@ -17,115 +17,115 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
#. TRANSLATORS: this is an atomic transaction
-#: ../client/pk-console.c:142
+#: ../client/pk-console.c:143
msgid "Transaction"
msgstr "ãã©ã³ã¶ã¯ã·ã§ã³"
#. TRANSLATORS: this is the time the transaction was started in system timezone
-#: ../client/pk-console.c:144
+#: ../client/pk-console.c:145
msgid "System time"
msgstr "ã·ã¹ãã æå»"
#. TRANSLATORS: this is if the transaction succeeded or not
-#: ../client/pk-console.c:146
+#: ../client/pk-console.c:147
msgid "Succeeded"
msgstr "æå"
-#: ../client/pk-console.c:146
+#: ../client/pk-console.c:147
msgid "True"
msgstr "ç"
-#: ../client/pk-console.c:146
+#: ../client/pk-console.c:147
msgid "False"
msgstr "å½"
#. TRANSLATORS: this is the transactions role, e.g. "update-system"
#. TRANSLATORS: the trasaction role, e.g. update-system
-#: ../client/pk-console.c:148 ../src/pk-polkit-action-lookup.c:336
+#: ../client/pk-console.c:149 ../src/pk-polkit-action-lookup.c:336
msgid "Role"
msgstr "ãã¼ã«"
#. TRANSLATORS: this is The duration of the transaction
-#: ../client/pk-console.c:153
+#: ../client/pk-console.c:154
msgid "Duration"
msgstr "æé"
-#: ../client/pk-console.c:153
+#: ../client/pk-console.c:154
msgid "(seconds)"
msgstr "(ç§)"
#. TRANSLATORS: this is The command line used to do the action
#. TRANSLATORS: the command line of the thing that wants the authentication
-#: ../client/pk-console.c:157 ../src/pk-polkit-action-lookup.c:350
+#: ../client/pk-console.c:158 ../src/pk-polkit-action-lookup.c:350
msgid "Command line"
msgstr "ã³ãã³ãã©ã¤ã³"
#. TRANSLATORS: this is the user ID of the user that started the action
-#: ../client/pk-console.c:159
+#: ../client/pk-console.c:160
msgid "User ID"
msgstr "å©ç¨è
ID"
#. TRANSLATORS: this is the username, e.g. hughsie
-#: ../client/pk-console.c:166
+#: ../client/pk-console.c:167
msgid "Username"
msgstr "å©ç¨è
å"
#. TRANSLATORS: this is the users real name, e.g. "Richard Hughes"
-#: ../client/pk-console.c:170
+#: ../client/pk-console.c:171
msgid "Real name"
msgstr "å®å"
-#: ../client/pk-console.c:178
+#: ../client/pk-console.c:179
msgid "Affected packages:"
msgstr "å½±é¿ãããããã±ã¼ã¸:"
-#: ../client/pk-console.c:180
+#: ../client/pk-console.c:181
msgid "Affected packages: None"
msgstr "å½±é¿ãããããã±ã¼ã¸: ãªã"
#. TRANSLATORS: this is the distro, e.g. Fedora 10
-#: ../client/pk-console.c:200
+#: ../client/pk-console.c:201
msgid "Distribution"
msgstr "é
å¸ç©"
#. TRANSLATORS: this is type of update, stable or testing
-#: ../client/pk-console.c:202
+#: ../client/pk-console.c:203
msgid "Type"
msgstr "ã¿ã¤ã"
#. TRANSLATORS: this is any summary text describing the upgrade
#. TRANSLATORS: this is the summary of the group
-#: ../client/pk-console.c:204 ../client/pk-console.c:225
+#: ../client/pk-console.c:205 ../client/pk-console.c:226
msgid "Summary"
msgstr "æ¦è¦"
#. TRANSLATORS: this is the group category name
-#: ../client/pk-console.c:214
+#: ../client/pk-console.c:215
msgid "Category"
msgstr "åºå"
#. TRANSLATORS: this is group identifier
-#: ../client/pk-console.c:216
+#: ../client/pk-console.c:217
msgid "ID"
msgstr "ID"
#. TRANSLATORS: this is the parent group
-#: ../client/pk-console.c:219
+#: ../client/pk-console.c:220
msgid "Parent"
msgstr "親"
#. TRANSLATORS: this is the name of the parent group
-#: ../client/pk-console.c:222
+#: ../client/pk-console.c:223
msgid "Name"
msgstr "åå"
#. TRANSLATORS: this is preferred icon for the group
-#: ../client/pk-console.c:228
+#: ../client/pk-console.c:229
msgid "Icon"
msgstr "ã¢ã¤ã³ã³"
#. TRANSLATORS: this is a header for the package that can be updated
-#: ../client/pk-console.c:242
+#: ../client/pk-console.c:243
msgid "Details about the update:"
msgstr "æ´æ°ã®è©³ç´°:"
@@ -133,122 +133,122 @@ msgstr "æ´æ°ã®è©³ç´°:"
#. TRANSLATORS: the package that is not signed by a known key
#. TRANSLATORS: the package name that was trying to be installed
#. TRANSLATORS: title, the names of the packages that the method is processing
-#: ../client/pk-console.c:248 ../lib/packagekit-glib2/pk-task-text.c:105
-#: ../lib/packagekit-glib2/pk-task-text.c:172
+#: ../client/pk-console.c:249 ../lib/packagekit-glib2/pk-task-text.c:107
+#: ../lib/packagekit-glib2/pk-task-text.c:174
#: ../src/pk-polkit-action-lookup.c:361
msgid "Package"
msgid_plural "Packages"
msgstr[0] "ããã±ã¼ã¸"
#. TRANSLATORS: details about the update, any packages that this update updates
-#: ../client/pk-console.c:251
+#: ../client/pk-console.c:252
msgid "Updates"
msgstr "æ´æ°"
#. TRANSLATORS: details about the update, any packages that this update obsoletes
-#: ../client/pk-console.c:255
+#: ../client/pk-console.c:256
msgid "Obsoletes"
msgstr "æ§ç"
#. TRANSLATORS: details about the update, the vendor URLs
#. TRANSLATORS: the vendor (e.g. vmware) that is providing the EULA
-#: ../client/pk-console.c:259 ../lib/packagekit-glib2/pk-task-text.c:175
+#: ../client/pk-console.c:260 ../lib/packagekit-glib2/pk-task-text.c:177
msgid "Vendor"
msgstr "ä¾çµ¦å
"
#. TRANSLATORS: details about the update, the bugzilla URLs
-#: ../client/pk-console.c:263
+#: ../client/pk-console.c:264
msgid "Bugzilla"
msgstr "ãã°ã¸ã©"
#. TRANSLATORS: details about the update, the CVE URLs
-#: ../client/pk-console.c:267
+#: ../client/pk-console.c:268
msgid "CVE"
msgstr "CVE"
#. TRANSLATORS: details about the update, if the package requires a restart
-#: ../client/pk-console.c:271
+#: ../client/pk-console.c:272
msgid "Restart"
msgstr "åã¹ã¿ã¼ã"
#. TRANSLATORS: details about the update, any description of the update
-#: ../client/pk-console.c:275
+#: ../client/pk-console.c:276
msgid "Update text"
msgstr "æ´æ°ããã¹ã"
#. TRANSLATORS: details about the update, the changelog for the package
-#: ../client/pk-console.c:279
+#: ../client/pk-console.c:280
msgid "Changes"
msgstr "å¤æ´"
#. TRANSLATORS: details about the update, the ongoing state of the update
-#: ../client/pk-console.c:283
+#: ../client/pk-console.c:284
msgid "State"
msgstr "ç¶æ
"
#. TRANSLATORS: details about the update, date the update was issued
-#: ../client/pk-console.c:288
+#: ../client/pk-console.c:289
msgid "Issued"
msgstr "çºè¡æ¸"
#. TRANSLATORS: details about the update, date the update was updated
#. TRANSLATORS: The action of the package, in past tense
-#: ../client/pk-console.c:293 ../lib/packagekit-glib2/pk-console-shared.c:494
+#: ../client/pk-console.c:294 ../lib/packagekit-glib2/pk-console-shared.c:502
msgid "Updated"
msgstr "æ´æ°æ¸"
#. TRANSLATORS: if the repo is enabled
-#: ../client/pk-console.c:311
+#: ../client/pk-console.c:312
msgid "Enabled"
msgstr "æå¹"
#. TRANSLATORS: if the repo is disabled
-#: ../client/pk-console.c:314
+#: ../client/pk-console.c:315
msgid "Disabled"
msgstr "ç¡å¹"
#. TRANSLATORS: a package requires the system to be restarted
-#: ../client/pk-console.c:336
+#: ../client/pk-console.c:337
msgid "System restart required by:"
msgstr "以ä¸ã«ããã·ã¹ãã ã®åèµ·åãå¿
è¦ã§ã:"
#. TRANSLATORS: a package requires the session to be restarted
-#: ../client/pk-console.c:339
+#: ../client/pk-console.c:340
msgid "Session restart required:"
msgstr "ã»ãã·ã§ã³ã®åèµ·åãå¿
è¦ã§ã:"
#. TRANSLATORS: a package requires the system to be restarted due to a security update
-#: ../client/pk-console.c:342
+#: ../client/pk-console.c:343
msgid "System restart (security) required by:"
msgstr "以ä¸ã«ããã·ã¹ãã åèµ·å (ã»ãã¥ãªãã£ã¼) ãå¿
è¦ã§ã:"
#. TRANSLATORS: a package requires the session to be restarted due to a security update
-#: ../client/pk-console.c:345
+#: ../client/pk-console.c:346
msgid "Session restart (security) required:"
msgstr "ã»ãã·ã§ã³åèµ·å (ã»ãã¥ãªãã£ã¼) ãå¿
è¦:"
#. TRANSLATORS: a package requires the application to be restarted
-#: ../client/pk-console.c:348
+#: ../client/pk-console.c:349
msgid "Application restart required by:"
msgstr "以ä¸ã«ããã¢ããªã±ã¼ã·ã§ã³ã®åèµ·åãå¿
è¦:"
#. TRANSLATORS: This a list of details about the package
-#: ../client/pk-console.c:365
+#: ../client/pk-console.c:366
msgid "Package description"
msgstr "ããã±ã¼ã¸ã®èª¬æ"
#. TRANSLATORS: This a message (like a little note that may be of interest) from the transaction
-#: ../client/pk-console.c:383
+#: ../client/pk-console.c:384
msgid "Message:"
msgstr "ã¡ãã»ã¼ã¸:"
#. TRANSLATORS: This where the package has no files
-#: ../client/pk-console.c:397
+#: ../client/pk-console.c:398
msgid "No files"
msgstr "ãã¡ã¤ã«ãªã"
#. TRANSLATORS: This a list files contained in the package
-#: ../client/pk-console.c:402
+#: ../client/pk-console.c:403
msgid "Package files"
msgstr "ããã±ã¼ã¸ãã¡ã¤ã«"
@@ -257,58 +257,55 @@ msgstr "ããã±ã¼ã¸ãã¡ã¤ã«"
msgid "Fatal error"
msgstr "é大ãªã¨ã©ã¼"
-#. TRANSLATORS: we failed, but there was no error set
-#: ../client/pk-console.c:488
-msgid "Transaction failed with no error"
-msgstr "ã¨ã©ã¼ãªãã§ãã©ã³ã¶ã¯ã·ã§ã³ã失æ"
-
#. TRANSLATORS: the transaction failed in a way we could not expect
-#: ../client/pk-console.c:493
+#: ../client/pk-console.c:484
+#: ../contrib/command-not-found/pk-command-not-found.c:430
+#: ../contrib/command-not-found/pk-command-not-found.c:597
msgid "The transaction failed"
msgstr "ãã©ã³ã¶ã¯ã·ã§ã³ã失æ"
#. TRANSLATORS: a package needs to restart their system
-#: ../client/pk-console.c:567
+#: ../client/pk-console.c:552
msgid "Please restart the computer to complete the update."
msgstr "æ´æ°ãå®äºããããã«ã³ã³ãã¥ã¼ã¿ã¼ãåèµ·åãã¦ãã ããã"
#. TRANSLATORS: a package needs to restart the session
-#: ../client/pk-console.c:570
+#: ../client/pk-console.c:555
msgid "Please logout and login to complete the update."
msgstr "æ´æ°ãå®äºããããã«ãã°ã¢ã¦ããããã°ã¤ã³ãã¦ãã ããã"
#. TRANSLATORS: a package needs to restart their system (due to security)
-#: ../client/pk-console.c:573
+#: ../client/pk-console.c:558
msgid ""
"Please restart the computer to complete the update as important security "
"updates have been installed."
msgstr ""
-"é大ãªã»ãã¥ãªãã£ã¼æ´æ°ãã¤ã³ã¹ãã¼ã«ãããã®ã§ãæ´æ°ãå®äºããããã«"
-"ã³ã³ãã¥ã¼ã¿ã¼ãåèµ·åãã¦ãã ããã"
+"é大ãªã»ãã¥ãªãã£ã¼æ´æ°ãã¤ã³ã¹ãã¼ã«ãããã®ã§ãæ´æ°ãå®äºããããã«ã³ã³"
+"ãã¥ã¼ã¿ã¼ãåèµ·åãã¦ãã ããã"
#. TRANSLATORS: a package needs to restart the session (due to security)
-#: ../client/pk-console.c:576
+#: ../client/pk-console.c:561
msgid ""
"Please logout and login to complete the update as important security updates "
"have been installed."
msgstr ""
-"é大ãªã»ãã¥ãªãã£ã¼æ´æ°ãã¤ã³ã¹ãã¼ã«ãããã®ã§ãæ´æ°ãå®äºããããã«"
-"ãã°ã¢ã¦ãã¨ãã°ã¤ã³ãè¡ã£ã¦ä¸ããã"
+"é大ãªã»ãã¥ãªãã£ã¼æ´æ°ãã¤ã³ã¹ãã¼ã«ãããã®ã§ãæ´æ°ãå®äºããããã«ãã°ã¢"
+"ã¦ãã¨ãã°ã¤ã³ãè¡ã£ã¦ä¸ããã"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:597
+#: ../client/pk-console.c:584
#, c-format
msgid "This tool could not find any available package: %s"
msgstr "ãã®ãã¼ã«ã§ã¯åãæ±ããããã±ã¼ã¸ãè¦ã¤ãããã¾ãã: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:625
+#: ../client/pk-console.c:612
#, c-format
msgid "This tool could not find the installed package: %s"
msgstr "ãã®ãã¼ã«ã§ã¯ã¤ã³ã¹ãã¼ã«ãããããã±ã¼ã¸ãè¦ã¤ãããã¾ãã: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:653 ../client/pk-console.c:681
+#: ../client/pk-console.c:640 ../client/pk-console.c:668
#, c-format
msgid "This tool could not find the package: %s"
msgstr "ãã®ãã¼ã«ã§ã¯ããã±ã¼ã¸ãè¦ã¤ãããã¾ãã: %s"
@@ -317,61 +314,72 @@ msgstr "ãã®ãã¼ã«ã§ã¯ããã±ã¼ã¸ãè¦ã¤ãããã¾ãã: %s"
#. TRANSLATORS: There was an error getting the dependencies for the package. The detailed error follows
#. TRANSLATORS: There was an error getting the details about the package. The detailed error follows
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:709 ../client/pk-console.c:737
-#: ../client/pk-console.c:765 ../client/pk-console.c:793
-#: ../client/pk-console.c:821
+#: ../client/pk-console.c:696 ../client/pk-console.c:724
+#: ../client/pk-console.c:752 ../client/pk-console.c:780
+#: ../client/pk-console.c:808
#, c-format
msgid "This tool could not find all the packages: %s"
msgstr "ãã®ãã¼ã«ã§ã¯å
¨ããã±ã¼ã¸ãè¦ã¤ãããã¾ãã: %s"
#. TRANSLATORS: This is when the daemon crashed, and we are up shit creek without a paddle
-#: ../client/pk-console.c:850
+#: ../client/pk-console.c:837
msgid "The daemon crashed mid-transaction!"
msgstr "ãã©ã³ã¶ã¯ã·ã§ã³ä¸ã«ãã¼ã¢ã³ãã¯ã©ãã·ã¥ãã¾ãã!"
#. TRANSLATORS: This is the header to the --help menu
-#: ../client/pk-console.c:884
+#: ../client/pk-console.c:871
msgid "PackageKit Console Interface"
msgstr "PackageKit ã³ã³ã½ã¼ã«ã¤ã³ã¿ã¼ãã§ã¼ã¹"
#. these are commands we can use with pkcon
-#: ../client/pk-console.c:886
+#: ../client/pk-console.c:873
msgid "Subcommands:"
msgstr "ãµãã³ãã³ã:"
#. TRANSLATORS: we keep a database updated with the time that an action was last executed
-#: ../client/pk-console.c:965
+#: ../client/pk-console.c:952
msgid "Failed to get the time since this action was last completed"
msgstr ""
"ãã®ã¢ã¯ã·ã§ã³ã¯ç´åã«å®äºãããã®ã ã£ãã®ã§ãæå»ãå¾ãã®ã«å¤±æãã¾ãã"
#. TRANSLATORS: command line argument, if we should show debugging information
#. TRANSLATORS: if we should show debugging data
-#: ../client/pk-console.c:1000 ../client/pk-generate-pack.c:222
-#: ../client/pk-monitor.c:267
-#: ../contrib/command-not-found/pk-command-not-found.c:614
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:504
+#: ../client/pk-console.c:989 ../client/pk-generate-pack.c:223
+#: ../client/pk-monitor.c:281
+#: ../contrib/command-not-found/pk-command-not-found.c:651
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:512
#: ../contrib/device-rebind/pk-device-rebind.c:293 ../src/pk-main.c:211
msgid "Show extra debugging information"
msgstr "追å ã®ãããã°æ
å ±ã表示"
#. TRANSLATORS: command line argument, just show the version string
-#: ../client/pk-console.c:1003 ../client/pk-monitor.c:269
+#: ../client/pk-console.c:992 ../client/pk-monitor.c:283
msgid "Show the program version and exit"
msgstr "ããã°ã©ã ã®ãã¼ã¸ã§ã³ã表示ãã¦çµäº"
#. TRANSLATORS: command line argument, use a filter to narrow down results
-#: ../client/pk-console.c:1006
+#: ../client/pk-console.c:995
msgid "Set the filter, e.g. installed"
msgstr "ã¤ã³ã¹ãã¼ã«æ¸ãªã©ã®ãã£ã«ã¿ã¼ãè¨å®"
#. TRANSLATORS: command line argument, work asynchronously
-#: ../client/pk-console.c:1009
+#: ../client/pk-console.c:998
msgid "Exit without waiting for actions to complete"
msgstr "ã¢ã¯ã·ã§ã³ãå®äºããã®ãå¾
ããã«çµäº"
+#. command line argument, do we ask questions
+#: ../client/pk-console.c:1001
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:524
+msgid "Install the packages without asking for confirmation"
+msgstr ""
+
+#. TRANSLATORS: command line argument, this command is not a priority
+#: ../client/pk-console.c:1004
+msgid "Run the command using idle network bandwidth and also using less power"
+msgstr ""
+
#. TRANSLATORS: we failed to contact the daemon
-#: ../client/pk-console.c:1034
+#: ../client/pk-console.c:1030
msgid "Failed to contact PackageKit"
msgstr "PackageKit ã¸ã®æ¥è§¦ã«å¤±æ"
@@ -465,7 +473,7 @@ msgstr "æ£ãããã¼ã«ãå¿
è¦ã§ã"
#. TRANSLATORS: This is when the user fails to supply the package name
#: ../client/pk-console.c:1320 ../client/pk-console.c:1335
#: ../client/pk-console.c:1344 ../client/pk-console.c:1364
-#: ../client/pk-console.c:1373 ../client/pk-generate-pack.c:285
+#: ../client/pk-console.c:1373 ../client/pk-generate-pack.c:287
msgid "A package name is required"
msgstr "ããã±ã¼ã¸åãå¿
è¦ã§ã"
@@ -486,504 +494,509 @@ msgid "Command failed"
msgstr "ã³ãã³ã失æ"
#. TRANSLATORS: we can exclude certain packages (glibc) when we know they'll exist on the target
-#: ../client/pk-generate-pack.c:225
+#: ../client/pk-generate-pack.c:226
msgid "Set the file name of dependencies to be excluded"
msgstr "ä¾åã®ãããã¡ã¤ã«åã¯é¤ãããããã«è¨å®ãã"
#. TRANSLATORS: the output location
-#: ../client/pk-generate-pack.c:228
+#: ../client/pk-generate-pack.c:229
msgid ""
"The output file or directory (the current directory is used if ommitted)"
msgstr "åºåãã¡ã¤ã«ãããã£ã¬ã¯ããªã¼ (çç¥ããã¨ç¾å¨ã®ãã£ã¬ã¯ããªã¼)"
#. TRANSLATORS: put a list of packages in the pack
-#: ../client/pk-generate-pack.c:231
+#: ../client/pk-generate-pack.c:232
msgid "The package to be put into the service pack"
msgstr "ãµã¼ãã¹ããã¯ã«å
¥ããããããã±ã¼ã¸"
#. TRANSLATORS: put all pending updates in the pack
-#: ../client/pk-generate-pack.c:234
+#: ../client/pk-generate-pack.c:235
msgid "Put all updates available in the service pack"
msgstr "å©ç¨å¯è½ãªå
¨ã¦ã®æ´æ°ããµã¼ãã¹ããã¯ã«å
¥ãã"
#. TRANSLATORS: This is when the user fails to supply the correct arguments
-#: ../client/pk-generate-pack.c:269
+#: ../client/pk-generate-pack.c:271
msgid "Neither --package or --updates option selected."
msgstr "--package ãªãã·ã§ã³ã --updates ãªãã·ã§ã³ãé¸æããã¦ãã¾ããã"
#. TRANSLATORS: This is when the user fails to supply just one argument
-#: ../client/pk-generate-pack.c:277
+#: ../client/pk-generate-pack.c:279
msgid "Both options selected."
msgstr "両æ¹ã®ãªãã·ã§ã³ãé¸æããã¾ããã"
#. TRANSLATORS: This is when the user fails to supply the output
-#: ../client/pk-generate-pack.c:293
+#: ../client/pk-generate-pack.c:295
msgid "A output directory or file name is required"
msgstr "åºåãã£ã¬ã¯ããªã¼ããã¡ã¤ã«åãå¿
è¦ã§ã"
#. TRANSLATORS: This is when the dameon is not-installed/broken and fails to startup
-#: ../client/pk-generate-pack.c:311
+#: ../client/pk-generate-pack.c:313
msgid "The dameon failed to startup"
msgstr "ãã¼ã¢ã³ã®èµ·åã«å¤±æãã¾ãã"
#. TRANSLATORS: This is when the backend doesn't have the capability to get-depends
#. TRANSLATORS: This is when the backend doesn't have the capability to download
-#: ../client/pk-generate-pack.c:322 ../client/pk-generate-pack.c:328
+#: ../client/pk-generate-pack.c:324 ../client/pk-generate-pack.c:330
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:335
+#: ../client/pk-generate-pack.c:337
msgid ""
"Service packs cannot be created as PackageKit was not built with libarchive "
"support."
msgstr ""
-"PackageKit ã libarchive ä»ãã§ãã«ãããã¦ããªãã®ã§ãµã¼ãã¹ããã¯ãçæ"
-"ã§ãã¾ããã"
+"PackageKit ã libarchive ä»ãã§ãã«ãããã¦ããªãã®ã§ãµã¼ãã¹ããã¯ãçæã§ã"
+"ã¾ããã"
#. TRANSLATORS: the user specified an absolute path, but didn't get the extension correct
-#: ../client/pk-generate-pack.c:346
+#: ../client/pk-generate-pack.c:348
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:362
+#: ../client/pk-generate-pack.c:364
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:365
+#: ../client/pk-generate-pack.c:367
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:378
+#: ../client/pk-generate-pack.c:380
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:390
+#: ../client/pk-generate-pack.c:392
msgid "Failed to open package list."
msgstr "ããã±ã¼ã¸ä¸è¦§ãéãã®ã«å¤±æãã¾ããã"
#. TRANSLATORS: The package name is being matched up to available packages
-#: ../client/pk-generate-pack.c:399
+#: ../client/pk-generate-pack.c:401
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:403
+#: ../client/pk-generate-pack.c:405
#, 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:411
+#: ../client/pk-generate-pack.c:413
msgid "Creating service pack..."
msgstr "ãµã¼ãã¹ããã¯ãä½æä¸..."
#. TRANSLATORS: we succeeded in making the file
-#: ../client/pk-generate-pack.c:426
+#: ../client/pk-generate-pack.c:428
#, c-format
msgid "Service pack created '%s'"
msgstr "ãµã¼ãã¹ãã㯠'%s' ãä½æããã¾ããã"
#. TRANSLATORS: we failed to make te file
-#: ../client/pk-generate-pack.c:431
+#: ../client/pk-generate-pack.c:433
#, c-format
msgid "Failed to create '%s': %s"
msgstr "'%s' ã®ä½æã«å¤±æãã¾ãã: %s"
-#: ../client/pk-monitor.c:197
+#: ../client/pk-monitor.c:211
msgid "Failed to get daemon state"
msgstr "ãã¼ã¢ã³ã®ç¶æ
ãå¾ãã®ã«å¤±æãã¾ãã"
#. TRANSLATORS: this is a program that monitors PackageKit
-#: ../client/pk-monitor.c:284
+#: ../client/pk-monitor.c:299
msgid "PackageKit Monitor"
msgstr "PackageKit ã¢ãã¿ã¼"
#. TRANSLATORS: when we are getting data from the daemon
-#: ../contrib/browser-plugin/pk-plugin-install.c:495
+#: ../contrib/browser-plugin/pk-plugin-install.c:491
msgid "Getting package information..."
msgstr "ããã±ã¼ã¸ã®æ
å ±ãç²å¾ä¸..."
#. TRANSLATORS: run an applicaiton
-#: ../contrib/browser-plugin/pk-plugin-install.c:501
+#: ../contrib/browser-plugin/pk-plugin-install.c:497
#, c-format
msgid "Run %s"
msgstr "%s å®è¡"
#. TRANSLATORS: show the installed version of a package
-#: ../contrib/browser-plugin/pk-plugin-install.c:507
+#: ../contrib/browser-plugin/pk-plugin-install.c:503
msgid "Installed version"
msgstr "ã¤ã³ã¹ãã¼ã«ããããã¼ã¸ã§ã³"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/pk-plugin-install.c:515
+#: ../contrib/browser-plugin/pk-plugin-install.c:511
#, c-format
msgid "Run version %s now"
msgstr "ãã¼ã¸ã§ã³ %s ãããã«å®è¡"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/pk-plugin-install.c:521
+#: ../contrib/browser-plugin/pk-plugin-install.c:517
msgid "Run now"
msgstr "ããã«å®è¡"
#. TRANSLATORS: update to a new version of the package
-#: ../contrib/browser-plugin/pk-plugin-install.c:527
+#: ../contrib/browser-plugin/pk-plugin-install.c:523
#, c-format
msgid "Update to version %s"
msgstr "ãã¼ã¸ã§ã³ %s ã«æ´æ°"
#. TRANSLATORS: To install a package
-#: ../contrib/browser-plugin/pk-plugin-install.c:533
+#: ../contrib/browser-plugin/pk-plugin-install.c:529
#, c-format
msgid "Install %s now"
msgstr "%s ãããã«ã¤ã³ã¹ãã¼ã«"
#. TRANSLATORS: the version of the package
-#: ../contrib/browser-plugin/pk-plugin-install.c:536
+#: ../contrib/browser-plugin/pk-plugin-install.c:532
msgid "Version"
msgstr "ãã¼ã¸ã§ã³"
#. TRANSLATORS: noting found, so can't install
-#: ../contrib/browser-plugin/pk-plugin-install.c:541
+#: ../contrib/browser-plugin/pk-plugin-install.c:537
msgid "No packages found for your system"
msgstr "ããªãã®ã·ã¹ãã ç¨ã®ããã±ã¼ã¸ãè¦ã¤ããã¾ãã"
#. TRANSLATORS: package is being installed
-#: ../contrib/browser-plugin/pk-plugin-install.c:546
+#: ../contrib/browser-plugin/pk-plugin-install.c:542
msgid "Installing..."
msgstr "ã¤ã³ã¹ãã¼ã«ä¸..."
#. TRANSLATORS: downloading repo data so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:358
+#: ../contrib/command-not-found/pk-command-not-found.c:365
msgid "Downloading details about the software sources."
msgstr "ã½ããã¦ã§ã¢ã½ã¼ã¹ã«ã¤ãã¦ã®è©³ç´°ããã¦ã³ãã¼ãä¸ã"
#. TRANSLATORS: downloading file lists so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:362
+#: ../contrib/command-not-found/pk-command-not-found.c:369
msgid "Downloading filelists (this may take some time to complete)."
-msgstr "ãã¡ã¤ã«ä¸è¦§ããã¦ã³ãã¼ãä¸ (å®äºã¾ã§æéããããããããã¾ãã)ã"
+msgstr "ãã¡ã¤ã«ä¸è¦§ããã¦ã³ãã¼ãä¸ (å®äºã¾ã§æéããããããããã¾ãã)ã"
#. TRANSLATORS: waiting for native lock
-#: ../contrib/command-not-found/pk-command-not-found.c:366
+#: ../contrib/command-not-found/pk-command-not-found.c:373
msgid "Waiting for package manager lock."
msgstr "ããã±ã¼ã¸ããã¼ã¸ã£ã¼ã®ããã¯ãå¾
ã£ã¦ãã¾ãã"
#. TRANSLATORS: loading package cache so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:370
+#: ../contrib/command-not-found/pk-command-not-found.c:377
msgid "Loading list of packages."
msgstr "ããã±ã¼ã¸ã®ä¸è¦§ããã¼ãä¸ã"
#. TRANSLATORS: we failed to find the package, this shouldn't happen
-#: ../contrib/command-not-found/pk-command-not-found.c:444
+#: ../contrib/command-not-found/pk-command-not-found.c:421
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:570
+#: ../contrib/command-not-found/pk-command-not-found.c:560
msgid "Failed to launch:"
msgstr "èµ·åã«å¤±æ:"
+#. TRANSLATORS: we failed to install the package
+#: ../contrib/command-not-found/pk-command-not-found.c:588
+msgid "Failed to install packages"
+msgstr "ããã±ã¼ã¸ãã¤ã³ã¹ãã¼ã«ã§ãã¾ãã"
+
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/command-not-found/pk-command-not-found.c:630
+#: ../contrib/command-not-found/pk-command-not-found.c:667
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:658
+#: ../contrib/command-not-found/pk-command-not-found.c:697
msgid "Command not found."
msgstr "ã³ãã³ããè¦ã¤ããã¾ããã"
#. TRANSLATORS: tell the user what we think the command is
-#: ../contrib/command-not-found/pk-command-not-found.c:665
+#: ../contrib/command-not-found/pk-command-not-found.c:711
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:674
+#: ../contrib/command-not-found/pk-command-not-found.c:721
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:686
-#: ../contrib/command-not-found/pk-command-not-found.c:695
+#: ../contrib/command-not-found/pk-command-not-found.c:735
+#: ../contrib/command-not-found/pk-command-not-found.c:744
msgid "Similar commands are:"
msgstr "ããä¼¼ãã³ãã³ãã¯:"
#. TRANSLATORS: ask the user to choose a file to run
-#: ../contrib/command-not-found/pk-command-not-found.c:702
+#: ../contrib/command-not-found/pk-command-not-found.c:751
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:721
+#: ../contrib/command-not-found/pk-command-not-found.c:767
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:726
+#: ../contrib/command-not-found/pk-command-not-found.c:772
#, c-format
msgid "Install package '%s' to provide command '%s'?"
msgstr ""
"ã³ãã³ã %2$s' ãæä¾ããããã«ããã±ã¼ã¸ '%1$s' ãã¤ã³ã¹ãã¼ã«ãã¾ãã?"
#. TRANSLATORS: Show the user a list of packages that provide this command
-#: ../contrib/command-not-found/pk-command-not-found.c:747
+#: ../contrib/command-not-found/pk-command-not-found.c:796
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:756
+#: ../contrib/command-not-found/pk-command-not-found.c:806
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:764
+#: ../contrib/command-not-found/pk-command-not-found.c:815
msgid "Please choose a package to install"
msgstr "ã¤ã³ã¹ãã¼ã«ããããã±ã¼ã¸ãé¸ãã§ãã ãã"
#. TRANSLATORS: we are starting to install the packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:195
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:197
msgid "Starting install"
msgstr "ã¤ã³ã¹ãã¼ã«ãéå§ãã¾ã"
#. TRANSLATORS: we couldn't find the package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:406
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:409
#, c-format
msgid "Failed to find the package %s, or already installed: %s"
msgstr ""
"ããã±ã¼ã¸ %s ã®æ¢ç´¢ã«å¤±æãã¾ãããã¾ãã¯æ¢ã«ã¤ã³ã¹ãã¼ã«ããã¦ãã¾ã: %s"
#. command line argument, simulate what would be done, but don't actually do it
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:507
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:515
msgid ""
"Don't actually install any packages, only simulate what would be installed"
msgstr ""
-"ã©ã®ããã±ã¼ã¸ãå®éã«ã¯ã¤ã³ã¹ãã¼ã«ãããä½ãã¤ã³ã¹ãã¼ã«ããããã·ãã¥ã¬ã¼ã"
-"ã ããã¾ã"
+"ã©ã®ããã±ã¼ã¸ãå®éã«ã¯ã¤ã³ã¹ãã¼ã«ãããä½ãã¤ã³ã¹ãã¼ã«ããããã·ãã¥ã¬ã¼"
+"ãã ããã¾ã"
#. command line argument, do we skip packages that depend on the ones specified
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:510
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:518
msgid "Do not install dependencies of the core packages"
msgstr "ã³ã¢ããã±ã¼ã¸ãä¾åããããã±ã¼ã¸ã¯ã¤ã³ã¹ãã¼ã«ããªã"
#. command line argument, do we operate quietly
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:513
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:521
msgid "Do not display information or progress"
msgstr "æ
å ±ãé²è¡ã表示ããªã"
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:528
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:539
msgid "PackageKit Debuginfo Installer"
msgstr "PackageKit Debuginfo ã¤ã³ã¹ãã¼ã©ã¼"
#. TRANSLATORS: the use needs to specify a list of package names on the command line
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:540
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:554
#, c-format
msgid "ERROR: Specify package names to install."
msgstr "ã¨ã©ã¼: ã¤ã³ã¹ãã¼ã«ããããã±ã¼ã¸åãæå®ãã¦ãã ããã"
#. TRANSLATORS: we are getting the list of repositories
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:572
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:590
#, c-format
msgid "Getting sources list"
msgstr "ã½ã¼ã¹ãªã¹ããç²å¾ä¸"
#. TRANSLATORS: operation was not successful
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:582
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:657
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:741
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:785
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:852
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:896
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:600
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:675
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:759
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:803
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:870
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:914
msgid "FAILED."
-msgstr ""
+msgstr "失æ"
#. TRANSLATORS: all completed 100%
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:597
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:637
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:672
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:756
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:800
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:867
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:911
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:615
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:655
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:690
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:774
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:818
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:885
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:929
#, c-format
msgid "OK."
-msgstr ""
+msgstr "OK"
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:600
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:618
#, c-format
msgid "Found %i enabled and %i disabled sources."
-msgstr ""
+msgstr "%i åã®æå¹ãªã½ã¼ã¹ã¨ %i åã®ç¡å¹ãªã½ã¼ã¹ãè¦ã¤ããã¾ããã"
#. TRANSLATORS: we're finding repositories that match out pattern
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:607
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:625
#, c-format
msgid "Finding debugging sources"
-msgstr ""
+msgstr "ãããã°ã½ã¼ã¹ãæ¢ãã¦ãã¾ã"
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:640
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:658
#, c-format
msgid "Found %i disabled debuginfo repos."
-msgstr ""
+msgstr "%i åã®ç¡å¹åããã debuginfo ãªãã¸ããªã¼ãè¦ã¤ããã¾ããã"
#. TRANSLATORS: we're now enabling all the debug sources we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:647
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:665
#, c-format
msgid "Enabling debugging sources"
-msgstr ""
+msgstr "ãããã°ã½ã¼ã¹ãæå¹åãã¦ãã¾ã"
#. TRANSLATORS: tell the user how many we enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:675
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:693
#, c-format
msgid "Enabled %i debugging sources."
-msgstr ""
+msgstr "%i åã®ãããã°ã½ã¼ã¹ãæå¹åãã¾ããã"
#. TRANSLATORS: we're now finding packages that match in all the repos
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:682
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:700
#, c-format
msgid "Finding debugging packages"
-msgstr ""
+msgstr "ãããã°ããã±ã¼ã¸ãæ¢ãã¦ãã¾ã"
#. TRANSLATORS: we couldn't find the package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:694
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:712
#, c-format
msgid "Failed to find the package %s: %s"
-msgstr ""
+msgstr "ããã±ã¼ã¸ %s ãæ¢ãã®ã«å¤±æãã¾ãã: %s"
#. TRANSLATORS: we couldn't find the debuginfo package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:717
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:735
#, c-format
msgid "Failed to find the debuginfo package %s: %s"
-msgstr ""
+msgstr "debuginfo ããã±ã¼ã¸ %s ãæ¢ãã®ã«å¤±æãã¾ãã: %s"
#. TRANSLATORS: no debuginfo packages could be found to be installed
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:745
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:763
#, c-format
msgid "Found no packages to install."
-msgstr ""
+msgstr "ã¤ã³ã¹ãã¼ã«ããããã±ã¼ã¸ãè¦ã¤ããã¾ããã"
#. TRANSLATORS: tell the user we found some packages, and then list them
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:759
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:777
#, c-format
msgid "Found %i packages:"
-msgstr ""
+msgstr "%i åã®ããã±ã¼ã¸ãè¦ã¤ããã¾ãã:"
#. TRANSLATORS: tell the user we are searching for deps
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:775
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:793
#, c-format
msgid "Finding packages that depend on these packages"
-msgstr ""
+msgstr "ãããã®ããã±ã¼ã¸ãä¾åããããã±ã¼ã¸ãæ¢ãã¦ãã¾ã"
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:788
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:806
#, c-format
msgid "Could not find dependant packages: %s"
-msgstr ""
+msgstr "ä¾åããã±ã¼ã¸ãè¦ã¤ãããã¾ãã: %s"
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:804
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:822
#, c-format
msgid "Found %i extra packages."
-msgstr ""
+msgstr "%i åã®è¿½å ã®ããã±ã¼ã¸ãè¦ã¤ããã¾ããã"
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:808
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:826
#, c-format
msgid "No extra packages required."
-msgstr ""
+msgstr "追å ã®ããã±ã¼ã¸ã¯ä¸è¦ã§ãã"
#. TRANSLATORS: tell the user we found some packages (and deps), and then list them
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:817
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:835
#, c-format
msgid "Found %i packages to install:"
-msgstr ""
+msgstr "ã¤ã³ã¹ãã¼ã«ãã¹ãããã±ã¼ã¸ã %i åè¦ã¤ããã¾ãã:"
#. TRANSLATORS: simulate mode is a testing mode where we quit before the action
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:830
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:848
#, c-format
msgid "Not installing packages in simulate mode"
-msgstr ""
+msgstr "ã·ãã¥ã¬ã¼ãã¢ã¼ãã§ã¯ããã±ã¼ã¸ãã¤ã³ã¹ãã¼ã«ãã¾ãã"
#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
#. TRANSLATORS: transaction state, installing packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:842
-#: ../lib/packagekit-glib2/pk-console-shared.c:270
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:860
+#: ../lib/packagekit-glib2/pk-console-shared.c:274
#, c-format
msgid "Installing packages"
-msgstr ""
+msgstr "ããã±ã¼ã¸ã®ã¤ã³ã¹ãã¼ã«ä¸"
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:855
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:873
#, c-format
msgid "Could not install packages: %s"
-msgstr ""
+msgstr "ããã±ã¼ã¸ãã¤ã³ã¹ãã¼ã«ã§ãã¾ãã: %s"
#. TRANSLATORS: we are now disabling all debuginfo repos we previously enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:887
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:905
#, c-format
msgid "Disabling sources previously enabled"
-msgstr ""
+msgstr "以åæå¹åãããã½ã¼ã¹ãç¡å¹åãã¾ã"
#. TRANSLATORS: no debuginfo packages could be found to be installed, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:899
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:917
#, c-format
msgid "Could not disable the debugging sources: %s"
-msgstr ""
+msgstr "ãããã°ã½ã¼ã¹ãç¡å¹åã§ãã¾ãã: %s"
#. TRANSLATORS: we disabled all the debugging repos that we enabled before
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:914
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:932
#, c-format
msgid "Disabled %i debugging sources."
-msgstr ""
+msgstr "%i åã®ãããã°ã½ã¼ã¹ãç¡å¹åãã¾ãã"
#. TRANSLATORS: couldn't open device to write
#: ../contrib/device-rebind/pk-device-rebind.c:61
msgid "Failed to open file"
-msgstr ""
+msgstr "ãã¡ã¤ã«ãéãã®ã«å¤±æãã¾ãã"
#. TRANSLATORS: could not write to the device
#: ../contrib/device-rebind/pk-device-rebind.c:70
msgid "Failed to write to the file"
-msgstr ""
+msgstr "ãã¡ã¤ã«ã¸æ¸ãè¾¼ãã®ã«å¤±æãã¾ãã"
#. TRANSLATORS: we failed to release the current driver
#: ../contrib/device-rebind/pk-device-rebind.c:110
#: ../contrib/device-rebind/pk-device-rebind.c:147
msgid "Failed to write to device"
-msgstr ""
+msgstr "è£
ç½®ã¸æ¸ãè¾¼ãã®ã«å¤±æãã¾ãã"
#. TRANSLATORS: the device could not be found in sysfs
#: ../contrib/device-rebind/pk-device-rebind.c:175
msgid "Device could not be found"
-msgstr ""
+msgstr "è£
ç½®ãè¦ã¤ãããã¾ãã"
#. TRANSLATORS: we failed to release the current driver
#: ../contrib/device-rebind/pk-device-rebind.c:202
msgid "Failed to unregister driver"
-msgstr ""
+msgstr "ãã©ã¤ãã¼ãç»é²è§£é¤ã§ãã¾ããã§ãã"
#. TRANSLATORS: we failed to bind the old driver
#: ../contrib/device-rebind/pk-device-rebind.c:211
msgid "Failed to register driver"
-msgstr ""
+msgstr "ãã©ã¤ãã¼ãç»é²ã§ãã¾ããã§ãã"
#. TRANSLATORS: user did not specify a device sysfs path that exists
#: ../contrib/device-rebind/pk-device-rebind.c:260
msgid "Device path not found"
-msgstr ""
+msgstr "è£
ç½®ã¸ã®ãã¹ãè¦ã¤ããã¾ãã"
#. TRANSLATORS: user did not specify a valid device sysfs path
#: ../contrib/device-rebind/pk-device-rebind.c:268
msgid "Incorrect device path specified"
-msgstr ""
+msgstr "æå®ãããè£
ç½®ã¸ã®ãã¹ãæ£ããããã¾ãã"
#. command line argument, simulate what would be done, but don't actually do it
#: ../contrib/device-rebind/pk-device-rebind.c:296
@@ -1042,599 +1055,604 @@ msgstr ""
msgid "PackageKit Service Pack"
msgstr ""
-#: ../lib/packagekit-glib2/pk-console-shared.c:55
+#: ../lib/packagekit-glib2/pk-console-shared.c:59
#, c-format
msgid "Please enter a number from 1 to %i: "
msgstr ""
#. TRANSLATORS: more than one package could be found that matched, to follow is a list of possible packages
-#: ../lib/packagekit-glib2/pk-console-shared.c:177
+#: ../lib/packagekit-glib2/pk-console-shared.c:181
msgid "More than one package matches:"
msgstr ""
#. TRANSLATORS: This finds out which package in the list to use
-#: ../lib/packagekit-glib2/pk-console-shared.c:186
+#: ../lib/packagekit-glib2/pk-console-shared.c:190
msgid "Please choose the correct package: "
msgstr ""
#. TRANSLATORS: This is when the transaction status is not known
-#: ../lib/packagekit-glib2/pk-console-shared.c:238
+#: ../lib/packagekit-glib2/pk-console-shared.c:242
msgid "Unknown state"
msgstr ""
#. TRANSLATORS: transaction state, the daemon is in the process of starting
-#: ../lib/packagekit-glib2/pk-console-shared.c:242
+#: ../lib/packagekit-glib2/pk-console-shared.c:246
msgid "Starting"
msgstr ""
#. TRANSLATORS: transaction state, the transaction is waiting for another to complete
-#: ../lib/packagekit-glib2/pk-console-shared.c:246
+#: ../lib/packagekit-glib2/pk-console-shared.c:250
msgid "Waiting in queue"
msgstr ""
#. TRANSLATORS: transaction state, just started
-#: ../lib/packagekit-glib2/pk-console-shared.c:250
+#: ../lib/packagekit-glib2/pk-console-shared.c:254
msgid "Running"
msgstr ""
#. TRANSLATORS: transaction state, is querying data
-#: ../lib/packagekit-glib2/pk-console-shared.c:254
+#: ../lib/packagekit-glib2/pk-console-shared.c:258
msgid "Querying"
msgstr ""
#. TRANSLATORS: transaction state, getting data from a server
-#: ../lib/packagekit-glib2/pk-console-shared.c:258
+#: ../lib/packagekit-glib2/pk-console-shared.c:262
msgid "Getting information"
msgstr ""
#. TRANSLATORS: transaction state, removing packages
-#: ../lib/packagekit-glib2/pk-console-shared.c:262
+#: ../lib/packagekit-glib2/pk-console-shared.c:266
msgid "Removing packages"
msgstr ""
#. TRANSLATORS: transaction state, downloading package files
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:266
-#: ../lib/packagekit-glib2/pk-console-shared.c:640
+#: ../lib/packagekit-glib2/pk-console-shared.c:270
+#: ../lib/packagekit-glib2/pk-console-shared.c:648
msgid "Downloading packages"
msgstr ""
#. TRANSLATORS: transaction state, refreshing internal lists
-#: ../lib/packagekit-glib2/pk-console-shared.c:274
+#: ../lib/packagekit-glib2/pk-console-shared.c:278
msgid "Refreshing software list"
msgstr ""
#. TRANSLATORS: transaction state, installing updates
-#: ../lib/packagekit-glib2/pk-console-shared.c:278
+#: ../lib/packagekit-glib2/pk-console-shared.c:282
msgid "Installing updates"
msgstr ""
#. TRANSLATORS: transaction state, removing old packages, and cleaning config files
-#: ../lib/packagekit-glib2/pk-console-shared.c:282
+#: ../lib/packagekit-glib2/pk-console-shared.c:286
msgid "Cleaning up packages"
msgstr ""
#. TRANSLATORS: transaction state, obsoleting old packages
-#: ../lib/packagekit-glib2/pk-console-shared.c:286
+#: ../lib/packagekit-glib2/pk-console-shared.c:290
msgid "Obsoleting packages"
msgstr ""
#. TRANSLATORS: transaction state, checking the transaction before we do it
-#: ../lib/packagekit-glib2/pk-console-shared.c:290
+#: ../lib/packagekit-glib2/pk-console-shared.c:294
msgid "Resolving dependencies"
msgstr ""
#. TRANSLATORS: transaction state, checking if we have all the security keys for the operation
-#: ../lib/packagekit-glib2/pk-console-shared.c:294
+#: ../lib/packagekit-glib2/pk-console-shared.c:298
msgid "Checking signatures"
msgstr ""
#. TRANSLATORS: transaction state, when we return to a previous system state
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:298
-#: ../lib/packagekit-glib2/pk-console-shared.c:600
+#: ../lib/packagekit-glib2/pk-console-shared.c:302
+#: ../lib/packagekit-glib2/pk-console-shared.c:608
msgid "Rolling back"
msgstr ""
#. TRANSLATORS: transaction state, when we're doing a test transaction
-#: ../lib/packagekit-glib2/pk-console-shared.c:302
+#: ../lib/packagekit-glib2/pk-console-shared.c:306
msgid "Testing changes"
msgstr ""
#. TRANSLATORS: transaction state, when we're writing to the system package database
-#: ../lib/packagekit-glib2/pk-console-shared.c:306
+#: ../lib/packagekit-glib2/pk-console-shared.c:310
msgid "Committing changes"
msgstr ""
#. TRANSLATORS: transaction state, requesting data from a server
-#: ../lib/packagekit-glib2/pk-console-shared.c:310
+#: ../lib/packagekit-glib2/pk-console-shared.c:314
msgid "Requesting data"
msgstr ""
#. TRANSLATORS: transaction state, all done!
-#: ../lib/packagekit-glib2/pk-console-shared.c:314
+#: ../lib/packagekit-glib2/pk-console-shared.c:318
msgid "Finished"
msgstr ""
#. TRANSLATORS: transaction state, in the process of cancelling
-#: ../lib/packagekit-glib2/pk-console-shared.c:318
+#: ../lib/packagekit-glib2/pk-console-shared.c:322
msgid "Cancelling"
msgstr ""
#. TRANSLATORS: transaction state, downloading metadata
-#: ../lib/packagekit-glib2/pk-console-shared.c:322
+#: ../lib/packagekit-glib2/pk-console-shared.c:326
msgid "Downloading repository information"
msgstr ""
#. TRANSLATORS: transaction state, downloading metadata
-#: ../lib/packagekit-glib2/pk-console-shared.c:326
+#: ../lib/packagekit-glib2/pk-console-shared.c:330
msgid "Downloading list of packages"
msgstr ""
#. TRANSLATORS: transaction state, downloading metadata
-#: ../lib/packagekit-glib2/pk-console-shared.c:330
+#: ../lib/packagekit-glib2/pk-console-shared.c:334
msgid "Downloading file lists"
msgstr ""
#. TRANSLATORS: transaction state, downloading metadata
-#: ../lib/packagekit-glib2/pk-console-shared.c:334
+#: ../lib/packagekit-glib2/pk-console-shared.c:338
msgid "Downloading lists of changes"
msgstr ""
#. TRANSLATORS: transaction state, downloading metadata
-#: ../lib/packagekit-glib2/pk-console-shared.c:338
+#: ../lib/packagekit-glib2/pk-console-shared.c:342
msgid "Downloading groups"
msgstr ""
#. TRANSLATORS: transaction state, downloading metadata
-#: ../lib/packagekit-glib2/pk-console-shared.c:342
+#: ../lib/packagekit-glib2/pk-console-shared.c:346
msgid "Downloading update information"
msgstr ""
#. TRANSLATORS: transaction state, repackaging delta files
-#: ../lib/packagekit-glib2/pk-console-shared.c:346
+#: ../lib/packagekit-glib2/pk-console-shared.c:350
msgid "Repackaging files"
msgstr ""
#. TRANSLATORS: transaction state, loading databases
-#: ../lib/packagekit-glib2/pk-console-shared.c:350
+#: ../lib/packagekit-glib2/pk-console-shared.c:354
msgid "Loading cache"
msgstr ""
#. TRANSLATORS: transaction state, scanning for running processes
-#: ../lib/packagekit-glib2/pk-console-shared.c:354
+#: ../lib/packagekit-glib2/pk-console-shared.c:358
msgid "Scanning applications"
msgstr ""
#. TRANSLATORS: transaction state, generating a list of packages installed on the system
-#: ../lib/packagekit-glib2/pk-console-shared.c:358
+#: ../lib/packagekit-glib2/pk-console-shared.c:362
msgid "Generating package lists"
msgstr ""
#. TRANSLATORS: transaction state, when we're waiting for the native tools to exit
-#: ../lib/packagekit-glib2/pk-console-shared.c:362
+#: ../lib/packagekit-glib2/pk-console-shared.c:366
msgid "Waiting for package manager lock"
msgstr ""
-#. TRANSLATORS: waiting for user to type in a password
-#: ../lib/packagekit-glib2/pk-console-shared.c:366
+#. TRANSLATORS: transaction state, waiting for user to type in a password
+#: ../lib/packagekit-glib2/pk-console-shared.c:370
msgid "Waiting for authentication"
msgstr ""
-#. TRANSLATORS: we are updating the list of processes
-#: ../lib/packagekit-glib2/pk-console-shared.c:370
+#. TRANSLATORS: transaction state, we are updating the list of processes
+#: ../lib/packagekit-glib2/pk-console-shared.c:374
msgid "Updating running applications"
msgstr ""
-#. TRANSLATORS: we are checking executable files currently in use
-#: ../lib/packagekit-glib2/pk-console-shared.c:374
+#. TRANSLATORS: transaction state, we are checking executable files currently in use
+#: ../lib/packagekit-glib2/pk-console-shared.c:378
msgid "Checking applications in use"
msgstr ""
-#. TRANSLATORS: we are checking for libraries currently in use
-#: ../lib/packagekit-glib2/pk-console-shared.c:378
+#. TRANSLATORS: transaction state, we are checking for libraries currently in use
+#: ../lib/packagekit-glib2/pk-console-shared.c:382
msgid "Checking libraries in use"
msgstr ""
+#. TRANSLATORS: transaction state, we are copying package files before or after the transaction
+#: ../lib/packagekit-glib2/pk-console-shared.c:386
+msgid "Copying files"
+msgstr "ãã¡ã¤ã«è¤åä¸"
+
#. TRANSLATORS: The type of update
-#: ../lib/packagekit-glib2/pk-console-shared.c:396
+#: ../lib/packagekit-glib2/pk-console-shared.c:404
msgid "Trivial"
-msgstr ""
+msgstr "äºç´°ãª"
#. TRANSLATORS: The type of update
-#: ../lib/packagekit-glib2/pk-console-shared.c:400
+#: ../lib/packagekit-glib2/pk-console-shared.c:408
msgid "Normal"
-msgstr ""
+msgstr "é常"
#. TRANSLATORS: The type of update
-#: ../lib/packagekit-glib2/pk-console-shared.c:404
+#: ../lib/packagekit-glib2/pk-console-shared.c:412
msgid "Important"
-msgstr ""
+msgstr "éè¦"
#. TRANSLATORS: The type of update
-#: ../lib/packagekit-glib2/pk-console-shared.c:408
+#: ../lib/packagekit-glib2/pk-console-shared.c:416
msgid "Security"
-msgstr ""
+msgstr "ã»ãã¥ãªãã£ã¼"
#. TRANSLATORS: The type of update
-#: ../lib/packagekit-glib2/pk-console-shared.c:412
+#: ../lib/packagekit-glib2/pk-console-shared.c:420
msgid "Bug fix "
-msgstr ""
+msgstr "ãã°ä¿®æ£"
#. TRANSLATORS: The type of update
-#: ../lib/packagekit-glib2/pk-console-shared.c:416
+#: ../lib/packagekit-glib2/pk-console-shared.c:424
msgid "Enhancement"
-msgstr ""
+msgstr "æ©è½è¿½å "
#. TRANSLATORS: The type of update
-#: ../lib/packagekit-glib2/pk-console-shared.c:420
+#: ../lib/packagekit-glib2/pk-console-shared.c:428
msgid "Blocked"
msgstr ""
#. TRANSLATORS: The state of a package
#. TRANSLATORS: The action of the package, in past tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:425
-#: ../lib/packagekit-glib2/pk-console-shared.c:498
+#: ../lib/packagekit-glib2/pk-console-shared.c:433
+#: ../lib/packagekit-glib2/pk-console-shared.c:506
msgid "Installed"
msgstr ""
#. TRANSLATORS: The state of a package, i.e. not installed
-#: ../lib/packagekit-glib2/pk-console-shared.c:430
+#: ../lib/packagekit-glib2/pk-console-shared.c:438
msgid "Available"
msgstr ""
#. TRANSLATORS: The action of the package, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:448
+#: ../lib/packagekit-glib2/pk-console-shared.c:456
msgid "Downloading"
msgstr ""
#. TRANSLATORS: The action of the package, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:452
+#: ../lib/packagekit-glib2/pk-console-shared.c:460
msgid "Updating"
msgstr ""
#. TRANSLATORS: The action of the package, in present tense
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:456
-#: ../lib/packagekit-glib2/pk-console-shared.c:576
+#: ../lib/packagekit-glib2/pk-console-shared.c:464
+#: ../lib/packagekit-glib2/pk-console-shared.c:584
msgid "Installing"
msgstr ""
#. TRANSLATORS: The action of the package, in present tense
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:460
-#: ../lib/packagekit-glib2/pk-console-shared.c:572
+#: ../lib/packagekit-glib2/pk-console-shared.c:468
+#: ../lib/packagekit-glib2/pk-console-shared.c:580
msgid "Removing"
msgstr ""
#. TRANSLATORS: The action of the package, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:464
+#: ../lib/packagekit-glib2/pk-console-shared.c:472
msgid "Cleaning up"
msgstr ""
#. TRANSLATORS: The action of the package, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:468
+#: ../lib/packagekit-glib2/pk-console-shared.c:476
msgid "Obsoleting"
msgstr ""
#. TRANSLATORS: The action of the package, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:472
+#: ../lib/packagekit-glib2/pk-console-shared.c:480
msgid "Reinstalling"
msgstr ""
#. TRANSLATORS: The action of the package, in past tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:490
+#: ../lib/packagekit-glib2/pk-console-shared.c:498
msgid "Downloaded"
msgstr ""
#. TRANSLATORS: The action of the package, in past tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:502
+#: ../lib/packagekit-glib2/pk-console-shared.c:510
msgid "Removed"
msgstr ""
#. TRANSLATORS: The action of the package, in past tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:506
+#: ../lib/packagekit-glib2/pk-console-shared.c:514
msgid "Cleaned up"
msgstr ""
#. TRANSLATORS: The action of the package, in past tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:510
+#: ../lib/packagekit-glib2/pk-console-shared.c:518
msgid "Obsoleted"
msgstr ""
#. TRANSLATORS: The action of the package, in past tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:514
+#: ../lib/packagekit-glib2/pk-console-shared.c:522
msgid "Reinstalled"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:532
+#: ../lib/packagekit-glib2/pk-console-shared.c:540
msgid "Unknown role type"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:536
+#: ../lib/packagekit-glib2/pk-console-shared.c:544
msgid "Getting dependencies"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:540
+#: ../lib/packagekit-glib2/pk-console-shared.c:548
msgid "Getting update details"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:544
+#: ../lib/packagekit-glib2/pk-console-shared.c:552
msgid "Getting details"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:548
+#: ../lib/packagekit-glib2/pk-console-shared.c:556
msgid "Getting requires"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:552
+#: ../lib/packagekit-glib2/pk-console-shared.c:560
msgid "Getting updates"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:556
+#: ../lib/packagekit-glib2/pk-console-shared.c:564
msgid "Searching by details"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:560
+#: ../lib/packagekit-glib2/pk-console-shared.c:568
msgid "Searching by file"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:564
+#: ../lib/packagekit-glib2/pk-console-shared.c:572
msgid "Searching groups"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:568
+#: ../lib/packagekit-glib2/pk-console-shared.c:576
msgid "Searching by name"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:580
+#: ../lib/packagekit-glib2/pk-console-shared.c:588
msgid "Installing files"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:584
+#: ../lib/packagekit-glib2/pk-console-shared.c:592
msgid "Refreshing cache"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:588
+#: ../lib/packagekit-glib2/pk-console-shared.c:596
msgid "Updating packages"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:592
+#: ../lib/packagekit-glib2/pk-console-shared.c:600
msgid "Updating system"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:596
+#: ../lib/packagekit-glib2/pk-console-shared.c:604
msgid "Canceling"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:604
+#: ../lib/packagekit-glib2/pk-console-shared.c:612
msgid "Getting repositories"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:608
+#: ../lib/packagekit-glib2/pk-console-shared.c:616
msgid "Enabling repository"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:612
+#: ../lib/packagekit-glib2/pk-console-shared.c:620
msgid "Setting data"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:616
+#: ../lib/packagekit-glib2/pk-console-shared.c:624
msgid "Resolving"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:620
+#: ../lib/packagekit-glib2/pk-console-shared.c:628
msgid "Getting file list"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:624
+#: ../lib/packagekit-glib2/pk-console-shared.c:632
msgid "Getting provides"
msgstr ""
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:628
+#: ../lib/packagekit-glib2/pk-console-shared.c:636
msgid "Installing signature"
msgstr "ç½²åãã¤ã³ã¹ãã¼ã«ä¸"
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:632
+#: ../lib/packagekit-glib2/pk-console-shared.c:640
msgid "Getting packages"
msgstr "ããã±ã¼ã¸ãç²å¾ä¸"
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:636
+#: ../lib/packagekit-glib2/pk-console-shared.c:644
msgid "Accepting EULA"
msgstr "EULA ãåå
¥ãä¸"
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:644
+#: ../lib/packagekit-glib2/pk-console-shared.c:652
msgid "Getting upgrades"
msgstr "æ´æ°ãç²å¾ä¸"
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:648
+#: ../lib/packagekit-glib2/pk-console-shared.c:656
msgid "Getting categories"
msgstr "åºåãç²å¾ä¸"
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:652
+#: ../lib/packagekit-glib2/pk-console-shared.c:660
msgid "Getting transactions"
msgstr "ãã©ã³ã¶ã¯ã·ã§ã³ãç²å¾ä¸"
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:656
-#: ../lib/packagekit-glib2/pk-console-shared.c:660
+#: ../lib/packagekit-glib2/pk-console-shared.c:664
+#: ../lib/packagekit-glib2/pk-console-shared.c:668
msgid "Simulating install"
msgstr "ã¤ã³ã¹ãã¼ã«ãã·ãã¥ã¬ã¼ãä¸"
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:664
+#: ../lib/packagekit-glib2/pk-console-shared.c:672
msgid "Simulating remove"
msgstr "åé¤ãã·ãã¥ã¬ã¼ãä¸"
#. TRANSLATORS: The role of the transaction, in present tense
-#: ../lib/packagekit-glib2/pk-console-shared.c:668
+#: ../lib/packagekit-glib2/pk-console-shared.c:676
msgid "Simulating update"
msgstr "æ´æ°ãã·ãã¥ã¬ã¼ãä¸"
#. TRANSLATORS: ask the user if they are comfortable installing insecure packages
-#: ../lib/packagekit-glib2/pk-task-text.c:64
+#: ../lib/packagekit-glib2/pk-task-text.c:66
msgid "Do you want to allow installing of unsigned software?"
msgstr ""
#. TRANSLATORS: tell the user we've not done anything
-#: ../lib/packagekit-glib2/pk-task-text.c:69
+#: ../lib/packagekit-glib2/pk-task-text.c:71
msgid "The unsigned software will not be installed."
msgstr ""
#. TRANSLATORS: the package repository is signed by a key that is not recognised
-#: ../lib/packagekit-glib2/pk-task-text.c:102
+#: ../lib/packagekit-glib2/pk-task-text.c:104
msgid "Software source signature required"
msgstr ""
#. TRANSLATORS: the package repository name
-#: ../lib/packagekit-glib2/pk-task-text.c:108
+#: ../lib/packagekit-glib2/pk-task-text.c:110
msgid "Software source name"
msgstr ""
#. TRANSLATORS: the key URL
-#: ../lib/packagekit-glib2/pk-task-text.c:111
+#: ../lib/packagekit-glib2/pk-task-text.c:113
msgid "Key URL"
msgstr ""
#. TRANSLATORS: the username of the key
-#: ../lib/packagekit-glib2/pk-task-text.c:114
+#: ../lib/packagekit-glib2/pk-task-text.c:116
msgid "Key user"
msgstr ""
#. TRANSLATORS: the key ID, usually a few hex digits
-#: ../lib/packagekit-glib2/pk-task-text.c:117
+#: ../lib/packagekit-glib2/pk-task-text.c:119
msgid "Key ID"
msgstr ""
#. TRANSLATORS: the key fingerprint, again, yet more hex
-#: ../lib/packagekit-glib2/pk-task-text.c:120
+#: ../lib/packagekit-glib2/pk-task-text.c:122
msgid "Key fingerprint"
msgstr ""
#. TRANSLATORS: the timestamp (a bit like a machine readable time)
-#: ../lib/packagekit-glib2/pk-task-text.c:123
+#: ../lib/packagekit-glib2/pk-task-text.c:125
msgid "Key Timestamp"
msgstr ""
#. TRANSLATORS: ask the user if they want to import
-#: ../lib/packagekit-glib2/pk-task-text.c:129
+#: ../lib/packagekit-glib2/pk-task-text.c:131
msgid "Do you accept this signature?"
msgstr ""
#. TRANSLATORS: tell the user we've not done anything
-#: ../lib/packagekit-glib2/pk-task-text.c:134
+#: ../lib/packagekit-glib2/pk-task-text.c:136
msgid "The signature was not accepted."
msgstr ""
#. TRANSLATORS: this is another name for a software licence that has to be read before installing
-#: ../lib/packagekit-glib2/pk-task-text.c:169
+#: ../lib/packagekit-glib2/pk-task-text.c:171
msgid "End user licence agreement required"
msgstr ""
#. TRANSLATORS: the EULA text itself (long and boring)
-#: ../lib/packagekit-glib2/pk-task-text.c:178
+#: ../lib/packagekit-glib2/pk-task-text.c:180
msgid "Agreement"
msgstr ""
#. TRANSLATORS: ask the user if they've read and accepted the EULA
-#: ../lib/packagekit-glib2/pk-task-text.c:184
+#: ../lib/packagekit-glib2/pk-task-text.c:186
msgid "Do you accept this agreement?"
msgstr ""
#. TRANSLATORS: tell the user we've not done anything
-#: ../lib/packagekit-glib2/pk-task-text.c:189
+#: ../lib/packagekit-glib2/pk-task-text.c:191
msgid "The agreement was not accepted."
msgstr ""
#. TRANSLATORS: the user needs to change media inserted into the computer
-#: ../lib/packagekit-glib2/pk-task-text.c:219
+#: ../lib/packagekit-glib2/pk-task-text.c:221
msgid "Media change required"
msgstr ""
#. TRANSLATORS: the type, e.g. DVD, CD, etc
-#: ../lib/packagekit-glib2/pk-task-text.c:222
+#: ../lib/packagekit-glib2/pk-task-text.c:224
msgid "Media type"
msgstr ""
#. TRANSLATORS: the media label, usually like 'disk-1of3'
-#: ../lib/packagekit-glib2/pk-task-text.c:225
+#: ../lib/packagekit-glib2/pk-task-text.c:227
msgid "Media label"
msgstr ""
#. TRANSLATORS: the media description, usually like 'Fedora 12 disk 5'
-#: ../lib/packagekit-glib2/pk-task-text.c:228
+#: ../lib/packagekit-glib2/pk-task-text.c:230
msgid "Text"
msgstr ""
#. TRANSLATORS: ask the user to insert the media
-#: ../lib/packagekit-glib2/pk-task-text.c:232
+#: ../lib/packagekit-glib2/pk-task-text.c:234
msgid "Please insert the correct media"
msgstr ""
#. TRANSLATORS: tell the user we've not done anything as they are lazy
-#: ../lib/packagekit-glib2/pk-task-text.c:237
+#: ../lib/packagekit-glib2/pk-task-text.c:239
msgid "The correct media was not inserted."
msgstr ""
#. TRANSLATORS: When processing, we might have to remove other dependencies
-#: ../lib/packagekit-glib2/pk-task-text.c:252
+#: ../lib/packagekit-glib2/pk-task-text.c:254
msgid "The following packages have to be removed:"
msgstr ""
#. TRANSLATORS: When processing, we might have to install other dependencies
-#: ../lib/packagekit-glib2/pk-task-text.c:257
+#: ../lib/packagekit-glib2/pk-task-text.c:259
msgid "The following packages have to be installed:"
msgstr ""
#. TRANSLATORS: When processing, we might have to update other dependencies
-#: ../lib/packagekit-glib2/pk-task-text.c:262
+#: ../lib/packagekit-glib2/pk-task-text.c:264
msgid "The following packages have to be updated:"
msgstr ""
#. TRANSLATORS: When processing, we might have to reinstall other dependencies
-#: ../lib/packagekit-glib2/pk-task-text.c:267
+#: ../lib/packagekit-glib2/pk-task-text.c:269
msgid "The following packages have to be reinstalled:"
msgstr ""
#. TRANSLATORS: When processing, we might have to downgrade other dependencies
-#: ../lib/packagekit-glib2/pk-task-text.c:272
+#: ../lib/packagekit-glib2/pk-task-text.c:274
msgid "The following packages have to be downgraded:"
msgstr ""
#. TRANSLATORS: ask the user if the proposed changes are okay
-#: ../lib/packagekit-glib2/pk-task-text.c:331
+#: ../lib/packagekit-glib2/pk-task-text.c:324
msgid "Proceed with changes?"
msgstr ""
#. TRANSLATORS: tell the user we didn't do anything
-#: ../lib/packagekit-glib2/pk-task-text.c:336
+#: ../lib/packagekit-glib2/pk-task-text.c:329
msgid "The transaction did not proceed."
msgstr ""
@@ -1915,3 +1933,6 @@ msgstr ""
#: ../src/pk-polkit-action-lookup.c:343
msgid "Only trusted"
msgstr ""
+
+#~ msgid "Transaction failed with no error"
+#~ msgstr "ã¨ã©ã¼ãªãã§ãã©ã³ã¶ã¯ã·ã§ã³ã失æ"
commit d6d30b433f5f0060f27f3180a2d408b3b604bca6
Author: Richard Hughes <richard at hughsie.com>
Date: Fri Oct 9 15:14:03 2009 +0100
trivial: remove unused variable as reported by clang
diff --git a/lib/packagekit-glib2/pk-client.c b/lib/packagekit-glib2/pk-client.c
index 22cb860..5900d56 100644
--- a/lib/packagekit-glib2/pk-client.c
+++ b/lib/packagekit-glib2/pk-client.c
@@ -592,8 +592,6 @@ static void
pk_client_state_finish (PkClientState *state, const GError *error)
{
gboolean ret;
- PkClientPrivate *priv;
- priv = state->client->priv;
/* force finished (if not already set) so clients can update the UI's */
ret = pk_progress_set_status (state->progress, PK_STATUS_ENUM_FINISHED);
@@ -3559,9 +3557,6 @@ pk_client_get_progress_finish (PkClient *client, GAsyncResult *res, GError **err
static void
pk_client_get_progress_state_finish (PkClientState *state, GError *error)
{
- PkClientPrivate *priv;
- priv = state->client->priv;
-
if (state->cancellable != NULL) {
g_cancellable_disconnect (state->cancellable, state->cancellable_id);
g_object_unref (state->cancellable);
More information about the PackageKit-commit
mailing list