[PackageKit-commit] packagekit: Branch 'master' - 21 commits
Richard Hughes
hughsient at kemper.freedesktop.org
Thu Sep 10 02:22:29 PDT 2009
backends/Makefile.am | 4
backends/slapt/Makefile.am | 7
backends/slapt/pk-backend-slapt.c | 1373 ++++++++++++++++++++++
client/pk-console.c | 137 +-
configure.ac | 28
contrib/command-not-found/pk-command-not-found.c | 4
contrib/debuginfo-install/pk-debuginfo-install.c | 8
docs/html/pk-matrix.html | 42
docs/migration-glib-to-glib2.txt | 40
lib/packagekit-glib/pk-common.c | 18
lib/packagekit-glib2/Makefile.am | 1
lib/packagekit-glib2/packagekit-glib2.pc.in | 13
lib/packagekit-glib2/pk-enum.c | 1
lib/packagekit-glib2/pk-enum.h | 1
lib/packagekit-glib2/pk-package-id.c | 13
lib/packagekit-glib2/pk-package-id.h | 28
lib/packagekit-glib2/pk-package.c | 13
lib/packagekit-glib2/pk-service-pack.c | 2
lib/packagekit-glib2/pk-task-text.c | 2
lib/packagekit-glib2/pk-task-wrapper.c | 3
lib/packagekit-glib2/pk-task.c | 3
po/as.po | 852 ++++++++-----
po/ml.po | 1166 ++++++++-----------
po/nl.po | 1406 +++++++++++------------
po/or.po | 607 +++++----
po/pa.po | 1288 +++++++++------------
po/pl.po | 1168 ++++++++-----------
src/pk-polkit-action-lookup.c | 18
src/pk-transaction-extra.c | 4
src/pk-transaction.c | 10
30 files changed, 4885 insertions(+), 3375 deletions(-)
New commits:
commit a28f97beb8f5ef6f49b730e14f4fa020e06cec03
Author: Richard Hughes <richard at hughsie.com>
Date: Thu Sep 10 10:18:11 2009 +0100
Add an initial version of the migration document
diff --git a/docs/migration-glib-to-glib2.txt b/docs/migration-glib-to-glib2.txt
new file mode 100644
index 0000000..2c22f77
--- /dev/null
+++ b/docs/migration-glib-to-glib2.txt
@@ -0,0 +1,40 @@
+ Migration from glib to glib2
+
+This document will explain how to migrate client code and backends from packagekit-glib to
+packagekit-glib2.
+
+The following is a conversion table that may be helpful:
+________________________________________________________________________________________________
+| packagekit-glib | packagekit-glib2 |
+|_______________________________________________|_______________________________________________|
+| | |
+| #include <packagekit-glib/packagekit.h> | #include <packagekit-glib2/packagekit.h> |
+| PkTaskListItem | <nothing> -- see client/pk-monitor.c |
+| PkConnection | <nothing> -- signal moved to PkControl |
+| pk_client_cancel | g_cancellable_cancel() |
+| pk_service_pack_set_filename | <nothing> -- now an asyncronous method |
+| pk_package_ids_from_array | pk_ptr_array_to_strv |
+| PkPackageId | Just a gchar * of the package_id |
+| pk_package_id_new_from_string | " " |
+| pk_package_id_get_name | pk_package_id_split() [PK_PACKAGE_ID_NAME] |
+| pk_package_id_get_version | pk_package_id_split() [PK_PACKAGE_ID_VERSION] |
+| pk_package_id_get_arch | pk_package_id_split() [PK_PACKAGE_ID_ARCH] |
+| pk_package_id_get_data | pk_package_id_split() [PK_PACKAGE_ID_DATA] |
+| PkPackageObj | PkItemPackage |
+| pk_package_obj_new_from_data() | pk_item_package_new() |
+| PkObjList | GPtrArray |
+| obj (as in structure references) | item |
+| | |
+|_______________________________________________|_______________________________________________|
+
+The biggest differences in the glib to glib2 migration is that all the PkClient and
+PkControl methods are available with asyncronous versions. This means that where
+possible GUI clients should try to defer processing results until after they have
+setup the windows. This will make the applications feel "faster" to startup.
+
+Also see the documentation for PkTask. It's designed to make a lot of the interactions
+a lot easier, especially when writing GUI and text mode clients that use PackageKit.
+
+Please bear in mind that although glib is still shipped and supported, it will be removed
+in PackageKit 0.6.x, and code will need to be converted by then.
+
commit 05473f4cc14751526c9a70e0c07c30b3668e52c9
Author: Richard Hughes <richard at hughsie.com>
Date: Thu Sep 10 10:15:27 2009 +0100
Use the new PK_PACKAGE_ID_x macro in more places
diff --git a/client/pk-console.c b/client/pk-console.c
index 2caba37..271a387 100644
--- a/client/pk-console.c
+++ b/client/pk-console.c
@@ -86,7 +86,7 @@ pk_strpad (const gchar *data, guint length)
* pk_console_package_cb:
**/
static void
-pk_console_package_cb (const PkItemPackage *obj, gpointer data)
+pk_console_package_cb (const PkItemPackage *item, gpointer data)
{
gchar *package = NULL;
gchar *package_pad = NULL;
@@ -94,19 +94,19 @@ pk_console_package_cb (const PkItemPackage *obj, gpointer data)
gchar **split = NULL;
/* ignore finished */
- if (obj->info_enum == PK_INFO_ENUM_FINISHED)
+ if (item->info_enum == PK_INFO_ENUM_FINISHED)
goto out;
/* split */
- split = pk_package_id_split (obj->package_id);
+ split = pk_package_id_split (item->package_id);
if (split == NULL)
goto out;
/* make these all the same length */
- info_pad = pk_strpad (pk_info_enum_to_text (obj->info_enum), 12);
+ info_pad = pk_strpad (pk_info_enum_to_text (item->info_enum), 12);
/* create printable */
- package = pk_package_id_to_printable (obj->package_id);
+ package = pk_package_id_to_printable (item->package_id);
/* don't pretty print */
if (!is_console) {
@@ -116,7 +116,7 @@ pk_console_package_cb (const PkItemPackage *obj, gpointer data)
/* pad the name-version */
package_pad = pk_strpad (package, 40);
- g_print ("%s\t%s\t%s\n", info_pad, package_pad, obj->summary);
+ g_print ("%s\t%s\t%s\n", info_pad, package_pad, item->summary);
out:
/* free all the data */
g_free (package);
@@ -129,7 +129,7 @@ out:
* pk_console_transaction_cb:
**/
static void
-pk_console_transaction_cb (const PkItemTransaction *obj, gpointer user_data)
+pk_console_transaction_cb (const PkItemTransaction *item, gpointer user_data)
{
struct passwd *pw;
const gchar *role_text;
@@ -138,29 +138,29 @@ pk_console_transaction_cb (const PkItemTransaction *obj, gpointer user_data)
guint i, lines_len;
gchar *package = NULL;
- role_text = pk_role_enum_to_text (obj->role);
+ role_text = pk_role_enum_to_text (item->role);
/* TRANSLATORS: this is an atomic transaction */
- g_print ("%s: %s\n", _("Transaction"), obj->tid);
+ g_print ("%s: %s\n", _("Transaction"), item->tid);
/* TRANSLATORS: this is the time the transaction was started in system timezone */
- g_print (" %s: %s\n", _("System time"), obj->timespec);
+ g_print (" %s: %s\n", _("System time"), item->timespec);
/* TRANSLATORS: this is if the transaction succeeded or not */
- g_print (" %s: %s\n", _("Succeeded"), obj->timespec ? _("True") : _("False"));
+ g_print (" %s: %s\n", _("Succeeded"), item->timespec ? _("True") : _("False"));
/* TRANSLATORS: this is the transactions role, e.g. "update-system" */
g_print (" %s: %s\n", _("Role"), role_text);
/* only print if not null */
- if (obj->duration > 0) {
+ if (item->duration > 0) {
/* TRANSLATORS: this is The duration of the transaction */
- g_print (" %s: %i %s\n", _("Duration"), obj->duration, _("(seconds)"));
+ g_print (" %s: %i %s\n", _("Duration"), item->duration, _("(seconds)"));
}
/* TRANSLATORS: this is The command line used to do the action */
- g_print (" %s: %s\n", _("Command line"), obj->cmdline);
+ g_print (" %s: %s\n", _("Command line"), item->cmdline);
/* TRANSLATORS: this is the user ID of the user that started the action */
- g_print (" %s: %i\n", _("User ID"), obj->uid);
+ g_print (" %s: %i\n", _("User ID"), item->uid);
/* query real name */
- pw = getpwuid (obj->uid);
+ pw = getpwuid (item->uid);
if (pw != NULL) {
if (pw->pw_name != NULL) {
/* TRANSLATORS: this is the username, e.g. hughsie */
@@ -173,7 +173,7 @@ pk_console_transaction_cb (const PkItemTransaction *obj, gpointer user_data)
}
/* TRANSLATORS: these are packages touched by the transaction */
- lines = g_strsplit (obj->data, "\n", -1);
+ lines = g_strsplit (item->data, "\n", -1);
lines_len = g_strv_length (lines);
if (lines_len > 0)
g_print (" %s\n", _("Affected packages:"));
@@ -195,38 +195,38 @@ pk_console_transaction_cb (const PkItemTransaction *obj, gpointer user_data)
* pk_console_distro_upgrade_cb:
**/
static void
-pk_console_distro_upgrade_cb (const PkItemDistroUpgrade *obj, gpointer user_data)
+pk_console_distro_upgrade_cb (const PkItemDistroUpgrade *item, gpointer user_data)
{
/* TRANSLATORS: this is the distro, e.g. Fedora 10 */
- g_print ("%s: %s\n", _("Distribution"), obj->name);
+ g_print ("%s: %s\n", _("Distribution"), item->name);
/* TRANSLATORS: this is type of update, stable or testing */
- g_print (" %s: %s\n", _("Type"), pk_update_state_enum_to_text (obj->state));
+ g_print (" %s: %s\n", _("Type"), pk_update_state_enum_to_text (item->state));
/* TRANSLATORS: this is any summary text describing the upgrade */
- g_print (" %s: %s\n", _("Summary"), obj->summary);
+ g_print (" %s: %s\n", _("Summary"), item->summary);
}
/**
* pk_console_category_cb:
**/
static void
-pk_console_category_cb (const PkItemCategory *obj, gpointer user_data)
+pk_console_category_cb (const PkItemCategory *item, gpointer user_data)
{
/* TRANSLATORS: this is the group category name */
- g_print ("%s: %s\n", _("Category"), obj->name);
+ g_print ("%s: %s\n", _("Category"), item->name);
/* TRANSLATORS: this is group identifier */
- g_print (" %s: %s\n", _("ID"), obj->cat_id);
- if (obj->parent_id != NULL) {
+ g_print (" %s: %s\n", _("ID"), item->cat_id);
+ if (item->parent_id != NULL) {
/* TRANSLATORS: this is the parent group */
- g_print (" %s: %s\n", _("Parent"), obj->parent_id);
+ g_print (" %s: %s\n", _("Parent"), item->parent_id);
}
/* TRANSLATORS: this is the name of the parent group */
- g_print (" %s: %s\n", _("Name"), obj->name);
- if (obj->summary != NULL) {
+ g_print (" %s: %s\n", _("Name"), item->name);
+ if (item->summary != NULL) {
/* TRANSLATORS: this is the summary of the group */
- g_print (" %s: %s\n", _("Summary"), obj->summary);
+ g_print (" %s: %s\n", _("Summary"), item->summary);
}
/* TRANSLATORS: this is preferred icon for the group */
- g_print (" %s: %s\n", _("Icon"), obj->icon);
+ g_print (" %s: %s\n", _("Icon"), item->icon);
}
/**
@@ -302,12 +302,12 @@ pk_console_update_detail_cb (const PkItemUpdateDetail *detail, gpointer data)
* pk_console_repo_detail_cb:
**/
static void
-pk_console_repo_detail_cb (const PkItemRepoDetail *obj, gpointer data)
+pk_console_repo_detail_cb (const PkItemRepoDetail *item, gpointer data)
{
gchar *enabled_pad;
gchar *repo_pad;
- if (obj->enabled) {
+ if (item->enabled) {
/* TRANSLATORS: if the repo is enabled */
enabled_pad = pk_strpad (_("Enabled"), 10);
} else {
@@ -315,8 +315,8 @@ pk_console_repo_detail_cb (const PkItemRepoDetail *obj, gpointer data)
enabled_pad = pk_strpad (_("Disabled"), 10);
}
- repo_pad = pk_strpad (obj->repo_id, 25);
- g_print (" %s %s %s\n", enabled_pad, repo_pad, obj->description);
+ repo_pad = pk_strpad (item->repo_id, 25);
+ g_print (" %s %s %s\n", enabled_pad, repo_pad, item->description);
g_free (enabled_pad);
g_free (repo_pad);
}
@@ -325,26 +325,26 @@ pk_console_repo_detail_cb (const PkItemRepoDetail *obj, gpointer data)
* pk_console_require_restart_cb:
**/
static void
-pk_console_require_restart_cb (const PkItemRequireRestart *obj, gpointer data)
+pk_console_require_restart_cb (const PkItemRequireRestart *item, gpointer data)
{
gchar *package = NULL;
/* create printable */
- package = pk_package_id_to_printable (obj->package_id);
+ package = pk_package_id_to_printable (item->package_id);
- if (obj->restart == PK_RESTART_ENUM_SYSTEM) {
+ if (item->restart == PK_RESTART_ENUM_SYSTEM) {
/* TRANSLATORS: a package requires the system to be restarted */
g_print ("%s %s\n", _("System restart required by:"), package);
- } else if (obj->restart == PK_RESTART_ENUM_SESSION) {
+ } else if (item->restart == PK_RESTART_ENUM_SESSION) {
/* TRANSLATORS: a package requires the session to be restarted */
g_print ("%s %s\n", _("Session restart required:"), package);
- } else if (obj->restart == PK_RESTART_ENUM_SECURITY_SYSTEM) {
+ } else if (item->restart == PK_RESTART_ENUM_SECURITY_SYSTEM) {
/* TRANSLATORS: a package requires the system to be restarted due to a security update*/
g_print ("%s %s\n", _("System restart (security) required by:"), package);
- } else if (obj->restart == PK_RESTART_ENUM_SECURITY_SESSION) {
+ } else if (item->restart == PK_RESTART_ENUM_SECURITY_SESSION) {
/* TRANSLATORS: a package requires the session to be restarted due to a security update */
g_print ("%s %s\n", _("Session restart (security) required:"), package);
- } else if (obj->restart == PK_RESTART_ENUM_APPLICATION) {
+ } else if (item->restart == PK_RESTART_ENUM_APPLICATION) {
/* TRANSLATORS: a package requires the application to be restarted */
g_print ("%s %s\n", _("Application restart required by:"), package);
}
@@ -355,21 +355,21 @@ pk_console_require_restart_cb (const PkItemRequireRestart *obj, gpointer data)
* pk_console_details_cb:
**/
static void
-pk_console_details_cb (const PkItemDetails *obj, gpointer data)
+pk_console_details_cb (const PkItemDetails *item, gpointer data)
{
gchar *package = NULL;
/* create printable */
- package = pk_package_id_to_printable (obj->package_id);
+ package = pk_package_id_to_printable (item->package_id);
/* TRANSLATORS: This a list of details about the package */
g_print ("%s\n", _("Package description"));
g_print (" package: %s\n", package);
- g_print (" license: %s\n", obj->license);
- g_print (" group: %s\n", pk_group_enum_to_text (obj->group_enum));
- g_print (" description: %s\n", obj->description);
- g_print (" size: %lu bytes\n", (long unsigned int) obj->size);
- g_print (" url: %s\n", obj->url);
+ g_print (" license: %s\n", item->license);
+ g_print (" group: %s\n", pk_group_enum_to_text (item->group_enum));
+ g_print (" description: %s\n", item->description);
+ g_print (" size: %lu bytes\n", (long unsigned int) item->size);
+ g_print (" url: %s\n", item->url);
g_free (package);
}
@@ -378,22 +378,22 @@ pk_console_details_cb (const PkItemDetails *obj, gpointer data)
* pk_console_message_cb:
**/
static void
-pk_console_message_cb (const PkItemMessage *obj, gpointer data)
+pk_console_message_cb (const PkItemMessage *item, gpointer data)
{
/* TRANSLATORS: This a message (like a little note that may be of interest) from the transaction */
- g_print ("%s %s: %s\n", _("Message:"), pk_message_enum_to_text (obj->message), obj->details);
+ g_print ("%s %s: %s\n", _("Message:"), pk_message_enum_to_text (item->message), item->details);
}
/**
* pk_console_files_cb:
**/
static void
-pk_console_files_cb (PkItemFiles *obj, gpointer data)
+pk_console_files_cb (PkItemFiles *item, gpointer data)
{
guint i;
/* empty */
- if (obj->files == NULL || obj->files[0] == NULL) {
+ if (item->files == NULL || item->files[0] == NULL) {
/* TRANSLATORS: This where the package has no files */
g_print ("%s\n", _("No files"));
return;
@@ -401,8 +401,8 @@ pk_console_files_cb (PkItemFiles *obj, gpointer data)
/* TRANSLATORS: This a list files contained in the package */
g_print ("%s\n", _("Package files"));
- for (i=0; obj->files[i] != NULL; i++) {
- g_print (" %s\n", obj->files[i]);
+ for (i=0; item->files[i] != NULL; i++) {
+ g_print (" %s\n", item->files[i]);
}
}
diff --git a/contrib/command-not-found/pk-command-not-found.c b/contrib/command-not-found/pk-command-not-found.c
index 9997d1e..1d14c3f 100644
--- a/contrib/command-not-found/pk-command-not-found.c
+++ b/contrib/command-not-found/pk-command-not-found.c
@@ -454,8 +454,8 @@ pk_cnf_find_available (GPtrArray *array, const gchar *prefix, const gchar *cmd)
/* add all package names */
for (i=0; package_ids[i] != NULL; i++) {
parts = pk_package_id_split (package_ids[i]);
- g_ptr_array_add (array, g_strdup (parts[0]));
- egg_debug ("name=%s", parts[0]);
+ g_ptr_array_add (array, g_strdup (parts[PK_PACKAGE_ID_NAME]));
+ egg_debug ("name=%s", parts[PK_PACKAGE_ID_NAME]);
g_strfreev (parts);
}
out:
diff --git a/contrib/debuginfo-install/pk-debuginfo-install.c b/contrib/debuginfo-install/pk-debuginfo-install.c
index c07ec65..7c8d353 100644
--- a/contrib/debuginfo-install/pk-debuginfo-install.c
+++ b/contrib/debuginfo-install/pk-debuginfo-install.c
@@ -318,7 +318,11 @@ pk_debuginfo_install_print_array (GPtrArray *array)
for (i=0; i<array->len; i++) {
package_id = g_ptr_array_index (array, i);
split = pk_package_id_split (package_id);
- g_print ("%i\t%s-%s(%s)\t%s\n", i+1, split[0], split[1], split[2], split[3]);
+ g_print ("%i\t%s-%s(%s)\t%s\n", i+1,
+ split[PK_PACKAGE_ID_NAME],
+ split[PK_PACKAGE_ID_VERSION],
+ split[PK_PACKAGE_ID_ARCH],
+ split[PK_PACKAGE_ID_DATA]);
g_strfreev (split);
}
}
@@ -391,7 +395,7 @@ pk_debuginfo_install_add_deps (PkDebuginfoInstallPrivate *priv, GPtrArray *packa
item = g_ptr_array_index (list, 0);
split = pk_package_id_split (item->package_id);
/* add -debuginfo */
- name_debuginfo = pk_debuginfo_install_name_to_debuginfo (split[0]);
+ name_debuginfo = pk_debuginfo_install_name_to_debuginfo (split[PK_PACKAGE_ID_NAME]);
g_strfreev (split);
/* resolve name */
diff --git a/lib/packagekit-glib2/pk-package-id.c b/lib/packagekit-glib2/pk-package-id.c
index 173324c..b140e15 100644
--- a/lib/packagekit-glib2/pk-package-id.c
+++ b/lib/packagekit-glib2/pk-package-id.c
@@ -182,7 +182,7 @@ pk_package_id_equal_fuzzy_arch (const gchar *package_id1, const gchar *package_i
gchar *
pk_package_id_to_printable (const gchar *package_id)
{
- gchar **split = NULL;
+ gchar **parts = NULL;
gchar *value = NULL;
/* invalid */
@@ -190,14 +190,17 @@ pk_package_id_to_printable (const gchar *package_id)
goto out;
/* split */
- split = pk_package_id_split (package_id);
- if (split == NULL)
+ parts = pk_package_id_split (package_id);
+ if (parts == NULL)
goto out;
/* form name-version.arch */
- value = g_strdup_printf ("%s-%s.%s", split[0], split[1], split[2]);
+ value = g_strdup_printf ("%s-%s.%s",
+ parts[PK_PACKAGE_ID_NAME],
+ parts[PK_PACKAGE_ID_VERSION],
+ parts[PK_PACKAGE_ID_ARCH]);
out:
- g_strfreev (split);
+ g_strfreev (parts);
return value;
}
diff --git a/lib/packagekit-glib2/pk-package.c b/lib/packagekit-glib2/pk-package.c
index 2aa5562..851aafd 100644
--- a/lib/packagekit-glib2/pk-package.c
+++ b/lib/packagekit-glib2/pk-package.c
@@ -176,12 +176,17 @@ pk_package_get_id (PkPackage *package)
void
pk_package_print (PkPackage *package)
{
- gchar **split;
+ gchar **parts;
g_return_if_fail (PK_IS_PACKAGE (package));
- split = pk_package_id_split (package->priv->id);
- g_print ("%s-%s.%s\t%s\t%s\n", split[0], split[1], split[2], split[3], package->priv->summary);
- g_strfreev (split);
+ parts = pk_package_id_split (package->priv->id);
+ g_print ("%s-%s.%s\t%s\t%s\n",
+ parts[PK_PACKAGE_ID_NAME],
+ parts[PK_PACKAGE_ID_VERSION],
+ parts[PK_PACKAGE_ID_ARCH],
+ parts[PK_PACKAGE_ID_DATA],
+ package->priv->summary);
+ g_strfreev (parts);
}
/**
diff --git a/lib/packagekit-glib2/pk-service-pack.c b/lib/packagekit-glib2/pk-service-pack.c
index d425bca..70d0700 100644
--- a/lib/packagekit-glib2/pk-service-pack.c
+++ b/lib/packagekit-glib2/pk-service-pack.c
@@ -1110,7 +1110,7 @@ pk_service_pack_test (gpointer user_data)
/************************************************************/
egg_test_title (test, "install package");
- package_ids = g_strsplit ("glib2;2.14.0;i386;fedora", ",", -1);
+ package_ids = pk_package_ids_from_id ("glib2;2.14.0;i386;fedora");
pk_service_pack_create_for_package_ids_async (pack, "dave.servicepack", package_ids, NULL, NULL,
(PkProgressCallback) pk_service_pack_test_progress_cb, test,
(GAsyncReadyCallback) pk_service_pack_test_create_cb, test);
diff --git a/lib/packagekit-glib2/pk-task-text.c b/lib/packagekit-glib2/pk-task-text.c
index 20130ee..3d6c72c 100644
--- a/lib/packagekit-glib2/pk-task-text.c
+++ b/lib/packagekit-glib2/pk-task-text.c
@@ -481,7 +481,7 @@ pk_task_text_test (gpointer user_data)
/************************************************************/
egg_test_title (test, "install package");
- package_ids = g_strsplit ("vips-doc;7.12.4-2.fc8;noarch;linva", ",", -1);
+ package_ids = pk_package_ids_from_id ("vips-doc;7.12.4-2.fc8;noarch;linva");
pk_task_install_packages_async (PK_TASK (task), package_ids, NULL,
(PkProgressCallback) pk_task_text_test_progress_cb, test,
(GAsyncReadyCallback) pk_task_text_test_install_packages_cb, test);
diff --git a/lib/packagekit-glib2/pk-task-wrapper.c b/lib/packagekit-glib2/pk-task-wrapper.c
index c2203f8..3d68d7c 100644
--- a/lib/packagekit-glib2/pk-task-wrapper.c
+++ b/lib/packagekit-glib2/pk-task-wrapper.c
@@ -261,6 +261,7 @@ pk_task_wrapper_new (void)
*** MAKE CHECK TESTS ***
***************************************************************************/
#ifdef EGG_TEST
+#include <packagekit-glib2/pk-package-ids.h>
#include "egg-test.h"
static void
@@ -337,7 +338,7 @@ pk_task_wrapper_test (gpointer user_data)
/************************************************************/
egg_test_title (test, "install package");
- package_ids = g_strsplit ("vips-doc;7.12.4-2.fc8;noarch;linva", ",", -1);
+ package_ids = pk_package_ids_from_id ("vips-doc;7.12.4-2.fc8;noarch;linva");
pk_task_install_packages_async (PK_TASK (task), package_ids, NULL,
(PkProgressCallback) pk_task_wrapper_test_progress_cb, test,
(GAsyncReadyCallback) pk_task_wrapper_test_install_packages_cb, test);
diff --git a/lib/packagekit-glib2/pk-task.c b/lib/packagekit-glib2/pk-task.c
index 2ca0aeb..743379f 100644
--- a/lib/packagekit-glib2/pk-task.c
+++ b/lib/packagekit-glib2/pk-task.c
@@ -1026,6 +1026,7 @@ pk_task_new (void)
*** MAKE CHECK TESTS ***
***************************************************************************/
#ifdef EGG_TEST
+#include <packagekit-glib2/pk-package-ids.h>
#include "egg-test.h"
static void
@@ -1084,7 +1085,7 @@ pk_task_test (gpointer user_data)
/************************************************************/
egg_test_title (test, "install package");
- package_ids = g_strsplit ("glib2;2.14.0;i386;fedora", ",", -1);
+ package_ids = pk_package_ids_from_id ("glib2;2.14.0;i386;fedora");
pk_task_install_packages_async (task, package_ids, NULL,
(PkProgressCallback) pk_task_test_progress_cb, test,
(GAsyncReadyCallback) pk_task_test_install_packages_cb, test);
diff --git a/src/pk-polkit-action-lookup.c b/src/pk-polkit-action-lookup.c
index c1d3776..e9a0f33 100644
--- a/src/pk-polkit-action-lookup.c
+++ b/src/pk-polkit-action-lookup.c
@@ -279,12 +279,18 @@ pk_action_lookup_package_ids_to_string (gchar **package_ids)
array = g_ptr_array_new ();
for (i=0; package_ids[i] != NULL; i++) {
split = pk_package_id_split (package_ids[i]);
- if (len == 1)
- names_str = g_strdup_printf ("%s-%s (%s)", split[0], split[1], split[3]);
- else if (len <= 3)
- names_str = g_strdup_printf ("%s-%s", split[0], split[1]);
- else
- names_str = g_strdup (split[0]);
+ if (len == 1) {
+ names_str = g_strdup_printf ("%s-%s (%s)",
+ split[PK_PACKAGE_ID_NAME],
+ split[PK_PACKAGE_ID_VERSION],
+ split[PK_PACKAGE_ID_DATA]);
+ } else if (len <= 3) {
+ names_str = g_strdup_printf ("%s-%s",
+ split[PK_PACKAGE_ID_NAME],
+ split[PK_PACKAGE_ID_VERSION]);
+ } else {
+ names_str = g_strdup (split[PK_PACKAGE_ID_NAME]);
+ }
g_ptr_array_add (array, names_str);
g_strfree (split);
}
diff --git a/src/pk-transaction-extra.c b/src/pk-transaction-extra.c
index 3675d15..72a9fa8 100644
--- a/src/pk-transaction-extra.c
+++ b/src/pk-transaction-extra.c
@@ -282,7 +282,7 @@ pk_transaction_extra_sqlite_add_filename (PkTransactionExtra *extra, const gchar
/* add */
parts = pk_package_id_split (obj->package_id);
- rc = pk_transaction_extra_sqlite_add_filename_details (extra, filename, parts[0], md5);
+ rc = pk_transaction_extra_sqlite_add_filename_details (extra, filename, parts[PK_PACKAGE_ID_NAME], md5);
out:
g_strfreev (parts);
g_free (md5);
@@ -741,7 +741,7 @@ pk_transaction_extra_update_files_check_desktop_cb (PkBackend *backend, const gc
egg_debug ("adding filename %s", files[i]);
md5 = pk_transaction_extra_get_filename_md5 (files[i]);
- pk_transaction_extra_sqlite_add_filename_details (extra, files[i], package[0], md5);
+ pk_transaction_extra_sqlite_add_filename_details (extra, files[i], package[PK_PACKAGE_ID_NAME], md5);
g_free (md5);
}
g_strfreev (files);
diff --git a/src/pk-transaction.c b/src/pk-transaction.c
index 56bd2da..e663b1d 100644
--- a/src/pk-transaction.c
+++ b/src/pk-transaction.c
@@ -646,7 +646,10 @@ pk_transaction_finished_cb (PkBackend *backend, PkExitEnum exit_enum, PkTransact
* we can use the local package database for GetFiles rather than
* downloading new remote metadata */
split = pk_package_id_split (obj->package_id);
- package_id = pk_package_id_build (split[0], split[1], split[2], "installed");
+ package_id = pk_package_id_build (split[PK_PACKAGE_ID_NAME],
+ split[PK_PACKAGE_ID_VERSION],
+ split[PK_PACKAGE_ID_ARCH],
+ "installed");
g_strfreev (split);
g_ptr_array_add (list, package_id);
}
@@ -680,7 +683,10 @@ pk_transaction_finished_cb (PkBackend *backend, PkExitEnum exit_enum, PkTransact
obj->info_enum == PK_INFO_ENUM_UPDATING) {
/* we convert the package_id data to be 'installed' */
split = pk_package_id_split (obj->package_id);
- package_id = pk_package_id_build (split[0], split[1], split[2], "installed");
+ package_id = pk_package_id_build (split[PK_PACKAGE_ID_NAME],
+ split[PK_PACKAGE_ID_VERSION],
+ split[PK_PACKAGE_ID_ARCH],
+ "installed");
g_strfreev (split);
g_ptr_array_add (list, package_id);
}
commit 7975d2cdb585e31f39d325240e264ceaddb95014
Author: Richard Hughes <richard at hughsie.com>
Date: Thu Sep 10 10:12:45 2009 +0100
trivial: fix up a typo for the Libs line
diff --git a/lib/packagekit-glib2/packagekit-glib2.pc.in b/lib/packagekit-glib2/packagekit-glib2.pc.in
index dd2cb66..8e6cf2f 100644
--- a/lib/packagekit-glib2/packagekit-glib2.pc.in
+++ b/lib/packagekit-glib2/packagekit-glib2.pc.in
@@ -8,5 +8,5 @@ Description: PackageKit is a system daemon for installing stuff.
Version: @VERSION@
Requires.private: dbus-1, gthread-2.0
Requires: glib-2.0, gobject-2.0, sqlite3
-Libs: -L${libdir} -lpackagekit-glib
+Libs: -L${libdir} -lpackagekit-glib2
Cflags: -I${includedir}/PackageKit
commit 80f5b7ca53ef3843707f48245e07a53e14649567
Merge: 8bb7625... 0678150...
Author: Richard Hughes <richard at hughsie.com>
Date: Thu Sep 10 10:11:16 2009 +0100
Merge branch 'master' of git+ssh://git.packagekit.org/srv/git/PackageKit
commit 067815062f37e4d122f94fe4f8a48c5946a5c767
Merge: 516916f... 8d05fe8...
Author: Valeriy Lyasotskiy <onestep at ukr.net>
Date: Thu Sep 10 12:12:23 2009 +0300
Merge branch 'master' of git+ssh://git.packagekit.org/srv/git/PackageKit
commit 516916fb084fc6e0aa0f2a31dbe0f74d933175fb
Author: Valeriy Lyasotskiy <onestep at ukr.net>
Date: Thu Sep 10 12:07:29 2009 +0300
glib2: add helper alias to get corresponding fields from the results of pk_package_id_split
diff --git a/lib/packagekit-glib2/pk-package-id.h b/lib/packagekit-glib2/pk-package-id.h
index b2bb8e0..b2286e0 100644
--- a/lib/packagekit-glib2/pk-package-id.h
+++ b/lib/packagekit-glib2/pk-package-id.h
@@ -30,6 +30,34 @@
G_BEGIN_DECLS
+/**
+ * PK_PACKAGE_ID_NAME:
+ *
+ * Alias to get a name field from the result of pk_package_id_split
+ */
+#define PK_PACKAGE_ID_NAME 0
+
+/**
+ * PK_PACKAGE_ID_VERSION:
+ *
+ * Alias to get a version field from the result of pk_package_id_split
+ */
+#define PK_PACKAGE_ID_VERSION 1
+
+/**
+ * PK_PACKAGE_ID_ARCH:
+ *
+ * Alias to get an arch field from the result of pk_package_id_split
+ */
+#define PK_PACKAGE_ID_ARCH 2
+
+/**
+ * PK_PACKAGE_ID_DATA:
+ *
+ * Alias to get a data field from the result of pk_package_id_split
+ */
+#define PK_PACKAGE_ID_DATA 3
+
void pk_package_id_test (gpointer user_data);
gchar *pk_package_id_build (const gchar *name,
const gchar *version,
commit 8bb7625fc2e7fa7d612b24091b86450b49d23dae
Merge: 31f880c... 8d05fe8...
Author: Richard Hughes <richard at hughsie.com>
Date: Thu Sep 10 07:52:17 2009 +0100
Merge branch 'master' of git+ssh://git.packagekit.org/srv/git/PackageKit
commit 8d05fe899cb13e203eef02b644c48723be662d76
Author: jassy <jassy at fedoraproject.org>
Date: Thu Sep 10 05:08:51 2009 +0000
Sending translation for Punjabi
diff --git a/po/pa.po b/po/pa.po
index ff0a6d0..657cfa4 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -1,170 +1,143 @@
-# translation of packagekit.master.po to Punjabi
+# translation of packagekit.master.pa.po to Punjabi
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Amanpreet Singh Alam <aalam at users.sf.net>, 2008, 2009.
# A S Alam <aalam at users.sf.net>, 2009.
+# Jaswinder Singh <jsingh at redhat.com>, 2009.
msgid ""
msgstr ""
-"Project-Id-Version: packagekit.master\n"
+"Project-Id-Version: packagekit.master.pa\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-07 19:33+0000\n"
-"PO-Revision-Date: 2009-09-08 07:34+0530\n"
-"Last-Translator: A S Alam <aalam at users.sf.net>\n"
-"Language-Team: Punjabi/Panjabi <punjabi-users at lists.sf.net>\n"
+"POT-Creation-Date: 2009-09-10 04:32+0000\n"
+"PO-Revision-Date: 2009-09-10 10:38+0530\n"
+"Last-Translator: Jaswinder Singh <jsingh at redhat.com>\n"
+"Language-Team: Punjabi <Punjabi-users at lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.0\n"
+"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. TRANSLATORS: this is an atomic transaction
-#: ../client/pk-console.c:237 ../client/pk-console-test.c:146
+#: ../client/pk-console.c:143
msgid "Transaction"
msgstr "à¨à¨°à¨¾à¨à¨¸à©à¨à¨¸à¨¼à¨¨"
#. TRANSLATORS: this is the time the transaction was started in system timezone
-#: ../client/pk-console.c:239 ../client/pk-console-test.c:148
+#: ../client/pk-console.c:145
msgid "System time"
msgstr "ਸਿਸà¨à¨® ਸਮਾà¨"
#. TRANSLATORS: this is if the transaction succeeded or not
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:150
+#: ../client/pk-console.c:147
msgid "Succeeded"
msgstr "ਸਫ਼ਲ"
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:150
+#: ../client/pk-console.c:147
msgid "True"
msgstr "ਸਹà©à¨"
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:150
+#: ../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:243 ../client/pk-console-test.c:152
-#: ../src/pk-polkit-action-lookup.c:327
+#: ../client/pk-console.c:149 ../src/pk-polkit-action-lookup.c:327
msgid "Role"
msgstr "ਰà©à¨²"
#. TRANSLATORS: this is The duration of the transaction
-#: ../client/pk-console.c:248 ../client/pk-console-test.c:157
+#: ../client/pk-console.c:154
msgid "Duration"
msgstr "à¨
ੰਤਰਾਲ"
-#: ../client/pk-console.c:248 ../client/pk-console-test.c:157
+#: ../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:252 ../client/pk-console-test.c:161
-#: ../src/pk-polkit-action-lookup.c:341
+#: ../client/pk-console.c:158 ../src/pk-polkit-action-lookup.c:341
msgid "Command line"
msgstr "à¨à¨®à¨¾à¨à¨¡ ਲਾà¨à¨¨"
#. TRANSLATORS: this is the user ID of the user that started the action
-#: ../client/pk-console.c:254 ../client/pk-console-test.c:163
+#: ../client/pk-console.c:160
msgid "User ID"
msgstr "ਯà©à¨à¨¼à¨° ID"
#. TRANSLATORS: this is the username, e.g. hughsie
-#: ../client/pk-console.c:261 ../client/pk-console-test.c:170
+#: ../client/pk-console.c:167
msgid "Username"
msgstr "ਯà©à¨à¨¼à¨° ਨਾà¨"
#. TRANSLATORS: this is the users real name, e.g. "Richard Hughes"
-#: ../client/pk-console.c:265 ../client/pk-console-test.c:174
+#: ../client/pk-console.c:171
msgid "Real name"
msgstr "à¨
ਸਲ੠ਨਾà¨"
-#: ../client/pk-console.c:273 ../client/pk-console-test.c:182
+#: ../client/pk-console.c:179
msgid "Affected packages:"
msgstr "ਪà©à¨°à¨à¨¾à¨µà¨¿à¨¤ ਪà©à¨à©à¨:"
-#: ../client/pk-console.c:275 ../client/pk-console-test.c:184
+#: ../client/pk-console.c:181
msgid "Affected packages: None"
msgstr "ਪà©à¨°à¨à¨¾à¨µà¨¿à¨¤ ਪà©à¨à©à¨: à¨à©à¨ ਨਹà©à¨"
-#. TRANSLATORS: When processing, we might have to remove other dependencies
-#: ../client/pk-console.c:336 ../client/pk-task-text.c:220
-msgid "The following packages have to be removed:"
-msgstr "à¨
ੱà¨à© ਦਿੱਤ੠ਪà©à¨à©à¨à¨¾à¨ ਨà©à©° ਹà¨à¨¾à¨à¨ à¨à¨¾à¨µà©à¨à¨¾:"
-
-#. TRANSLATORS: When processing, we might have to install other dependencies
-#: ../client/pk-console.c:339 ../client/pk-task-text.c:225
-msgid "The following packages have to be installed:"
-msgstr "à¨
ੱà¨à© ਦਿੱਤ੠ਪà©à¨à©à¨à¨¾à¨ ਨà©à©° à¨à©°à¨¸à¨à¨¾à¨² à¨à©à¨¤à¨¾ à¨à¨¾à¨µà©à¨à¨¾:"
-
-#. TRANSLATORS: When processing, we might have to update other dependencies
-#: ../client/pk-console.c:342 ../client/pk-task-text.c:230
-msgid "The following packages have to be updated:"
-msgstr "à¨
ੱà¨à© ਦਿੱਤ੠ਪà©à¨à©à¨à¨¾à¨ ਨà©à©° à¨
ੱਪਡà©à¨ à¨à©à¨¤à¨¾ à¨à¨¾à¨µà©à¨à¨¾:"
-
-#. TRANSLATORS: When processing, we might have to reinstall other dependencies
-#: ../client/pk-console.c:345 ../client/pk-task-text.c:235
-msgid "The following packages have to be reinstalled:"
-msgstr "à¨
ੱà¨à© ਦਿੱਤ੠ਪà©à¨à©à¨à¨¾à¨ ਨà©à©° ਮà©à©-à¨à©°à¨¸à¨à¨¾à¨² à¨à¨¾à¨µà©à¨à¨¾:"
-
-#. TRANSLATORS: When processing, we might have to downgrade other dependencies
-#: ../client/pk-console.c:348 ../client/pk-task-text.c:240
-msgid "The following packages have to be downgraded:"
-msgstr "à¨
ੱà¨à© ਦਿੱਤ੠ਪà©à¨à©à¨à¨¾à¨ ਨà©à©° ਡਾà¨à¨¨à¨à¨°à©à¨¡ à¨à©à¨¤à¨¾ à¨à¨¾à¨µà©à¨à¨¾:"
-
#. TRANSLATORS: this is the distro, e.g. Fedora 10
-#: ../client/pk-console.c:362 ../client/pk-console-test.c:204
+#: ../client/pk-console.c:201
msgid "Distribution"
msgstr "ਡਿਸà¨à¨°à©à¨¬à¨¿à¨à¨¸à¨¼à¨¨"
#. TRANSLATORS: this is type of update, stable or testing
-#: ../client/pk-console.c:364 ../client/pk-console-test.c:206
+#: ../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
-#. TRANSLATORS: this is any summary text describing the upgrade
-#. TRANSLATORS: this is the summary of the group
-#: ../client/pk-console.c:366 ../client/pk-console.c:389
-#: ../client/pk-console-test.c:208 ../client/pk-console-test.c:229
+#: ../client/pk-console.c:205 ../client/pk-console.c:226
msgid "Summary"
msgstr "ਸੰà¨à©à¨ª"
#. TRANSLATORS: this is the group category name
-#: ../client/pk-console.c:378 ../client/pk-console-test.c:218
+#: ../client/pk-console.c:215
msgid "Category"
msgstr "à¨à©à¨à¨¾à¨à¨°à©"
#. TRANSLATORS: this is group identifier
-#: ../client/pk-console.c:380 ../client/pk-console-test.c:220
+#: ../client/pk-console.c:217
msgid "ID"
msgstr "ID"
#. TRANSLATORS: this is the parent group
-#: ../client/pk-console.c:383 ../client/pk-console-test.c:223
+#: ../client/pk-console.c:220
msgid "Parent"
msgstr "ਮà©à¨¢à©"
#. TRANSLATORS: this is the name of the parent group
-#: ../client/pk-console.c:386 ../client/pk-console-test.c:226
+#: ../client/pk-console.c:223
msgid "Name"
msgstr "ਨਾà¨"
#. TRANSLATORS: this is preferred icon for the group
-#: ../client/pk-console.c:392 ../client/pk-console-test.c:232
+#: ../client/pk-console.c:229
msgid "Icon"
msgstr "à¨à¨à¨à¨¾à¨¨"
#. TRANSLATORS: this is a header for the package that can be updated
-#: ../client/pk-console.c:407 ../client/pk-console-test.c:246
+#: ../client/pk-console.c:243
msgid "Details about the update:"
msgstr "à¨
ੱਪਡà©à¨ ਬਾਰ੠ਵà©à¨°à¨µà¨¾:"
#. TRANSLATORS: details about the update, package name and version
+#. 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:409 ../client/pk-console-test.c:252
-#: ../client/pk-task-text.c:101 ../client/pk-task-text.c:153
+#: ../client/pk-console.c:249 ../lib/packagekit-glib2/pk-task-text.c:105
+#: ../lib/packagekit-glib2/pk-task-text.c:172
#: ../src/pk-polkit-action-lookup.c:352
msgid "Package"
msgid_plural "Packages"
@@ -172,697 +145,392 @@ msgstr[0] "ਪà©à¨à©à¨"
msgstr[1] "ਪà©à¨à©à¨"
#. TRANSLATORS: details about the update, any packages that this update updates
-#: ../client/pk-console.c:412 ../client/pk-console-test.c:255
+#: ../client/pk-console.c:252
msgid "Updates"
msgstr "à¨
ੱਪਡà©à¨"
#. TRANSLATORS: details about the update, any packages that this update obsoletes
-#: ../client/pk-console.c:416 ../client/pk-console-test.c:259
+#: ../client/pk-console.c:256
msgid "Obsoletes"
msgstr "ਬਰਤਰਫ਼"
#. TRANSLATORS: details about the update, the vendor URLs
-#: ../client/pk-console.c:420 ../client/pk-console-test.c:263
-#: ../client/pk-task-text.c:154
+#. TRANSLATORS: the vendor (e.g. vmware) that is providing the EULA
+#: ../client/pk-console.c:260 ../lib/packagekit-glib2/pk-task-text.c:175
msgid "Vendor"
msgstr "ਵà©à¨à¨¡à¨°"
#. TRANSLATORS: details about the update, the bugzilla URLs
-#: ../client/pk-console.c:424 ../client/pk-console-test.c:267
+#: ../client/pk-console.c:264
msgid "Bugzilla"
msgstr "ਬੱà¨à¨à¨¼à©à¨²à¨¾"
#. TRANSLATORS: details about the update, the CVE URLs
-#: ../client/pk-console.c:428 ../client/pk-console-test.c:271
+#: ../client/pk-console.c:268
msgid "CVE"
msgstr "CVE"
#. TRANSLATORS: details about the update, if the package requires a restart
-#: ../client/pk-console.c:432 ../client/pk-console-test.c:275
+#: ../client/pk-console.c:272
msgid "Restart"
msgstr "ਮà©à©-à¨à¨¾à¨²à©"
#. TRANSLATORS: details about the update, any description of the update
-#: ../client/pk-console.c:436 ../client/pk-console-test.c:279
+#: ../client/pk-console.c:276
msgid "Update text"
msgstr "à¨
ੱਪਡà©à¨ à¨à©à¨à¨¸à¨"
#. TRANSLATORS: details about the update, the changelog for the package
-#: ../client/pk-console.c:440 ../client/pk-console-test.c:283
+#: ../client/pk-console.c:280
msgid "Changes"
msgstr "ਬਦਲਾà¨
"
#. TRANSLATORS: details about the update, the ongoing state of the update
-#: ../client/pk-console.c:444 ../client/pk-console-test.c:287
+#: ../client/pk-console.c:284
msgid "State"
msgstr "ਹਾਲਤ"
#. TRANSLATORS: details about the update, date the update was issued
-#: ../client/pk-console.c:449 ../client/pk-console-test.c:292
+#: ../client/pk-console.c:289
msgid "Issued"
msgstr "à¨à¨¾à¨°à© à¨à©à¨¤à¨¾"
#. TRANSLATORS: details about the update, date the update was updated
-#: ../client/pk-console.c:454 ../client/pk-console-test.c:297
+#: ../client/pk-console.c:294
msgid "Updated"
msgstr "à¨
ੱਪਡà©à¨ à¨à©à¨¤à©"
#. TRANSLATORS: if the repo is enabled
-#: ../client/pk-console.c:474 ../client/pk-console-test.c:315
+#: ../client/pk-console.c:312
msgid "Enabled"
msgstr "ਯà©à¨"
#. TRANSLATORS: if the repo is disabled
-#: ../client/pk-console.c:477 ../client/pk-console-test.c:318
+#: ../client/pk-console.c:315
msgid "Disabled"
msgstr "à¨
ਯà©à¨"
-#: ../client/pk-console.c:554 ../client/pk-console.c:556
-msgid "Percentage"
-msgstr "ਫà©à¨¸à¨¦à©"
-
-#: ../client/pk-console.c:556
-msgid "Unknown"
-msgstr "à¨
ਣà¨à¨¾à¨£"
-
#. TRANSLATORS: a package requires the system to be restarted
-#: ../client/pk-console.c:598 ../client/pk-console-test.c:340
+#: ../client/pk-console.c:337
msgid "System restart required by:"
msgstr "ਸਿਸà¨à¨® ਮà©à©-à¨à¨¾à¨²à© à¨à¨°à¨¨ ਦ੠ਲà©à© ਹà©:"
#. TRANSLATORS: a package requires the session to be restarted
-#: ../client/pk-console.c:601 ../client/pk-console-test.c:343
+#: ../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:604 ../client/pk-console-test.c:346
+#: ../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:607 ../client/pk-console-test.c:349
+#: ../client/pk-console.c:346
msgid "Session restart (security) required:"
msgstr "ਸਿਸà¨à¨® ਮà©à©-à¨à¨¾à¨²à© (ਸà©à¨°à©±à¨à¨¿à¨) à¨à¨°à¨¨ ਦ੠ਲà©à©:"
#. TRANSLATORS: a package requires the application to be restarted
-#: ../client/pk-console.c:610 ../client/pk-console-test.c:352
+#: ../client/pk-console.c:349
msgid "Application restart required by:"
msgstr "à¨à¨ªà¨²à©à¨à©à¨¸à¨¼à¨¨ ਮà©à©-à¨à¨¾à¨²à© à¨à¨°à¨¨ ਦ੠ਲà©à© ਹà©:"
+#. TRANSLATORS: This a list of details about the package
+#: ../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:384
+msgid "Message:"
+msgstr "ਸà©à¨¨à©à¨¹à¨¾:"
+
+#. TRANSLATORS: This where the package has no files
+#: ../client/pk-console.c:398
+msgid "No files"
+msgstr "à¨à©à¨ ਫਾà¨à¨² ਨਹà©à¨"
+
+#. TRANSLATORS: This a list files contained in the package
+#: ../client/pk-console.c:403
+msgid "Package files"
+msgstr "ਪà©à¨à©à¨ ਫਾà¨à¨²à¨¾à¨"
+
+#. TRANSLATORS: we failed to get any results, which is pretty fatal in my book
+#: ../client/pk-console.c:462
+msgid "Fatal error"
+msgstr "à¨à¨¾à¨¤à¨ à¨à¨²à¨¤à©"
+
+#. TRANSLATORS: we failed, but there was no error set
+#: ../client/pk-console.c:475
+msgid "Transaction failed with no error"
+msgstr "ਬਿਨਾਠà¨à¨¿à¨¸à© à¨à¨²à¨¤à© à¨à¨°à¨¾à¨à¨¸à©à¨à¨¸à¨¼à¨¨ ਫà©à¨² ਹà©à¨"
+
+#. TRANSLATORS: the transaction failed in a way we could not expect
+#: ../client/pk-console.c:480
+msgid "The transaction failed"
+msgstr "à¨à¨°à¨¾à¨à¨¸à©à¨à¨¸à¨¼à¨¨ ਫà©à¨² ਹà©à¨"
+
#. TRANSLATORS: a package needs to restart their system
-#: ../client/pk-console.c:665 ../client/pk-console-test.c:541
+#: ../client/pk-console.c:554
msgid "Please restart the computer to complete the update."
msgstr "à¨
ੱਪਡà©à¨ ਨà©à©° ਪà©à¨°à¨¾ à¨à¨°à¨¨ ਵਾਸਤ੠à¨à©°à¨ªà¨¿à¨à¨à¨° ਮà©à©-à¨à¨¾à¨²à© à¨à¨°à© à¨à©à¥¤"
#. TRANSLATORS: a package needs to restart the session
-#: ../client/pk-console.c:668 ../client/pk-console-test.c:544
+#: ../client/pk-console.c:557
msgid "Please logout and login to complete the update."
msgstr "à¨
ੱਪਡà©à¨ ਨà©à©° ਪà©à¨°à¨¾ à¨à¨°à¨¨ ਵਾਸਤ੠ਲਾà¨à¨à¨à¨ à¨à¨°à¨à© ਲਾà¨à¨à¨¨ à¨à¨°à© à¨à©à¥¤"
-#. TRANSLATORS: a package needs to restart the application
-#: ../client/pk-console.c:671
-msgid "Please restart the application as it is being used."
-msgstr "à¨à¨ªà¨²à©à¨à©à¨¸à¨¼à¨¨ ਨà©à©° ਮà©à©-à¨à¨¾à¨²à© à¨à¨°à¨¨ ਦ੠ਲà©à© ਹà©, à¨à¨¿à¨à¨à¨à¨¿ à¨à¨¹ ਵਰਤ੠à¨à¨¾ ਰਹ੠ਹà©à¥¤"
-
#. TRANSLATORS: a package needs to restart their system (due to security)
-#: ../client/pk-console.c:674 ../client/pk-console-test.c:547
+#: ../client/pk-console.c:560
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:677 ../client/pk-console-test.c:550
+#: ../client/pk-console.c:563
msgid ""
"Please logout and login to complete the update as important security updates "
"have been installed."
-msgstr ""
-"à¨
ੱਪਡà©à¨ ਨà©à©° ਪà©à¨°à¨¾ à¨à¨°à¨¨ ਵਾਸਤ੠ਲਾà¨à¨à¨à¨ à¨à¨°à¨à© ਲਾà¨à¨à¨¨ à¨à¨°à© à¨à© à¨à¨¿à¨à¨à¨à¨¿ ਸà©à¨°à©±à¨à¨¿à¨ à¨
ੱਪਡà©à¨ à¨à©°à¨¸à¨à¨¾à¨² à¨à©à¨¤à© ਹਨ।"
-
-#. TRANSLATORS: The package is already installed on the system
-#: ../client/pk-console.c:809
-#, c-format
-msgid "The package %s is already installed"
-msgstr "ਪà©à¨à©à¨ %s ਪਹਿਲਾਠਹ੠à¨à©°à¨¸à¨à¨¾à¨² ਹà©"
-
-#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:817
-#, c-format
-msgid "The package %s could not be installed: %s"
-msgstr "ਪà©à¨à©à¨ %s à¨à©°à¨¸à¨à¨¾à¨² ਨਹà©à¨ à¨à©à¨¤à¨¾ à¨à¨¾ ਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: There was a programming error that shouldn't happen. The detailed error follows
-#: ../client/pk-console.c:843 ../client/pk-console.c:891
-#: ../client/pk-console.c:915 ../client/pk-console.c:963
-#: ../client/pk-console.c:1059 ../client/pk-console.c:1172
-#: ../client/pk-console.c:1233 ../client/pk-tools-common.c:132
-#: ../client/pk-tools-common.c:151 ../client/pk-tools-common.c:159
-#, c-format
-msgid "Internal error: %s"
-msgstr "à¨
ੰਦਰà©à¨¨à© à¨à¨²à¨¤à©: %s"
+msgstr "à¨
ੱਪਡà©à¨ ਨà©à©° ਪà©à¨°à¨¾ à¨à¨°à¨¨ ਵਾਸਤ੠ਲਾà¨à¨à¨à¨ à¨à¨°à¨à© ਲਾà¨à¨à¨¨ à¨à¨°à© à¨à© à¨à¨¿à¨à¨à¨à¨¿ ਸà©à¨°à©±à¨à¨¿à¨ à¨
ੱਪਡà©à¨ à¨à©°à¨¸à¨à¨¾à¨² à¨à©à¨¤à© ਹਨ।"
-#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#. ask the user
-#: ../client/pk-console.c:875 ../client/pk-console.c:947
-#: ../client/pk-console.c:1265 ../client/pk-task-text.c:299
-msgid "Proceed with changes?"
-msgstr "ਤਬਦà©à¨²à©à¨à¨ ਨਾਲ à¨à¨¾à¨°à© à¨à¨°à©?"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:880 ../client/pk-console.c:952
-msgid "The package install was canceled!"
-msgstr "ਪà©à¨à©à¨ à¨à©°à¨¸à¨à¨¾à¨² ਨà©à©° ਰੱਦ à¨à©à¨¤à¨¾ à¨à¨¿à¨!"
-
-#. TRANSLATORS: There was an error installing the packages. The detailed error follows
-#: ../client/pk-console.c:899 ../client/pk-console.c:1633
-#, c-format
-msgid "This tool could not install the packages: %s"
-msgstr "à¨à¨¹ à¨à©à¨² ਪà©à¨à©à¨ à¨à©°à¨¸à¨à¨¾à¨² ਨਹà©à¨ à¨à¨° ਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: There was an error installing the files. The detailed error follows
-#: ../client/pk-console.c:971
-#, c-format
-msgid "This tool could not install the files: %s"
-msgstr "à¨à¨¹ à¨à©à¨² ਫਾà¨à¨²à¨¾à¨ à¨à©°à¨¸à¨à¨¾à¨² ਨਹà©à¨ à¨à¨° ਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: The package name was not found in the installed list. The detailed error follows
-#: ../client/pk-console.c:1027
-#, c-format
-msgid "This tool could not remove %s: %s"
-msgstr "à¨à¨¹ à¨à©à¨² %s ਨà©à©° ਹà¨à¨¾ ਨਹà©à¨ ਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1050 ../client/pk-console.c:1088
-#: ../client/pk-console.c:1117
-#, c-format
-msgid "This tool could not remove the packages: %s"
-msgstr "à¨à¨¹ à¨à©à¨² ਪà©à¨à©à¨ ਹà¨à¨¾ ਨਹà©à¨ ਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#: ../client/pk-console.c:1103
-msgid "Proceed with additional packages?"
-msgstr "ਹà©à¨° ਪà©à¨à©à¨ ਨਾਲ à¨à¨¾à¨°à© à¨à¨°à©?"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1108
-msgid "The package removal was canceled!"
-msgstr "ਪà©à¨à©à¨ ਹà¨à¨¾à¨à¨£ ਨà©à©° ਰੱਦ à¨à©à¨¤à¨¾ à¨à¨¿à¨!"
-
-#. TRANSLATORS: The package name was not found in any software sources
-#: ../client/pk-console.c:1149
-#, c-format
-msgid "This tool could not download the package %s as it could not be found"
-msgstr "à¨à¨¹ à¨à©à¨² ਪà©à¨à©à¨ %s ਡਾà¨à¨¨à¨²à©à¨¡ ਨਹà©à¨ à¨à¨° ਸà¨à¨¿à¨, à¨à¨¿à¨à¨à¨à¨¿ à¨à¨¹ ਨਹà©à¨ ਲੱà¨à¨¿à¨"
-
-#. TRANSLATORS: Could not download the packages for some reason. The detailed error follows
-#: ../client/pk-console.c:1180
+#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
+#: ../client/pk-console.c:584
#, c-format
-msgid "This tool could not download the packages: %s"
-msgstr "à¨à¨¹ à¨à©à¨² ਪà©à¨à©à¨ ਡਾà¨à¨¨à¨²à©à¨¡ ਨਹà©à¨ à¨à¨° ਸà¨à¨¿à¨: %s"
+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:1212 ../client/pk-console.c:1224
-#: ../client/pk-console.c:1279
+#: ../client/pk-console.c:612
#, c-format
-msgid "This tool could not update %s: %s"
-msgstr "à¨à¨¹ à¨à©à¨² %s à¨
ੱਪਡà©à¨ ਨਹà©à¨ à¨à¨° ਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1270
-msgid "The package update was canceled!"
-msgstr "ਪà©à¨à©à¨ à¨
ੱਪਡà©à¨ ਨà©à©° ਰੱਦ à¨à©à¨¤à¨¾ à¨à¨¿à¨!"
+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:1303 ../client/pk-console.c:1311
+#: ../client/pk-console.c:640 ../client/pk-console.c:668
#, c-format
-msgid "This tool could not get the requirements for %s: %s"
-msgstr "à¨à¨¹ à¨à©à¨² %s ਲਠਲà©à© ਨਹà©à¨ ਲ੠ਸà¨à¨¿à¨: %s"
+msgid "This tool could not find the package: %s"
+msgstr "à¨à¨¹ à¨à©à¨² ਪà©à¨à©à¨ ਨਹà©à¨ ਲੱਠਸà¨à¨¿à¨: %s"
+#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
#. TRANSLATORS: There was an error getting the dependencies for the package. The detailed error follows
-#: ../client/pk-console.c:1333 ../client/pk-console.c:1341
-#, c-format
-msgid "This tool could not get the dependencies for %s: %s"
-msgstr "à¨à¨¹ à¨à©à¨² %s ਲਠਨਿਰà¨à¨°à¨¤à¨¾ ਨਹà©à¨ ਲ੠ਸà¨à¨¿à¨: %s"
-
#. TRANSLATORS: There was an error getting the details about the package. The detailed error follows
-#: ../client/pk-console.c:1363 ../client/pk-console.c:1371
-#, c-format
-msgid "This tool could not get package details for %s: %s"
-msgstr "à¨à¨¹ à¨à©à¨² %s ਲਠਵà©à¨°à¨µà¨¾ ਨਹà©à¨ ਲ੠ਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1393
-#, c-format
-msgid "This tool could not find the files for %s: %s"
-msgstr "à¨à¨¹ à¨à©à¨² %s ਲਠਫਾà¨à¨²à¨¾à¨ ਨਹà©à¨ ਲੱਠਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1401
-#, c-format
-msgid "This tool could not get the file list for %s: %s"
-msgstr "à¨à¨¹ à¨à©à¨² %s ਲਠਫਾà¨à¨² ਲਿਸਠਨਹà©à¨ ਲ੠ਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: There was an error getting the list of packages. The filename follows
-#: ../client/pk-console.c:1423
-#, c-format
-msgid "File already exists: %s"
-msgstr "ਫਾà¨à¨² ਪਹਿਲਾਠਹ੠ਮà©à¨à©à¨¦ ਹà©: %s"
-
-#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1428 ../client/pk-console.c:1484
-#: ../client/pk-console.c:1559
-msgid "Getting package list"
-msgstr "ਪà©à¨à©à¨ ਲਿਸਠਲਠà¨à¨¾ ਰਹ੠ਹà©"
-
-#. TRANSLATORS: There was an error getting the list of packages. The detailed error follows
-#: ../client/pk-console.c:1434 ../client/pk-console.c:1490
-#: ../client/pk-console.c:1565
-#, c-format
-msgid "This tool could not get package list: %s"
-msgstr "à¨à¨¹ à¨à©à¨² ਪà©à¨à©à¨ ਲਿਸਠਨਹà©à¨ ਲਠà¨à¨¾ ਸà¨à©: %s"
-
-#. TRANSLATORS: There was an error saving the list
-#: ../client/pk-console.c:1445
-#, c-format
-msgid "Failed to save to disk"
-msgstr "ਡਿਸਠà¨à©±à¨¤à© ਸੰà¨à¨¾à¨²à¨£ ਲਠਫà©à¨²à©à¨¹ ਹà©"
-
-#. TRANSLATORS: There was an error getting the list. The filename follows
-#: ../client/pk-console.c:1479 ../client/pk-console.c:1554
-#, c-format
-msgid "File does not exist: %s"
-msgstr "ਫਾà¨à¨² ਮà©à¨à©à¨¦ ਨਹà©à¨: %s"
-
-#. TRANSLATORS: header to a list of packages newly added
-#: ../client/pk-console.c:1511
-msgid "Packages to add"
-msgstr "ਸ਼ਾਮਲ à¨à¨°à¨¨ ਲਠਪà©à¨à©à¨"
-
-#. TRANSLATORS: header to a list of packages removed
-#: ../client/pk-console.c:1519
-msgid "Packages to remove"
-msgstr "ਹà¨à¨¾à¨à¨£ ਲਠਪà©à¨à©à¨"
-
-#. TRANSLATORS: We didn't find any differences
-#: ../client/pk-console.c:1587
-#, c-format
-msgid "No new packages need to be installed"
-msgstr "à¨à©à¨ ਨਵਾਠਪà©à¨à©à¨ à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨ ਦ੠ਲà©à© ਨਹà©à¨ ਹà©"
-
-#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1593
-msgid "To install"
-msgstr "à¨à©°à¨¸à¨à¨¾à¨² ਲà¨"
-
-#. TRANSLATORS: searching takes some time....
-#: ../client/pk-console.c:1605
-msgid "Searching for package: "
-msgstr "ਪà©à¨à©à¨ ਲਠà¨à©à¨ à¨à¨¾à¨°à©:"
-
-#. TRANSLATORS: package was not found -- this is the end of a string ended in ...
-#: ../client/pk-console.c:1609
-msgid "not found."
-msgstr "ਨਹà©à¨ ਲੱà¨à¨¿à¨à¥¤"
-
-#. TRANSLATORS: We didn't find any packages to install
-#: ../client/pk-console.c:1620
-#, c-format
-msgid "No packages can be found to install"
-msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨ ਲਠà¨à©à¨ ਪà©à¨à©à¨ ਨਹà©à¨ ਲੱà¨à¨¿à¨"
-
-#. TRANSLATORS: installing new packages from package list
-#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
-#: ../client/pk-console.c:1626
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:885
-#, c-format
-msgid "Installing packages"
-msgstr "ਪà©à¨à©à¨ à¨à©°à¨¸à¨à¨¾à¨² à¨à©à¨¤à© à¨à¨¾ ਰਹ੠ਹਨ"
-
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1662
+#: ../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 the update details for %s: %s"
-msgstr "à¨à¨¹ à¨à©à¨² %s ਲਠà¨
ੱਪਡà©à¨ ਵà©à¨°à¨µà¨¾ ਨਹà©à¨ ਲੱਠਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: There was an error getting the details about the update for the package. The detailed error follows
-#: ../client/pk-console.c:1670
-#, c-format
-msgid "This tool could not get the update details for %s: %s"
-msgstr "à¨à¨¹ à¨à©à¨² %s ਲਠà¨
ੱਪਡà©à¨ ਵà©à¨°à¨µà¨¾ ਨਹà©à¨ ਲ੠ਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: This was an unhandled error, and we don't have _any_ context
-#: ../client/pk-console.c:1701
-msgid "Error:"
-msgstr "à¨à¨²à¨¤à©:"
-
-#. TRANSLATORS: This a list of details about the package
-#: ../client/pk-console.c:1715 ../client/pk-console-test.c:369
-msgid "Package description"
-msgstr "ਪà©à¨à©à¨ ਵà©à¨°à¨µà¨¾"
-
-#. TRANSLATORS: This a message (like a little note that may be of interest) from the transaction
-#: ../client/pk-console.c:1731 ../client/pk-console-test.c:387
-msgid "Message:"
-msgstr "ਸà©à¨¨à©à¨¹à¨¾:"
-
-#. TRANSLATORS: This a list files contained in the package
-#: ../client/pk-console.c:1759 ../client/pk-console-test.c:406
-msgid "Package files"
-msgstr "ਪà©à¨à©à¨ ਫਾà¨à¨²à¨¾à¨"
-
-#. TRANSLATORS: This where the package has no files
-#: ../client/pk-console.c:1767 ../client/pk-console-test.c:401
-msgid "No files"
-msgstr "à¨à©à¨ ਫਾà¨à¨² ਨਹà©à¨"
-
-#. TRANSLATORS: This a request for a GPG key signature from the backend, which the client will prompt for later
-#: ../client/pk-console.c:1790
-msgid "Repository signature required"
-msgstr "ਰਿਪà©à¨à¨¼à¨à¨°à© ਦਸਤà¨à¨¤ ਲà©à©à©à¨¦à©"
-
-#. TRANSLATORS: This a prompt asking the user to import the security key
-#. ask the user
-#: ../client/pk-console.c:1800 ../client/pk-task-text.c:113
-msgid "Do you accept this signature?"
-msgstr "à¨à© ਤà©à¨¸à©à¨ à¨à¨¹ ਦਸਤà¨à¨¤ ਮਨà¨à¨¼à©à¨° à¨à¨°à¨¦à© ਹà©?"
-
-#. TRANSLATORS: This is where the user declined the security key
-#: ../client/pk-console.c:1804 ../client/pk-task-text.c:117
-msgid "The signature was not accepted."
-msgstr "ਦਸਤà¨à¨¤ ਮਨà¨à¨¼à©à¨° ਨਹà©à¨ ਸਨ।"
-
-#. TRANSLATORS: This a request for a EULA
-#: ../client/pk-console.c:1838
-msgid "End user license agreement required"
-msgstr "à¨
ੰਤਮ ਯà©à¨à¨¼à¨° ਲਾà¨à¨¸à©à¨à¨¸ à¨à¨à¨°à¨¾à¨°à¨¨à¨¾à¨®à¨¾ ਲà©à©à©à¨¦à¨¾"
-
-#. TRANSLATORS: This a prompt asking the user to agree to the license
-#: ../client/pk-console.c:1845
-msgid "Do you agree to this license?"
-msgstr "à¨à© ਤà©à¨¸à©à¨ à¨à¨¸ ਲਾà¨à¨¸à©à¨à¨¸ ਨਾਲ ਸਹਿਮਤ ਹà©?"
-
-#. TRANSLATORS: This is where the user declined the license
-#: ../client/pk-console.c:1849
-msgid "The license was refused."
-msgstr "ਲਾà¨à¨¸à©à¨à¨¸ ਤà©à¨ à¨à¨¨à¨à¨¾à¨° à¨à©à¨¤à¨¾à¥¤"
+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:1878 ../client/pk-console-test.c:819
+#: ../client/pk-console.c:832
msgid "The daemon crashed mid-transaction!"
msgstr "ਡà©à¨®à¨¨ à¨
ਧà©à¨°à© à¨à¨°à¨¾à¨à¨¸à©à¨à¨¸à¨¼à¨¨ à¨à¨°à©à¨¸à¨¼ ਹ੠à¨à¨!"
#. TRANSLATORS: This is the header to the --help menu
-#: ../client/pk-console.c:1931 ../client/pk-console-test.c:853
+#: ../client/pk-console.c:866
msgid "PackageKit Console Interface"
msgstr "ਪà©à¨à©à¨à¨à¨¿à©±à¨ à¨à¨¨à¨¸à©à¨² à¨à©°à¨à¨°à¨«à©à¨¸"
#. these are commands we can use with pkcon
-#: ../client/pk-console.c:1933 ../client/pk-console-test.c:855
+#: ../client/pk-console.c:868
msgid "Subcommands:"
msgstr "ਸਬ-à¨à¨®à¨¾à¨à¨¡:"
+#. TRANSLATORS: we keep a database updated with the time that an action was last executed
+#: ../client/pk-console.c:947
+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:2026 ../client/pk-console-test.c:969
-#: ../client/pk-generate-pack.c:185 ../client/pk-generate-pack-test.c:225
-#: ../client/pk-monitor.c:128 ../client/pk-monitor-test.c:282
-#: ../contrib/command-not-found/pk-command-not-found.c:616
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:549
+#: ../client/pk-console.c:982 ../client/pk-generate-pack.c:222
+#: ../client/pk-monitor.c:282
+#: ../contrib/command-not-found/pk-command-not-found.c:614
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:500
#: ../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:2029 ../client/pk-console-test.c:972
-#: ../client/pk-monitor.c:130 ../client/pk-monitor-test.c:284
+#: ../client/pk-console.c:985 ../client/pk-monitor.c:284
msgid "Show the program version and exit"
msgstr "ਪਰà©à¨à¨°à¨¾à¨® ਵਰà¨à¨¨ ਵà©à¨à© à¨
ਤ੠ਬੰਦ à¨à¨°à©"
#. TRANSLATORS: command line argument, use a filter to narrow down results
-#: ../client/pk-console.c:2032 ../client/pk-console-test.c:975
+#: ../client/pk-console.c:988
msgid "Set the filter, e.g. installed"
msgstr "ਫਿਲà¨à¨° ਸà©à©±à¨ à¨à¨°à©, à¨à¨¿à¨µà©à¨ à¨à¨¿ à¨à©°à¨¸à¨à¨¾à¨²"
#. TRANSLATORS: command line argument, work asynchronously
-#: ../client/pk-console.c:2035 ../client/pk-console-test.c:978
+#: ../client/pk-console.c:991
msgid "Exit without waiting for actions to complete"
msgstr "ਪà©à¨°à© ਹà©à¨£ ਵਾਲ੠à¨à¨à¨¸à¨¼à¨¨ ਦ੠à¨à¨¡à©à¨ à¨à©à¨¤à© ਬਿਨਾਠਬੰਦ à¨à¨°à©"
-#. TRANSLATORS: This is when we could not connect to the system bus, and is fatal
-#: ../client/pk-console.c:2062
-msgid "This tool could not connect to system DBUS."
-msgstr "à¨à¨¹ à¨à©à¨² ਸਿਸà¨à¨® DBUS ਨਾਲ à¨à©à¨¨à©à¨à¨ ਨਹà©à¨ ਹ੠ਸà¨à¨¿à¨à¥¤"
+#. TRANSLATORS: we failed to contact the daemon
+#: ../client/pk-console.c:1016
+msgid "Failed to contact PackageKit"
+msgstr "ਪà©à¨à©à¨à¨à¨¿à©±à¨ ਨਾਲ ਸੰਪਰਠਲਠਫà©à¨²à©à¨¹ ਹà©"
#. TRANSLATORS: The user specified an incorrect filter
-#: ../client/pk-console.c:2152 ../client/pk-console-test.c:1053
+#: ../client/pk-console.c:1068
msgid "The filter specified was invalid"
msgstr "ਦਿੱਤਾ ਫਿਲà¨à¨° à¨
ਢà©à©±à¨à¨µà¨¾à¨ ਹà©à¥¤"
#. TRANSLATORS: a search type can be name, details, file, etc
-#: ../client/pk-console.c:2171 ../client/pk-console-test.c:1072
+#: ../client/pk-console.c:1087
msgid "A search type is required, e.g. name"
msgstr "à¨à©à¨ à¨à¨¿à¨¸à¨® à¨à¨¾à¨¹à©à¨¦à© ਹà©, à¨à¨¿à¨µà©à¨ ਨਾà¨"
#. TRANSLATORS: the user needs to provide a search term
-#: ../client/pk-console.c:2178 ../client/pk-console.c:2187
-#: ../client/pk-console.c:2196 ../client/pk-console.c:2205
-#: ../client/pk-console-test.c:1079 ../client/pk-console-test.c:1091
-#: ../client/pk-console-test.c:1103 ../client/pk-console-test.c:1115
+#: ../client/pk-console.c:1094 ../client/pk-console.c:1106
+#: ../client/pk-console.c:1118 ../client/pk-console.c:1130
msgid "A search term is required"
msgstr "à¨à©à¨ ਸ਼ਬਦ ਦ੠ਲà©à© ਹà©"
#. TRANSLATORS: the search type was provided, but invalid
-#: ../client/pk-console.c:2212 ../client/pk-console-test.c:1125
+#: ../client/pk-console.c:1140
msgid "Invalid search type"
msgstr "à¨à¨²à¨¤ à¨à©à¨ à¨à¨¾à¨à¨ª"
#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console.c:2218
-msgid "A package name or filename to install is required"
-msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨ ਲਠà¨à©±à¨ ਪà©à¨à©à¨ ਨਾਠà¨à¨¾à¨ ਫਾà¨à¨² ਨਾਠਦ੠ਲà©à© ਹà©"
+#: ../client/pk-console.c:1146
+msgid "A package name to install is required"
+msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨ ਲਠਪà©à¨à©à¨ ਨਾਠਲਾà¨à¨¼à¨®à© ਹà©"
+
+#. TRANSLATORS: the user did not specify what they wanted to install
+#: ../client/pk-console.c:1155
+msgid "A filename to install is required"
+msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨ ਲਠà¨à©±à¨ ਫਾà¨à¨² ਨਾਠਦ੠ਲà©à© ਹà©"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2227 ../client/pk-console-test.c:1152
+#: ../client/pk-console.c:1167
msgid "A type, key_id and package_id are required"
msgstr "à¨à¨¾à¨à¨ª, key_id à¨à¨¾à¨ package_id ਦà©à¨£ ਦ੠ਲà©à© ਹà©"
#. TRANSLATORS: the user did not specify what they wanted to remove
-#: ../client/pk-console.c:2236 ../client/pk-console-test.c:1163
+#: ../client/pk-console.c:1178
msgid "A package name to remove is required"
msgstr "ਹà¨à¨¾à¨à¨£ ਵਾਸਤ੠ਪà©à¨à©à¨ ਨਾਠà¨à¨¾à¨¹à©à¨¦à¨¾ ਹà©"
#. TRANSLATORS: the user did not specify anything about what to download or where
-#: ../client/pk-console.c:2244 ../client/pk-console-test.c:1172
+#: ../client/pk-console.c:1187
msgid "A destination directory and the package names to download are required"
msgstr "ਡਾà¨à¨¨à¨²à©à¨¡ à¨à¨°à¨¨ ਵਾਸਤ੠à¨à¨¿à¨à¨¾à¨£à¨¾ ਡਾà¨à¨°à©à¨à¨à¨°à© à¨
ਤ੠ਪà©à¨à©à¨ ਨਾਠਲਾà¨à¨¼à¨®à© ਹà©"
#. TRANSLATORS: the directory does not exist, so we can't continue
-#: ../client/pk-console.c:2251 ../client/pk-console-test.c:1179
+#: ../client/pk-console.c:1194
msgid "Directory not found"
msgstr "ਡਾà¨à¨°à©à¨à¨à¨°à© ਨਹà©à¨ ਲੱà¨à©"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2259 ../client/pk-console-test.c:1188
+#: ../client/pk-console.c:1203
msgid "A licence identifier (eula-id) is required"
msgstr "à¨à©±à¨ ਲਾà¨à¨¸à©à¨à¨¸ ਪà¨à¨¾à¨£à¨à¨°à¨¤à¨¾ (eula-id) ਲਾà¨à¨¼à¨®à© ਹà©"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2269 ../client/pk-console-test.c:1199
+#: ../client/pk-console.c:1214
msgid "A transaction identifier (tid) is required"
msgstr "à¨à¨°à¨¾à¨à¨¸à©à¨à¨¸à¨¼à¨¨ ਪà¨à¨¾à¨£ (tid) ਲà©à©à©à¨¦à¨¾ ਹà©"
#. TRANSLATORS: The user did not specify a package name
-#: ../client/pk-console.c:2286 ../client/pk-console-test.c:1220
+#: ../client/pk-console.c:1235
msgid "A package name to resolve is required"
msgstr "ਹੱਲ à¨à¨°à¨¨ ਲਠਪà©à¨à©à¨ ਨਾਠਲਾà¨à¨¼à¨®à© ਹà©"
#. TRANSLATORS: The user did not specify a repository (software source) name
-#: ../client/pk-console.c:2295 ../client/pk-console.c:2304
-#: ../client/pk-console-test.c:1231 ../client/pk-console-test.c:1242
+#: ../client/pk-console.c:1246 ../client/pk-console.c:1257
msgid "A repository name is required"
msgstr "ਰਿਪà©à¨à¨¼à¨à¨°à© ਨਾਠਲà©à©à©à¨¦à¨¾ ਹà©"
#. TRANSLATORS: The user didn't provide any data
-#: ../client/pk-console.c:2313 ../client/pk-console-test.c:1253
+#: ../client/pk-console.c:1268
msgid "A repo name, parameter and value are required"
msgstr "ਰà©à¨ªà© ਨਾà¨, ਪà©à¨°à¨¾à¨®à©à¨à¨° à¨
ਤ੠ਮà©à©±à¨² ਲà©à©à©à¨¦à¨¾ ਹà©"
#. TRANSLATORS: The user didn't specify what action to use
-#: ../client/pk-console.c:2327 ../client/pk-console-test.c:1270
+#: ../client/pk-console.c:1285
msgid "An action, e.g. 'update-system' is required"
msgstr "à¨à¨¾à¨°à¨µà¨¾à¨, à¨à¨¿à¨µà©à¨ 'à¨
ੱਪਡà©à¨-ਸਿਸà¨à¨®' ਲà©à©à©à¨¦à¨¾ ਹà©"
#. TRANSLATORS: The user specified an invalid action
-#: ../client/pk-console.c:2334 ../client/pk-console-test.c:1277
+#: ../client/pk-console.c:1292
msgid "A correct role is required"
msgstr "ਠà©à¨ ਰà©à¨² ਲà©à©à©à¨¦à¨¾ ਹà©"
-#. TRANSLATORS: we keep a database updated with the time that an action was last executed
-#: ../client/pk-console.c:2341 ../client/pk-console-test.c:934
-msgid "Failed to get the time since this action was last completed"
-msgstr "à¨à¨¸ à¨à¨¾à¨°à¨µà¨¾à¨ ਦ੠à¨à¨à¨°à© ਵਾਰ ਪà©à¨°à© ਹà©à¨£ ਤà©à¨ ਬਾà¨
ਦ ਸਮਾਠਲà©à¨£ ਲਠਫà©à¨²à©à¨¹ ਹà©"
-
#. TRANSLATORS: The user did not provide a package name
#. TRANSLATORS: This is when the user fails to supply the package name
-#: ../client/pk-console.c:2351 ../client/pk-console.c:2363
-#: ../client/pk-console.c:2372 ../client/pk-console.c:2390
-#: ../client/pk-console.c:2399 ../client/pk-console-test.c:1287
-#: ../client/pk-console-test.c:1302 ../client/pk-console-test.c:1311
-#: ../client/pk-console-test.c:1331 ../client/pk-console-test.c:1340
-#: ../client/pk-generate-pack.c:241 ../client/pk-generate-pack-test.c:288
+#: ../client/pk-console.c:1302 ../client/pk-console.c:1317
+#: ../client/pk-console.c:1326 ../client/pk-console.c:1346
+#: ../client/pk-console.c:1355 ../client/pk-generate-pack.c:285
msgid "A package name is required"
msgstr "ਪà©à¨à©à¨ ਨਾਠਲà©à©à©à¨¦à¨¾ ਹà©"
#. TRANSLATORS: each package "provides" certain things, e.g. mime(gstreamer-decoder-mp3), the user didn't specify it
-#: ../client/pk-console.c:2381 ../client/pk-console-test.c:1320
+#: ../client/pk-console.c:1335
msgid "A package provide string is required"
msgstr "ਪà©à¨à©à¨ ਦà©à¨£ ਵਾਲ੠ਸਤਰ ਲà©à©à©à¨¦à© ਹà©"
-#. TRANSLATORS: The user didn't specify a filename to create as a list
-#: ../client/pk-console.c:2408
-msgid "A list file name to create is required"
-msgstr "ਬਣਾà¨à¨£ ਲਠਲਿਸਠਫਾà¨à¨² ਨਾਠਲà©à©à©à¨¦à¨¾ ਹà©"
-
-#. TRANSLATORS: The user didn't specify a filename to open as a list
-#: ../client/pk-console.c:2418 ../client/pk-console.c:2428
-msgid "A list file to open is required"
-msgstr "à¨à©à¨²à©à¨¹à¨£ ਲਠਲਿਸਠਫਾà¨à¨² ਲà©à©à©à¨¦à© ਹà©"
-
#. TRANSLATORS: The user tried to use an unsupported option on the command line
-#: ../client/pk-console.c:2482 ../client/pk-console-test.c:1400
+#: ../client/pk-console.c:1415
#, c-format
msgid "Option '%s' is not supported"
msgstr "à¨à©à¨£ '%s' ਸਹਾà¨à¨ ਨਹà©à¨ ਹà©"
-#. TRANSLATORS: User does not have permission to do this
-#: ../client/pk-console.c:2495
-msgid "Incorrect privileges for this operation"
-msgstr "à¨à¨¸ à¨à¨¾à¨°à¨µà¨¾à¨ ਲਠà¨à¨²à¨¤ à¨
ਧਿà¨à¨¾à¨°"
-
#. TRANSLATORS: Generic failure of what they asked to do
-#. /* TRANSLATORS: User does not have permission to do this */
-#. g_print ("%s\n", _("Incorrect privileges for this operation"));
-#. TRANSLATORS: Generic failure of what they asked to do
-#: ../client/pk-console.c:2498 ../client/pk-console-test.c:1412
+#: ../client/pk-console.c:1425
msgid "Command failed"
msgstr "à¨à¨®à¨¾à¨à¨¡ ਫà©à¨²à©à¨¹ ਹà©"
-#: ../client/pk-console-shared.c:52 ../client/pk-tools-common.c:51
-#, c-format
-msgid "Please enter a number from 1 to %i: "
-msgstr "੧ ਤà©à¨ %i ਤੱਠਨੰਬਰ ਦਿਠà¨à©:"
-
-#. TRANSLATORS: more than one package could be found that matched, to follow is a list of possible packages
-#: ../client/pk-console-shared.c:213 ../client/pk-tools-common.c:200
-msgid "More than one package matches:"
-msgstr "à¨à©±à¨ ਤà©à¨ ਵੱਧ ਰਲਦ੠ਪà©à¨à©à¨ ਲੱà¨à©:"
-
-#. TRANSLATORS: This finds out which package in the list to use
-#: ../client/pk-console-shared.c:222 ../client/pk-tools-common.c:207
-msgid "Please choose the correct package: "
-msgstr "ਠà©à¨ ਪà©à¨à©à¨ à¨à©à¨£à© à¨à©:"
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console-test.c:571
-#, c-format
-msgid "This tool could not find the 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-test.c:599
-#, 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-test.c:627 ../client/pk-console-test.c:655
-#, c-format
-msgid "This tool could not find the package: %s"
-msgstr "à¨à¨¹ à¨à©à¨² ਪà©à¨à©à¨ ਨਹà©à¨ ਲੱਠਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#. 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-test.c:683 ../client/pk-console-test.c:711
-#: ../client/pk-console-test.c:739 ../client/pk-console-test.c:767
-#: ../client/pk-console-test.c:795
-#, c-format
-msgid "This tool could not find all the packages: %s"
-msgstr "à¨à¨¹ à¨à©à¨² ਸਠਪà©à¨à©à¨ ਨਹà©à¨ ਲੱਠਸà¨à¨¿à¨: %s"
-
-#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console-test.c:1131
-msgid "A package name to install is required"
-msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨ ਲਠਪà©à¨à©à¨ ਨਾਠਲਾà¨à¨¼à¨®à© ਹà©"
-
-#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console-test.c:1140
-msgid "A filename to install is required"
-msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨ ਲਠà¨à©±à¨ ਫਾà¨à¨² ਨਾਠਦ੠ਲà©à© ਹà©"
-
-#. TRANSLATORS: This is the state of the transaction
-#: ../client/pk-generate-pack.c:101
-msgid "Downloading"
-msgstr "ਡਾà¨à¨¨à¨²à©à¨¡ à¨à©à¨¤à¨¾ à¨à¨¾ ਰਿਹਾ ਹà©"
-
-#. TRANSLATORS: This is when the main packages are being downloaded
-#: ../client/pk-generate-pack.c:121
-msgid "Downloading packages"
-msgstr "ਪà©à¨à©à¨ ਡਾà¨à¨¨à¨²à©à¨¡ à¨à©à¨¤à© à¨à¨¾ ਰਹ੠ਹਨ"
-
-#. TRANSLATORS: This is when the dependency packages are being downloaded
-#: ../client/pk-generate-pack.c:126
-msgid "Downloading dependencies"
-msgstr "ਨਿਰà¨à¨°à¨¤à¨¾ ਡਾà¨à¨¨à¨²à©à¨¡ à¨à©à¨¤à© à¨à¨¾ ਰਹ੠ਹà©"
-
#. TRANSLATORS: we can exclude certain packages (glibc) when we know they'll exist on the target
-#: ../client/pk-generate-pack.c:188 ../client/pk-generate-pack-test.c:228
+#: ../client/pk-generate-pack.c:225
msgid "Set the file name of dependencies to be excluded"
msgstr "ਨਿਰà¨à¨°à¨¤à¨¾ ਲਠਫਾà¨à¨² ਨਾਠਦਿà¨, à¨à¨¿à¨¸ ਨà©à©° ਵੱਠਰੱà¨à¨¿à¨ à¨à¨¾à¨µà©"
#. TRANSLATORS: the output location
-#: ../client/pk-generate-pack.c:191 ../client/pk-generate-pack-test.c:231
+#: ../client/pk-generate-pack.c:228
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:194 ../client/pk-generate-pack-test.c:234
+#: ../client/pk-generate-pack.c:231
msgid "The package to be put into the service pack"
msgstr "ਸਰਵਿਸ ਪà©à¨ ਵਿੱਠਰੱà¨à¨£ ਵਾਸਤ੠ਪà©à¨à©à¨"
#. TRANSLATORS: put all pending updates in the pack
-#: ../client/pk-generate-pack.c:197 ../client/pk-generate-pack-test.c:237
+#: ../client/pk-generate-pack.c:234
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:225 ../client/pk-generate-pack-test.c:272
+#: ../client/pk-generate-pack.c:269
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:233 ../client/pk-generate-pack-test.c:280
+#: ../client/pk-generate-pack.c:277
msgid "Both options selected."
msgstr "ਦà©à¨µà©à¨ à¨à©à¨£à¨¾à¨ à¨à©à¨¤à©à¨à¨à¥¤"
#. TRANSLATORS: This is when the user fails to supply the output
-#: ../client/pk-generate-pack.c:249 ../client/pk-generate-pack-test.c:296
+#: ../client/pk-generate-pack.c:293
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
+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
-#. 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:267 ../client/pk-generate-pack.c:273
-#: ../client/pk-generate-pack-test.c:324 ../client/pk-generate-pack-test.c:330
+#: ../client/pk-generate-pack.c:322 ../client/pk-generate-pack.c:328
msgid "The package manager cannot perform this type of operation."
msgstr "ਪà©à¨à©à¨ ਮà©à¨¨à©à¨à¨° à¨à¨¸ à¨à¨¿à¨¸à¨® ਦ੠à¨à¨¾à¨°à¨µà¨¾à¨ ਨਹà©à¨ à¨à¨° ਸà¨à¨¦à¨¾ ਹà©à¥¤"
#. TRANSLATORS: This is when the distro didn't include libarchive support into PK
-#: ../client/pk-generate-pack.c:280 ../client/pk-generate-pack-test.c:337
+#: ../client/pk-generate-pack.c:335
msgid ""
"Service packs cannot be created as PackageKit was not built with libarchive "
"support."
@@ -871,254 +539,157 @@ msgstr ""
"à¨à¨¿à¨ ਹà©à¥¤"
#. TRANSLATORS: the user specified an absolute path, but didn't get the extension correct
-#: ../client/pk-generate-pack.c:291 ../client/pk-generate-pack-test.c:348
+#: ../client/pk-generate-pack.c:346
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:307 ../client/pk-generate-pack-test.c:364
+#: ../client/pk-generate-pack.c:362
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:310 ../client/pk-generate-pack-test.c:367
+#: ../client/pk-generate-pack.c:365
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:323 ../client/pk-generate-pack-test.c:380
+#: ../client/pk-generate-pack.c:378
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:333 ../client/pk-generate-pack-test.c:392
+#: ../client/pk-generate-pack.c:390
msgid "Failed to open package list."
msgstr "ਪà©à¨à©à¨ ਲਿਸਠà¨à©à¨²à©à¨¹à¨£ ਲਠਫà©à¨²à©à¨¹ ਹà©à¥¤"
#. TRANSLATORS: The package name is being matched up to available packages
-#: ../client/pk-generate-pack.c:344 ../client/pk-generate-pack-test.c:401
+#: ../client/pk-generate-pack.c:399
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:348 ../client/pk-generate-pack-test.c:405
+#: ../client/pk-generate-pack.c:403
#, 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:365 ../client/pk-generate-pack-test.c:413
+#: ../client/pk-generate-pack.c:411
msgid "Creating service pack..."
msgstr "ਸਰਵਿਸ ਪà©à¨ ਬਣਾà¨à¨ à¨à¨¾ ਰਿਹਾ ਹà©..."
#. TRANSLATORS: we succeeded in making the file
-#: ../client/pk-generate-pack.c:372 ../client/pk-generate-pack-test.c:428
+#: ../client/pk-generate-pack.c:426
#, c-format
msgid "Service pack created '%s'"
msgstr "ਸਰਵਿਸ ਪà©à¨ ਬਣਾà¨à¨ '%s'"
#. TRANSLATORS: we failed to make te file
-#: ../client/pk-generate-pack.c:377 ../client/pk-generate-pack-test.c:433
+#: ../client/pk-generate-pack.c:431
#, c-format
msgid "Failed to create '%s': %s"
msgstr "'%s' ਬਣਾà¨à¨£ ਲਠਫà©à¨²à©à¨¹: %s"
-#. TRANSLATORS: this is a program that monitors PackageKit
-#: ../client/pk-monitor.c:146 ../client/pk-monitor-test.c:299
-msgid "PackageKit Monitor"
-msgstr "ਪà©à¨à©à¨à¨à¨¿à©±à¨ ਮਾਨà©à¨à¨°"
-
-#: ../client/pk-monitor.c:183
-msgid "Cannot show the list of transactions"
-msgstr "à¨à¨°à¨¾à¨à¨¸à©à¨à¨¸à¨¼à¨¨ ਦ੠ਲਿਸਠਨਹà©à¨ ਵà©à¨à¨¾à¨ à¨à¨¾ ਸà¨à¨¦à©"
-
-#: ../client/pk-monitor-test.c:204
+#: ../client/pk-monitor.c:204
msgid "Failed to get transaction list"
msgstr "à¨à¨°à¨¾à¨à¨¸à©à¨à¨¸à¨¼à¨¨ ਲਿਸਠà¨à©à¨²à©à¨¹à¨£ ਲਠਫà©à¨²à©à¨¹ ਹà©à¥¤"
-#: ../client/pk-monitor-test.c:235
+#: ../client/pk-monitor.c:235
msgid "Failed to get daemon state"
msgstr "ਡà©à¨®à¨¨ ਹਾਲਤ ਪਤਾ à¨à¨°à¨¨ ਲਠਫà©à¨²à©à¨¹ ਹà©à¥¤"
-#. ask the user
-#: ../client/pk-task-text.c:64
-msgid "Do you want to allow installing of unsigned software?"
-msgstr "à¨à© ਤà©à¨¸à©à¨ ਨਾ-ਸਾà¨à¨¨ à¨à©à¨¤à© ਸਾਫà¨à¨µà©à¨
ਰ à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨à¨¾ à¨à¨¾à¨¹à©à©°à¨¦à© ਹà©?"
-
-#: ../client/pk-task-text.c:68
-msgid "The unsigned software will not be installed."
-msgstr "ਨਾ-ਸਾà¨à¨¨ à¨à©à¨¤à© ਸਾਫà¨à¨µà©à¨
ਰ à¨à©°à¨¸à¨à¨¾à¨² ਨਹà©à¨ à¨à©à¨¤à¨¾ à¨à¨¾à¨µà©à¨à¨¾à¥¤"
-
-#: ../client/pk-task-text.c:100
-msgid "Software source signature required"
-msgstr "ਸਾਪà¨à¨µà©à¨
ਰ ਸਰà©à¨¤ ਦਸਤà¨à¨¤ ਲà©à©à©à¨à¨¦à©"
-
-#: ../client/pk-task-text.c:102
-msgid "Software source name"
-msgstr "ਸਾਫà¨à¨µà©à¨
ਰ ਸਰà©à¨¤ ਨਾà¨"
-
-#: ../client/pk-task-text.c:103
-msgid "Key URL"
-msgstr "à¨à©à©°à¨à© URL"
-
-#: ../client/pk-task-text.c:104
-msgid "Key user"
-msgstr "à¨à©à©°à¨à© ਯà©à©à¨°"
-
-#: ../client/pk-task-text.c:105
-msgid "Key ID"
-msgstr "à¨à©à©°à¨à© ID"
-
-#: ../client/pk-task-text.c:106
-msgid "Key fingerprint"
-msgstr "à¨à©à©°à¨à© ਫਿੰà¨à¨°à¨ªà©à¨°à¨¿à©°à¨"
-
-#: ../client/pk-task-text.c:107
-msgid "Key Timestamp"
-msgstr "à¨à©à©°à¨à© à¨à¨¾à¨à¨®à¨¸à¨à©à¨à¨ª"
-
-#: ../client/pk-task-text.c:151
-msgid "End user licence agreement required"
-msgstr "à¨
ੰਤਮ ਯà©à¨à¨¼à¨° ਲਾà¨à¨¸à©à¨à¨¸ à¨à¨à¨°à¨¾à¨°à¨¨à¨¾à¨®à¨¾ ਲà©à©à©à¨à¨¦à¨¾"
-
-#: ../client/pk-task-text.c:152
-msgid "EULA ID"
-msgstr "EULA ID"
-
-#: ../client/pk-task-text.c:155
-msgid "Agreement"
-msgstr "à¨à¨à¨°à¨¾à¨°à¨¨à¨¾à¨®à¨¾"
-
-#. ask the user
-#: ../client/pk-task-text.c:161
-msgid "Do you accept this agreement?"
-msgstr "à¨à© ਤà©à¨¸à©à¨ à¨à¨¹ à¨à¨à¨°à¨¾à¨°à¨¨à¨¾à¨®à¨¾ ਮਨà¨à¨¼à©à¨° à¨à¨°à¨¦à© ਹà©?"
-
-#: ../client/pk-task-text.c:165
-msgid "The agreement was not accepted."
-msgstr "à¨à¨à¨°à¨¾à¨°à¨¨à¨¾à¨®à¨¾ ਮਨà¨à¨¼à©à¨° ਨਹà©à¨ à¨à©à¨¤à¨¾ ਸà©à¥¤"
-
-#: ../client/pk-task-text.c:194
-msgid "Media change required"
-msgstr "ਮà©à¨¡à¨¿à¨ ਤਬਦà©à¨²à© ਲà©à©à©à¨à¨¦à© ਹà©"
-
-#: ../client/pk-task-text.c:195
-msgid "Media type"
-msgstr "ਮà©à¨¡à¨¿à¨ à¨à¨¿à¨¸à¨®"
-
-#: ../client/pk-task-text.c:196
-msgid "Media ID"
-msgstr "ਮà©à¨¡à¨¿à¨ ID"
-
-#: ../client/pk-task-text.c:197
-msgid "Text"
-msgstr "à¨à©à¨à¨¸à¨"
-
-#. ask the user
-#: ../client/pk-task-text.c:201
-msgid "Please insert the correct media"
-msgstr "ਠà©à¨ ਮà©à¨¡à¨¿à¨ à¨à©à¨£à© à¨à©"
-
-#: ../client/pk-task-text.c:205
-msgid "The correct media was not inserted."
-msgstr "ਠà©à¨ ਮà©à¨¡à¨¿à¨ ਨਹà©à¨ ਪਾà¨à¨à¥¤"
-
-#: ../client/pk-task-text.c:303
-msgid "The transaction did not proceed."
-msgstr "à¨à¨°à¨¾à¨à¨¸à©à¨à¨¸à¨¼à¨¨ à¨
ੱà¨à© ਨਹà©à¨ ਵਧਿà¨à¥¤"
-
-#. TRANSLATORS: The package was not found in any software sources
-#: ../client/pk-tools-common.c:188
-#, c-format
-msgid "The package could not be found"
-msgstr "ਪà©à¨à©à¨ ਨਹà©à¨ ਲੱà¨à¨¿à¨ à¨à¨¾ ਸà¨à¨¿à¨"
+#. TRANSLATORS: this is a program that monitors PackageKit
+#: ../client/pk-monitor.c:299
+msgid "PackageKit Monitor"
+msgstr "ਪà©à¨à©à¨à¨à¨¿à©±à¨ ਮਾਨà©à¨à¨°"
#. TRANSLATORS: when we are getting data from the daemon
-#: ../contrib/browser-plugin/pk-plugin-install.c:466
+#: ../contrib/browser-plugin/pk-plugin-install.c:495
msgid "Getting package information..."
msgstr "ਪà©à¨à©à¨ à¨à¨¾à¨£à¨à¨¾à¨°à© ਲਠà¨à¨¾ ਰਹ੠ਹà©..."
#. TRANSLATORS: run an applicaiton
-#: ../contrib/browser-plugin/pk-plugin-install.c:472
+#: ../contrib/browser-plugin/pk-plugin-install.c:501
#, c-format
msgid "Run %s"
msgstr "%s à¨à¨²à¨¾à¨"
#. TRANSLATORS: show the installed version of a package
-#: ../contrib/browser-plugin/pk-plugin-install.c:478
+#: ../contrib/browser-plugin/pk-plugin-install.c:507
msgid "Installed version"
msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à©à¨¤à© ਵਰà¨à¨¨"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/pk-plugin-install.c:486
+#: ../contrib/browser-plugin/pk-plugin-install.c:515
#, c-format
msgid "Run version %s now"
msgstr "ਵਰà¨à¨¨ %s ਹà©à¨£à© à¨à¨²à¨¾à¨"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/pk-plugin-install.c:492
+#: ../contrib/browser-plugin/pk-plugin-install.c:521
msgid "Run now"
msgstr "ਹà©à¨£à© à¨à¨²à¨¾à¨"
#. TRANSLATORS: update to a new version of the package
-#: ../contrib/browser-plugin/pk-plugin-install.c:498
+#: ../contrib/browser-plugin/pk-plugin-install.c:527
#, c-format
msgid "Update to version %s"
msgstr "ਵਰà¨à¨¨ %s ਲਠà¨
ੱਪਡà©à¨ à¨à¨°à©"
#. TRANSLATORS: To install a package
-#: ../contrib/browser-plugin/pk-plugin-install.c:504
+#: ../contrib/browser-plugin/pk-plugin-install.c:533
#, c-format
msgid "Install %s now"
msgstr "%s ਹà©à¨£à© à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à©"
#. TRANSLATORS: the version of the package
-#: ../contrib/browser-plugin/pk-plugin-install.c:507
+#: ../contrib/browser-plugin/pk-plugin-install.c:536
msgid "Version"
msgstr "ਵਰà¨à¨¨"
#. TRANSLATORS: noting found, so can't install
-#: ../contrib/browser-plugin/pk-plugin-install.c:512
+#: ../contrib/browser-plugin/pk-plugin-install.c:541
msgid "No packages found for your system"
msgstr "ਤà©à¨¹à¨¾à¨¡à© ਸਿਸà¨à¨® à¨à©±à¨¤à© à¨à©à¨ ਪà©à¨à©à¨ ਨਹà©à¨ ਲੱà¨à¨¿à¨"
#. TRANSLATORS: package is being installed
-#: ../contrib/browser-plugin/pk-plugin-install.c:517
+#: ../contrib/browser-plugin/pk-plugin-install.c:546
msgid "Installing..."
msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à©à¨¤à¨¾ à¨à¨¾ ਰਿਹਾ ਹà©..."
#. TRANSLATORS: downloading repo data so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:349
+#: ../contrib/command-not-found/pk-command-not-found.c:358
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:353
+#: ../contrib/command-not-found/pk-command-not-found.c:362
msgid "Downloading filelists (this may take some time to complete)."
msgstr "ਫਾà¨à¨²-ਲਿਸਠਡਾà¨à¨¨à¨²à©à¨¡ à¨à¨° ਰਿਹਾ ਹ੠(à¨à¨¹ ਮà©à¨à©°à¨®à¨² ਹà©à¨£ ਲਠà¨à©à¨ ਸਮਾਠਲ੠ਸà¨à¨¦à¨¾ ਹà©)।"
#. TRANSLATORS: waiting for native lock
-#: ../contrib/command-not-found/pk-command-not-found.c:357
+#: ../contrib/command-not-found/pk-command-not-found.c:366
msgid "Waiting for package manager lock."
msgstr "ਪà©à¨à©à¨ ਮà©à¨¨à©à¨à¨° ਲਾਠਦ੠à¨à¨¡à©à¨ à¨à¨° ਰਿਹਾ ਹà©à¥¤"
#. TRANSLATORS: loading package cache so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:361
+#: ../contrib/command-not-found/pk-command-not-found.c:370
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:420
+#: ../contrib/command-not-found/pk-command-not-found.c:444
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:557
+#: ../contrib/command-not-found/pk-command-not-found.c:570
msgid "Failed to launch:"
msgstr "à¨à¨²à¨¾à¨à¨£ ਲਠਫà©à¨²à©à¨¹:"
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/command-not-found/pk-command-not-found.c:632
+#: ../contrib/command-not-found/pk-command-not-found.c:630
msgid "PackageKit Command Not Found"
msgstr "ਪà©à¨à©à¨à¨à¨¿à©±à¨ à¨à¨®à¨¾à¨à¨¡ ਨਹà©à¨ ਲੱà¨à©"
@@ -1177,185 +748,194 @@ msgid "Please choose a package to install"
msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨ ਲਠਪà©à¨à©à¨ à¨à©à¨£à© à¨à©"
#. TRANSLATORS: we are starting to install the packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:187
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:195
msgid "Starting install"
msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à©à¨¤à¨¾ à¨à¨¾ ਰਿਹਾ ਹà©"
#. TRANSLATORS: we couldn't find the package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:397
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:402
#, 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:552
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:503
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:555
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:506
msgid "Do not install dependencies of the core packages"
msgstr "à¨à©à¨° ਪà©à¨à©à¨à¨¾à¨ ਦ੠ਨਿਰà¨à¨°à¨¤à¨¾ à¨à©°à¨¸à¨à¨¾à¨² ਨਾ à¨à¨°à©"
#. command line argument, do we operate quietly
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:558
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:509
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:576
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:524
msgid "PackageKit Debuginfo Installer"
msgstr "ਪà©à¨à©à¨à¨à¨¿à©±à¨ Debuginfo à¨à©°à¨¸à¨à¨¾à¨²à¨°"
#. TRANSLATORS: the use needs to specify a list of package names on the command line
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:588
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:536
#, 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:622
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:568
#, c-format
msgid "Getting sources list"
msgstr "ਸਰà©à¨¤ ਲਿਸਠਲਠà¨à¨¾ ਰਹ੠ਹà©"
+#. TRANSLATORS: operation was not successful
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:578
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:653
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:737
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:781
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:848
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:892
+msgid "FAILED."
+msgstr "ਫà©à¨²à©à¨¹ ਹà©à¨à¨à¥¤"
+
#. TRANSLATORS: all completed 100%
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:640
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:680
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:715
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:799
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:843
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:910
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:954
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:593
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:633
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:668
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:752
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:796
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:863
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:907
#, c-format
msgid "OK."
msgstr "ਠà©à¨ ਹà©à¥¤"
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:643
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:596
#, c-format
msgid "Found %i enabled and %i disabled sources."
msgstr "%i ਯà©à¨ à¨
ਤ੠%i à¨
ਯà©à¨ ਸਰà©à¨¤ ਲੱà¨à© ਹਨ।"
#. TRANSLATORS: we're finding repositories that match out pattern
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:650
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:603
#, c-format
msgid "Finding debugging sources"
msgstr "ਡà©à¨¬à©±à¨à¨¿à©°à¨ ਸਰà©à¨¤ ਲੱਠਰਿਹਾ ਹà©"
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:683
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:636
#, c-format
msgid "Found %i disabled debuginfo repos."
msgstr "%i à¨
ਯà©à¨ debuginfo ਰਿਪ੠ਲੱà¨à©à¨à¨ ਹਨ।"
#. TRANSLATORS: we're now enabling all the debug sources we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:690
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:643
#, c-format
msgid "Enabling debugging sources"
msgstr "ਡà©à¨¬à©±à¨à¨¿à©°à¨ ਸਰà©à¨¤ ਯà©à¨ à¨à¨° ਰਿਹਾ ਹà©"
-#. TRANSLATORS: operation was not successful
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:700
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:784
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:828
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:895
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:939
-msgid "FAILED."
-msgstr "ਫà©à¨²à©à¨¹ ਹà©à¨à¨à¥¤"
-
#. TRANSLATORS: tell the user how many we enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:718
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:671
#, c-format
msgid "Enabled %i debugging sources."
msgstr "%i ਡà©à¨¬à©±à¨à¨¿à©°à¨ ਸਰà©à¨¤ ਯà©à¨ à¨à©à¨¤à¨¾ ਹà©à¥¤"
#. TRANSLATORS: we're now finding packages that match in all the repos
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:725
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:678
#, c-format
msgid "Finding debugging packages"
msgstr "ਡà©à¨¬à©±à¨à¨¿à©°à¨ ਪà©à¨à©à¨ ਲੱà¨à¨¿à¨ à¨à¨¾ ਰਿਹਾ ਹà©à¥¤"
#. TRANSLATORS: we couldn't find the package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:737
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:690
#, c-format
msgid "Failed to find the package %s: %s"
msgstr "%s ਪà©à¨à©à¨ à¨à©à¨à¨£ ਲਠਫà©à¨²à©à¨¹ ਹà©: %s"
#. TRANSLATORS: we couldn't find the debuginfo package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:760
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:713
#, c-format
msgid "Failed to find the debuginfo package %s: %s"
msgstr "ਡà©à¨¬à©±à¨ ਪà©à¨à©à¨ %s à¨à©à¨à¨£ ਲਠਫà©à¨²à©à¨¹ ਹà©: %s"
#. TRANSLATORS: no debuginfo packages could be found to be installed
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:788
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:741
#, c-format
msgid "Found no packages to install."
msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨ ਲਠà¨à©à¨ ਨਵਾਠਪà©à¨à©à¨ ਨਹà©à¨ ਲੱà¨à¨¿à¨à¥¤"
#. TRANSLATORS: tell the user we found some packages, and then list them
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:802
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:755
#, c-format
msgid "Found %i packages:"
msgstr "%i ਪà©à¨à©à¨ ਲੱà¨à¨¿à¨:"
#. TRANSLATORS: tell the user we are searching for deps
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:818
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:771
#, c-format
msgid "Finding packages that depend on these packages"
msgstr "ਪà©à¨à©à¨ ਲੱਠਰਿਹਾ à¨à© à¨à¨¹à¨¨à¨¾à¨ ਪà©à¨à©à¨à¨¾à¨ ਤ੠ਨਿਰà¨à¨° à¨à¨°à¨¦à© ਹਨ"
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:831
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:784
#, c-format
msgid "Could not find dependant packages: %s"
msgstr "ਨਿਰà¨à¨° ਪà©à¨à©à¨ à¨à©à¨ ਨਹà©à¨ ਸà¨à¨¿à¨: %s"
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:847
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:800
#, c-format
msgid "Found %i extra packages."
msgstr "%i ਵਾਧ੠ਪà©à¨à©à¨ ਲੱà¨à© ਹਨ।"
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:851
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:804
#, c-format
msgid "No extra packages required."
msgstr "à¨à©à¨ ਵਾਧ੠ਪà©à¨à©à¨ ਨਹà©à¨ ਲà©à©à©à¨à¨¦à¨¾ ਹà©à¥¤"
#. TRANSLATORS: tell the user we found some packages (and deps), and then list them
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:860
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:813
#, c-format
msgid "Found %i packages to install:"
msgstr "à¨à©°à¨¸à¨à¨¾à¨² à¨à¨°à¨¨ ਲਠ%i ਪà©à¨à©à¨ ਲੱà¨à¨¿à¨ ਹà©:"
#. TRANSLATORS: simulate mode is a testing mode where we quit before the action
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:873
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:826
#, c-format
msgid "Not installing packages in simulate mode"
msgstr "ਸਿਮà©à¨²à©à¨ ਮà©à¨¡ ਵਿੱਠਪà©à¨à©à¨ à¨à©°à¨¸à¨à¨¾à¨² ਨਹà©à¨ à¨à©à¨¤à© à¨à¨¾ ਰਹ੠ਹਨ"
+#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
+#. TRANSLATORS: transaction state, installing packages
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:838
+#: ../lib/packagekit-glib2/pk-console-shared.c:246
+#, c-format
+msgid "Installing packages"
+msgstr "ਪà©à¨à©à¨ à¨à©°à¨¸à¨à¨¾à¨² à¨à©à¨¤à© à¨à¨¾ ਰਹ੠ਹਨ"
+
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:898
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:851
#, c-format
msgid "Could not install packages: %s"
msgstr "ਪà©à¨à©à¨ à¨à©°à¨¸à¨à¨¾à¨² ਨਹà©à¨ à¨à¨° ਸà¨à¨¿à¨: %s"
#. TRANSLATORS: we are now disabling all debuginfo repos we previously enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:930
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:883
#, c-format
msgid "Disabling sources previously enabled"
msgstr "ਪਹਿਲਾਠਯà©à¨ à¨à©à¨¤à© ਸਰà©à¨¤ à¨
ਯà©à¨ à¨à¨° ਰਿਹਾ"
#. TRANSLATORS: no debuginfo packages could be found to be installed, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:942
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:895
#, c-format
msgid "Could not disable the debugging sources: %s"
msgstr "ਡà©à¨¬à©±à¨à¨¿à©°à¨ ਸਰà©à¨¤ ਨà©à©° à¨
ਯà©à¨ ਨਹà©à¨ à¨à¨° ਸà¨à¨¿à¨: %s"
#. TRANSLATORS: we disabled all the debugging repos that we enabled before
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:957
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:910
#, c-format
msgid "Disabled %i debugging sources."
msgstr "%i ਡà©à¨¬à©±à¨à¨¿à©°à¨ ਸਰà©à¨¤ à¨
ਯà©à¨ à¨à©à¨¤à© ਹਨ।"
@@ -1458,6 +1038,336 @@ msgstr "ਪà©à¨à©à¨à¨à¨¿à©±à¨ ਪà©à¨à©à¨ ਲਿਸà¨"
msgid "PackageKit Service Pack"
msgstr "ਪà©à¨à©à¨à¨à¨¿à©±à¨ ਸਰਵਿਸ ਪà©à¨"
+#: ../lib/packagekit-glib2/pk-console-shared.c:53
+#, c-format
+msgid "Please enter a number from 1 to %i: "
+msgstr "੧ ਤà©à¨ %i ਤੱਠਨੰਬਰ ਦਿਠà¨à©:"
+
+#. 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:153
+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:162
+msgid "Please choose the correct package: "
+msgstr "ਠà©à¨ ਪà©à¨à©à¨ à¨à©à¨£à© à¨à©:"
+
+#. TRANSLATORS: This is when the transaction status is not known
+#: ../lib/packagekit-glib2/pk-console-shared.c:214
+msgid "Unknown state"
+msgstr "à¨
ਣà¨à¨¾à¨£ ਸਥਿਤà©"
+
+#. TRANSLATORS: transaction state, the daemon is in the process of starting
+#: ../lib/packagekit-glib2/pk-console-shared.c:218
+msgid "Starting"
+msgstr "à¨à¨¾à¨²à© ਹ੠ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, the transaction is waiting for another to complete
+#: ../lib/packagekit-glib2/pk-console-shared.c:222
+msgid "Waiting in queue"
+msgstr "à¨à¨¤à¨¾à¨° ਵਿੱਠà¨à¨¡à©à¨ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, just started
+#: ../lib/packagekit-glib2/pk-console-shared.c:226
+msgid "Running"
+msgstr "à¨à©±à¨² ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, is querying data
+#: ../lib/packagekit-glib2/pk-console-shared.c:230
+msgid "Querying"
+msgstr "ਬà©à¨¨à¨¤à© à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, getting data from a server
+#: ../lib/packagekit-glib2/pk-console-shared.c:234
+msgid "Getting information"
+msgstr "à¨à¨¾à¨£à¨à¨¾à¨°à© ਲਠà¨à¨¾ ਰਹ੠ਹà©"
+
+#. TRANSLATORS: transaction state, removing packages
+#: ../lib/packagekit-glib2/pk-console-shared.c:238
+msgid "Removing packages"
+msgstr "ਪà©à¨à©à¨ ਹà¨à¨¾ ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, downloading package files
+#: ../lib/packagekit-glib2/pk-console-shared.c:242
+msgid "Downloading packages"
+msgstr "ਪà©à¨à©à¨ ਡਾà¨à¨¨à¨²à©à¨¡ à¨à©à¨¤à© à¨à¨¾ ਰਹ੠ਹਨ"
+
+#. TRANSLATORS: transaction state, refreshing internal lists
+#: ../lib/packagekit-glib2/pk-console-shared.c:250
+msgid "Refreshing software list"
+msgstr "ਸਾਫà¨à¨µà©à¨
ਰ ਸà©à¨à© ਮà©à©-ਤਾà©à© à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, installing updates
+#: ../lib/packagekit-glib2/pk-console-shared.c:254
+msgid "Installing updates"
+msgstr "à¨
ੱਪਡà©à¨ à¨à©°à¨¸à¨à¨¾à¨² à¨à©à¨¤à© à¨à¨¾ ਰਹ੠ਹਨ"
+
+#. TRANSLATORS: transaction state, removing old packages, and cleaning config files
+#: ../lib/packagekit-glib2/pk-console-shared.c:258
+msgid "Cleaning up packages"
+msgstr "ਪà©à¨à©à¨ ਸਾਫ à¨à©à¨¤à© à¨à¨¾ ਰਹ੠ਹਨ"
+
+#. TRANSLATORS: transaction state, obsoleting old packages
+#: ../lib/packagekit-glib2/pk-console-shared.c:262
+msgid "Obsoleting packages"
+msgstr "ਪà©à¨à©à¨ ਹà¨à¨¾ ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, checking the transaction before we do it
+#: ../lib/packagekit-glib2/pk-console-shared.c:266
+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:270
+msgid "Checking signatures"
+msgstr "ਦਸਤà¨à¨¤ à¨à¨¾à¨à¨ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, when we return to a previous system state
+#: ../lib/packagekit-glib2/pk-console-shared.c:274
+msgid "Rolling back"
+msgstr "ਰà©à¨² ਬà©à¨ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, when we're doing a test transaction
+#: ../lib/packagekit-glib2/pk-console-shared.c:278
+msgid "Testing changes"
+msgstr "ਤਬਦà©à¨²à©à¨à¨ ਦ੠à¨à¨¾à¨à¨ ਹ੠ਰਹ੠ਹà©"
+
+#. TRANSLATORS: transaction state, when we're writing to the system package database
+#: ../lib/packagekit-glib2/pk-console-shared.c:282
+msgid "Committing changes"
+msgstr "ਤਬਦà©à¨²à©à¨à¨ à¨à¨®à¨¿à©±à¨ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, requesting data from a server
+#: ../lib/packagekit-glib2/pk-console-shared.c:286
+msgid "Requesting data"
+msgstr "ਡਾà¨à¨¾ ਬà©à¨¨à¨¤à© à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, all done!
+#: ../lib/packagekit-glib2/pk-console-shared.c:290
+msgid "Finished"
+msgstr "ਮà©à¨à©°à¨®à¨² à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, in the process of cancelling
+#: ../lib/packagekit-glib2/pk-console-shared.c:294
+msgid "Cancelling"
+msgstr "ਰੱਦ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:298
+msgid "Downloading repository information"
+msgstr "ਰਿਪà©à©à¨à¨°à© à¨à¨¾à¨£à¨à¨¾à¨°à© ਡਾà¨à¨¨à¨²à©à¨¡ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:302
+msgid "Downloading list of packages"
+msgstr "ਪà©à¨à©à¨ ਲਿਸਠਡਾà¨à¨¨à¨²à©à¨¡ à¨à©à¨¤à© à¨à¨¾ ਰਹ੠ਹà©"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:306
+msgid "Downloading file lists"
+msgstr "ਫਾà¨à¨² ਸà©à¨à© ਡਾà¨à¨¨à¨²à©à¨¡ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:310
+msgid "Downloading lists of changes"
+msgstr "ਤਬਦà©à¨²à©à¨à¨ ਦ੠ਲਿਸਠਡਾà¨à¨¨à¨²à©à¨¡ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:314
+msgid "Downloading groups"
+msgstr "à¨à¨°à©à©±à¨ª ਡਾà¨à¨¨à¨²à©à¨¡ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:318
+msgid "Downloading update information"
+msgstr "à¨
ੱਪਡà©à¨ à¨à¨¾à¨£à¨à¨¾à¨°à© ਡਾà¨à¨¨à¨²à©à¨¡ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, repackaging delta files
+#: ../lib/packagekit-glib2/pk-console-shared.c:322
+msgid "Repackaging files"
+msgstr "ਫਾà¨à¨² ਮà©à©-ਪà©à¨à©à¨ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, loading databases
+#: ../lib/packagekit-glib2/pk-console-shared.c:326
+msgid "Loading cache"
+msgstr "à¨à©à¨¶à© ਲà©à¨¡ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, scanning for running processes
+#: ../lib/packagekit-glib2/pk-console-shared.c:330
+msgid "Scanning applications"
+msgstr "à¨à¨ªà¨²à©à¨à©à¨¶à¨¨à¨¾à¨ ਸà¨à©à¨¨ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: transaction state, generating a list of packages installed on the system
+#: ../lib/packagekit-glib2/pk-console-shared.c:334
+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:338
+msgid "Waiting for package manager lock"
+msgstr "ਪà©à¨à©à¨ ਮà©à¨¨à©à¨à¨° ਲਾਠਦ੠à¨à¨¡à©à¨ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: waiting for user to type in a password
+#: ../lib/packagekit-glib2/pk-console-shared.c:342
+msgid "Waiting for authentication"
+msgstr "ਪà©à¨°à¨®à¨¾à¨£à¨¿à¨à¨¤à¨¾ ਲਠà¨à¨¡à©à¨ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: we are updating the list of processes
+#: ../lib/packagekit-glib2/pk-console-shared.c:346
+msgid "Updating running applications"
+msgstr "à¨à©±à¨² ਰਹ੠à¨à¨ªà¨²à©à¨à©à¨¶à¨¨ à¨
ੱਪਡà©à¨ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: we are checking executable files currently in use
+#: ../lib/packagekit-glib2/pk-console-shared.c:350
+msgid "Checking applications in use"
+msgstr "ਵਰਤà©à¨ à¨
ਧà©à¨¨ à¨à¨ªà¨²à©à¨à©à¨¶à¨¨à¨¾à¨ ਦ੠à¨à¨¾à¨à¨ ਹ੠ਰਹ੠ਹà©"
+
+#. TRANSLATORS: we are checking for libraries currently in use
+#: ../lib/packagekit-glib2/pk-console-shared.c:354
+msgid "Checking libraries in use"
+msgstr "ਵਰਤà©à¨ à¨
ਧà©à¨¨ ਲਾà¨à¨¬à¨°à©à¨°à©à¨à¨ ਦ੠à¨à¨¾à¨à¨ à¨à¨° ਰਿਹਾ ਹà©"
+
+#. TRANSLATORS: ask the user if they are comfortable installing insecure packages
+#: ../lib/packagekit-glib2/pk-task-text.c:64
+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
+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
+msgid "Software source signature required"
+msgstr "ਸਾਪà¨à¨µà©à¨
ਰ ਸਰà©à¨¤ ਦਸਤà¨à¨¤ ਲà©à©à©à¨à¨¦à©"
+
+#. TRANSLATORS: the package repository name
+#: ../lib/packagekit-glib2/pk-task-text.c:108
+msgid "Software source name"
+msgstr "ਸਾਫà¨à¨µà©à¨
ਰ ਸਰà©à¨¤ ਨਾà¨"
+
+#. TRANSLATORS: the key URL
+#: ../lib/packagekit-glib2/pk-task-text.c:111
+msgid "Key URL"
+msgstr "à¨à©à©°à¨à© URL"
+
+#. TRANSLATORS: the username of the key
+#: ../lib/packagekit-glib2/pk-task-text.c:114
+msgid "Key user"
+msgstr "à¨à©à©°à¨à© ਯà©à©à¨°"
+
+#. TRANSLATORS: the key ID, usually a few hex digits
+#: ../lib/packagekit-glib2/pk-task-text.c:117
+msgid "Key ID"
+msgstr "à¨à©à©°à¨à© ID"
+
+#. TRANSLATORS: the key fingerprint, again, yet more hex
+#: ../lib/packagekit-glib2/pk-task-text.c:120
+msgid "Key fingerprint"
+msgstr "à¨à©à©°à¨à© ਫਿੰà¨à¨°à¨ªà©à¨°à¨¿à©°à¨"
+
+#. TRANSLATORS: the timestamp (a bit like a machine readable time)
+#: ../lib/packagekit-glib2/pk-task-text.c:123
+msgid "Key Timestamp"
+msgstr "à¨à©à©°à¨à© à¨à¨¾à¨à¨®à¨¸à¨à©à¨à¨ª"
+
+#. TRANSLATORS: ask the user if they want to import
+#: ../lib/packagekit-glib2/pk-task-text.c:129
+msgid "Do you accept this signature?"
+msgstr "à¨à© ਤà©à¨¸à©à¨ à¨à¨¹ ਦਸਤà¨à¨¤ ਮਨà¨à¨¼à©à¨° à¨à¨°à¨¦à© ਹà©?"
+
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:134
+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
+msgid "End user licence agreement required"
+msgstr "à¨
ੰਤਮ ਯà©à¨à¨¼à¨° ਲਾà¨à¨¸à©à¨à¨¸ à¨à¨à¨°à¨¾à¨°à¨¨à¨¾à¨®à¨¾ ਲà©à©à©à¨à¨¦à¨¾"
+
+#. TRANSLATORS: the EULA text itself (long and boring)
+#: ../lib/packagekit-glib2/pk-task-text.c:178
+msgid "Agreement"
+msgstr "à¨à¨à¨°à¨¾à¨°à¨¨à¨¾à¨®à¨¾"
+
+#. TRANSLATORS: ask the user if they've read and accepted the EULA
+#: ../lib/packagekit-glib2/pk-task-text.c:184
+msgid "Do you accept this agreement?"
+msgstr "à¨à© ਤà©à¨¸à©à¨ à¨à¨¹ à¨à¨à¨°à¨¾à¨°à¨¨à¨¾à¨®à¨¾ ਮਨà¨à¨¼à©à¨° à¨à¨°à¨¦à© ਹà©?"
+
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:189
+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
+msgid "Media change required"
+msgstr "ਮà©à¨¡à¨¿à¨ ਤਬਦà©à¨²à© ਲà©à©à©à¨à¨¦à© ਹà©"
+
+#. TRANSLATORS: the type, e.g. DVD, CD, etc
+#: ../lib/packagekit-glib2/pk-task-text.c:222
+msgid "Media type"
+msgstr "ਮà©à¨¡à¨¿à¨ à¨à¨¿à¨¸à¨®"
+
+#. TRANSLATORS: the media label, usually like 'disk-1of3'
+#: ../lib/packagekit-glib2/pk-task-text.c:225
+msgid "Media label"
+msgstr "ਮà©à¨¡à¨¿à¨ ਲà©à¨¬à¨²"
+
+#. TRANSLATORS: the media description, usually like 'Fedora 12 disk 5'
+#: ../lib/packagekit-glib2/pk-task-text.c:228
+msgid "Text"
+msgstr "à¨à©à¨à¨¸à¨"
+
+#. TRANSLATORS: ask the user to insert the media
+#: ../lib/packagekit-glib2/pk-task-text.c:232
+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
+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
+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
+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
+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
+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
+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
+msgid "Proceed with changes?"
+msgstr "ਤਬਦà©à¨²à©à¨à¨ ਨਾਲ à¨à¨¾à¨°à© à¨à¨°à©?"
+
+#. TRANSLATORS: tell the user we didn't do anything
+#: ../lib/packagekit-glib2/pk-task-text.c:336
+msgid "The transaction did not proceed."
+msgstr "à¨à¨°à¨¾à¨à¨¸à©à¨à¨¸à¨¼à¨¨ à¨
ੱà¨à© ਨਹà©à¨ ਵਧਿà¨à¥¤"
+
#. SECURITY:
#. - Normal users do not require admin authentication to accept new
#. licence agreements.
@@ -1735,23 +1645,3 @@ msgstr "ਬਹà©à¨¤à© ਪà©à¨à©à¨"
msgid "Only trusted"
msgstr "ਸਿਰਫ à¨à¨°à©à¨¸à©à¨¯à©à¨"
-#~ msgid "The action, one of 'create', 'add', or 'remove'"
-#~ msgstr "à¨à¨¾à¨°à¨µà¨¾à¨ 'ਬਣਾà¨', 'ਸ਼ਾਮਲ', à¨à¨¾à¨ 'ਹà¨à¨¾à¨'"
-
-#~ msgid "Main cache file to use (if not specififed, default is used)"
-#~ msgstr "ਵਰਤਣ ਲਠਮà©à©±à¨ à¨à©à¨¸à¨¼ ਫਾà¨à¨² (à¨à© ਨਾ ਦਿੱਤ੠ਤਾਠਡਿਫਾਲਠਵਰਤ੠à¨à¨¾à¨µà©à¨à©)"
-
-#~ msgid "Source cache file to add to the main database"
-#~ msgstr "ਮà©à©±à¨ ਡਾà¨à¨¾à¨¬à©à¨¸ ਵਿੱਠਸ਼ਾਮਲ à¨à¨°à¨¨ ਵਾਸਤ੠ਸਰà©à¨¤ à¨à©à¨¸à¨¼ ਫਾà¨à¨²"
-
-#~ msgid "Icon directory"
-#~ msgstr "à¨à¨à¨à¨¾à¨¨ ਡਾà¨à¨°à©à¨à¨à¨°à©"
-
-#~ msgid "Name of the remote repo"
-#~ msgstr "ਰਿਮà©à¨ ਰà©à¨ªà© ਦਾ ਨਾà¨"
-
-#~ msgid "PackageKit Application Database Installer"
-#~ msgstr "ਪà©à¨à©à¨à¨à¨¿à©±à¨ à¨à¨ªà¨²à©à¨à©à¨¸à¨¼à¨¨ ਡਾà¨à¨¾à¨¬à©à¨¸ à¨à©°à¨¸à¨à¨¾à¨²à¨°"
-
-#~ msgid "Main database file to use (if not specififed, default is used)"
-#~ msgstr "ਵਰਤਣ ਲਠਮà©à©±à¨ ਡਾà¨à¨¾à¨¬à©à¨¸ ਫਾà¨à¨² (à¨à© ਨਾ ਦਿੱਤ੠ਤਾਠਡਿਫਾਲਠਵਰਤ੠à¨à¨¾à¨µà©à¨à©)"
commit fdecacef73f69634b833ba916a5e6d4265495b67
Author: amitakhya <amitakhya at fedoraproject.org>
Date: Thu Sep 10 04:20:05 2009 +0000
Sending translation for Assamese
diff --git a/po/as.po b/po/as.po
index e2e165a..38f8230 100644
--- a/po/as.po
+++ b/po/as.po
@@ -6,830 +6,1029 @@ msgid ""
msgstr ""
"Project-Id-Version: packagekit.master.PackageKit.as\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-08-24 11:06+0100\n"
-"PO-Revision-Date: 2009-04-23 11:39+0530\n"
+"POT-Creation-Date: 2009-09-06 08:29+0000\n"
+"PO-Revision-Date: 2009-09-08 11:49+0530\n"
"Last-Translator: Amitakhya Phukan <aphukan at fedoraproject.org>\n"
-"Language-Team: Assamese <fedora-trans-as at redhat.com>\n"
+"Language-Team: Assamese <>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 0.3\n"
+"X-Generator: Lokalize 0.2\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#. TRANSLATORS: this is an atomic transaction
-#: ../client/pk-console.c:235
+#: ../client/pk-console.c:238 ../client/pk-console-test.c:147
msgid "Transaction"
msgstr "লà§à¦¨-দà§à¦¨"
#. TRANSLATORS: this is the time the transaction was started in system timezone
-#: ../client/pk-console.c:237
+#: ../client/pk-console.c:240 ../client/pk-console-test.c:149
msgid "System time"
msgstr "বà§à¦¯à§±à¦¸à§à¦¥à¦¾à¦ªà§à§°à¦£à¦¾à¦²à§à§° সমà§"
#. TRANSLATORS: this is if the transaction succeeded or not
-#: ../client/pk-console.c:239
+#: ../client/pk-console.c:242 ../client/pk-console-test.c:151
msgid "Succeeded"
msgstr "সফল হ'ল"
-#. TRANSLATORS: if the repo is enabled
-#: ../client/pk-console.c:239 ../client/pk-console.c:406
+#: ../client/pk-console.c:242 ../client/pk-console-test.c:151
msgid "True"
msgstr "True"
-#: ../client/pk-console.c:239 ../client/pk-console.c:406
+#: ../client/pk-console.c:242 ../client/pk-console-test.c:151
msgid "False"
msgstr "False"
#. TRANSLATORS: this is the transactions role, e.g. "update-system"
#. TRANSLATORS: the trasaction role, e.g. update-system
-#: ../client/pk-console.c:241 ../src/pk-polkit-action-lookup.c:327
+#: ../client/pk-console.c:244 ../client/pk-console-test.c:153
+#: ../src/pk-polkit-action-lookup.c:327
msgid "Role"
msgstr "à¦à§à¦®à¦¿à¦à¦¾"
#. TRANSLATORS: this is The duration of the transaction
-#: ../client/pk-console.c:246
+#: ../client/pk-console.c:249 ../client/pk-console-test.c:158
msgid "Duration"
msgstr "à¦à¦¾à¦²à¦¾à§±à¦§à¦¿"
-#: ../client/pk-console.c:246
+#: ../client/pk-console.c:249 ../client/pk-console-test.c:158
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:250 ../src/pk-polkit-action-lookup.c:341
+#: ../client/pk-console.c:253 ../client/pk-console-test.c:162
+#: ../src/pk-polkit-action-lookup.c:341
msgid "Command line"
msgstr "à¦à¦¦à§à¦¶ শাৰà§"
#. TRANSLATORS: this is the user ID of the user that started the action
-#: ../client/pk-console.c:252
+#: ../client/pk-console.c:255 ../client/pk-console-test.c:164
msgid "User ID"
msgstr "বà§à¦¯à§±à¦¹à¦¾à§°à¦à§°à§à¦¤à¦¾à§° ID"
#. TRANSLATORS: this is the username, e.g. hughsie
-#: ../client/pk-console.c:259
+#: ../client/pk-console.c:262 ../client/pk-console-test.c:171
msgid "Username"
msgstr "বà§à¦¯à§±à¦¹à¦¾à§°à¦à§°à§à¦¤à¦¾à§° নাম"
#. TRANSLATORS: this is the users real name, e.g. "Richard Hughes"
-#: ../client/pk-console.c:263
+#: ../client/pk-console.c:266 ../client/pk-console-test.c:175
msgid "Real name"
msgstr "পà§à§°à¦à§à¦¤ নাম"
-#: ../client/pk-console.c:271
+#: ../client/pk-console.c:274 ../client/pk-console-test.c:183
msgid "Affected packages:"
msgstr "পà§à§°à¦à¦¾à§±à¦¿à¦¤ সৰà¦à§à¦à¦¾à¦®:"
-#: ../client/pk-console.c:273
+#: ../client/pk-console.c:276 ../client/pk-console-test.c:185
msgid "Affected packages: None"
msgstr "পà§à§°à¦à¦¾à§±à¦¿à¦¤ সৰà¦à§à¦à¦¾à¦®: à¦à§à¦¨à§ নাà¦"
+#. TRANSLATORS: When processing, we might have to remove other dependencies
+#: ../client/pk-console.c:337 ../client/pk-task-text.c:220
+msgid "The following packages have to be removed:"
+msgstr "তলৰ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ à¦à¦à¦¤à§°à¦¾à¦¬ লাà¦à¦¿à¦¬:"
+
+#. TRANSLATORS: When processing, we might have to install other dependencies
+#: ../client/pk-console.c:340 ../client/pk-task-text.c:225
+msgid "The following packages have to be installed:"
+msgstr "তলৰ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬ লাà¦à¦¿à¦¬:"
+
+#. TRANSLATORS: When processing, we might have to update other dependencies
+#: ../client/pk-console.c:343 ../client/pk-task-text.c:230
+msgid "The following packages have to be updated:"
+msgstr "তলৰ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ à¦à¦¨à§à¦¨à¦¤ à¦à§°à¦¿à¦¬ লাà¦à¦¿à¦¬:"
+
+#. TRANSLATORS: When processing, we might have to reinstall other dependencies
+#: ../client/pk-console.c:346 ../client/pk-task-text.c:235
+msgid "The following packages have to be reinstalled:"
+msgstr "তলৰ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹à¦ পà§à¦¨à¦ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬ লাà¦à¦¿à¦¬:"
+
+#. TRANSLATORS: When processing, we might have to downgrade other dependencies
+#: ../client/pk-console.c:349 ../client/pk-task-text.c:240
+msgid "The following packages have to be downgraded:"
+msgstr "নিমà§à¦¨à¦²à¦¿à¦à¦¿à¦¤ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ ডাà¦à¦¨à¦à§à§°à§à¦¡ à¦à§°à¦¾ à¦à§±à¦¶à§à¦¯à¦:"
+
#. TRANSLATORS: this is the distro, e.g. Fedora 10
-#: ../client/pk-console.c:298
+#: ../client/pk-console.c:363 ../client/pk-console-test.c:205
msgid "Distribution"
msgstr "বিতৰণ "
#. TRANSLATORS: this is type of update, stable or testing
-#: ../client/pk-console.c:300
+#: ../client/pk-console.c:365 ../client/pk-console-test.c:207
msgid "Type"
msgstr "ধৰণ"
#. TRANSLATORS: this is any summary text describing the upgrade
#. TRANSLATORS: this is the summary of the group
-#: ../client/pk-console.c:302 ../client/pk-console.c:325
+#. TRANSLATORS: this is any summary text describing the upgrade
+#. TRANSLATORS: this is the summary of the group
+#: ../client/pk-console.c:367 ../client/pk-console.c:390
+#: ../client/pk-console-test.c:209 ../client/pk-console-test.c:230
msgid "Summary"
msgstr "সাৰাà¦à¦¶"
#. TRANSLATORS: this is the group category name
-#: ../client/pk-console.c:314
+#: ../client/pk-console.c:379 ../client/pk-console-test.c:219
msgid "Category"
msgstr "বিà¦à¦¾à¦"
#. TRANSLATORS: this is group identifier
-#: ../client/pk-console.c:316
+#: ../client/pk-console.c:381 ../client/pk-console-test.c:221
msgid "ID"
msgstr "ID"
#. TRANSLATORS: this is the parent group
-#: ../client/pk-console.c:319
+#: ../client/pk-console.c:384 ../client/pk-console-test.c:224
msgid "Parent"
msgstr "পà§à§°à§à¦¨à§à¦"
#. TRANSLATORS: this is the name of the parent group
-#: ../client/pk-console.c:322
+#: ../client/pk-console.c:387 ../client/pk-console-test.c:227
msgid "Name"
msgstr "নাম"
#. TRANSLATORS: this is preferred icon for the group
-#: ../client/pk-console.c:328
+#: ../client/pk-console.c:393 ../client/pk-console-test.c:233
msgid "Icon"
msgstr "à¦à¦à¦à¦¨"
#. TRANSLATORS: this is a header for the package that can be updated
-#: ../client/pk-console.c:343
+#: ../client/pk-console.c:408 ../client/pk-console-test.c:247
msgid "Details about the update:"
msgstr "à¦à¦¨à§à¦¨à§à¦¨à§° বিৱৰণ:"
#. TRANSLATORS: details about the update, package name and version
#. TRANSLATORS: title, the names of the packages that the method is processing
-#: ../client/pk-console.c:345 ../src/pk-polkit-action-lookup.c:352
-#, fuzzy
+#: ../client/pk-console.c:410 ../client/pk-console-test.c:253
+#: ../client/pk-task-text.c:101 ../client/pk-task-text.c:153
+#: ../src/pk-polkit-action-lookup.c:352
msgid "Package"
msgid_plural "Packages"
msgstr[0] "সৰà¦à§à¦à¦¾à¦®"
-msgstr[1] "সৰà¦à§à¦à¦¾à¦®"
+msgstr[1] "সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹"
#. TRANSLATORS: details about the update, any packages that this update updates
-#: ../client/pk-console.c:348
+#: ../client/pk-console.c:413 ../client/pk-console-test.c:256
msgid "Updates"
msgstr "বà§à¦¯à§±à¦¸à§à¦¥à¦¾à¦ªà§à§°à¦£à¦¾à¦²à§ বৰà§à¦¤à§à¦¤à¦®à¦¾à¦¨à¦²à§ à¦
না তথà§à¦¯"
#. TRANSLATORS: details about the update, any packages that this update obsoletes
-#: ../client/pk-console.c:352
+#: ../client/pk-console.c:417 ../client/pk-console-test.c:260
msgid "Obsoletes"
msgstr "à¦
পà§à§°à¦à¦²à¦¿à¦¤"
#. TRANSLATORS: details about the update, the vendor URLs
-#: ../client/pk-console.c:356
+#: ../client/pk-console.c:421 ../client/pk-console-test.c:264
+#: ../client/pk-task-text.c:154
msgid "Vendor"
msgstr "বিà¦à§à§°à§à¦¤à¦¾"
#. TRANSLATORS: details about the update, the bugzilla URLs
-#: ../client/pk-console.c:360
+#: ../client/pk-console.c:425 ../client/pk-console-test.c:268
msgid "Bugzilla"
msgstr "Bugzilla"
#. TRANSLATORS: details about the update, the CVE URLs
-#: ../client/pk-console.c:364
+#: ../client/pk-console.c:429 ../client/pk-console-test.c:272
msgid "CVE"
msgstr "CVE"
#. TRANSLATORS: details about the update, if the package requires a restart
-#: ../client/pk-console.c:368
+#: ../client/pk-console.c:433 ../client/pk-console-test.c:276
msgid "Restart"
msgstr "পà§à¦¨à§°à¦¾à§°à¦®à§à¦"
#. TRANSLATORS: details about the update, any description of the update
-#: ../client/pk-console.c:372
+#: ../client/pk-console.c:437 ../client/pk-console-test.c:280
msgid "Update text"
msgstr "à¦à§à¦à§à¦¸à¦ à¦à¦¨à§à¦¨à¦¤ à¦à§°à¦"
#. TRANSLATORS: details about the update, the changelog for the package
-#: ../client/pk-console.c:376
+#: ../client/pk-console.c:441 ../client/pk-console-test.c:284
msgid "Changes"
msgstr "সলনিবà§à§°"
#. TRANSLATORS: details about the update, the ongoing state of the update
-#: ../client/pk-console.c:380
+#: ../client/pk-console.c:445 ../client/pk-console-test.c:288
msgid "State"
msgstr "à¦
ৱসà§à¦¥à¦¾"
#. TRANSLATORS: details about the update, date the update was issued
-#: ../client/pk-console.c:385
+#: ../client/pk-console.c:450 ../client/pk-console-test.c:293
msgid "Issued"
msgstr "পà§à§°à¦¦à¦¾à¦¨ à¦à§°à¦¾ হ'ল"
#. TRANSLATORS: details about the update, date the update was updated
-#: ../client/pk-console.c:390
+#: ../client/pk-console.c:455 ../client/pk-console-test.c:298
msgid "Updated"
msgstr "à¦à¦¨à§à¦¨à¦¤ à¦à§°à¦¾ হ'ল"
-#: ../client/pk-console.c:477 ../client/pk-console.c:479
+#. TRANSLATORS: if the repo is enabled
+#: ../client/pk-console.c:475 ../client/pk-console-test.c:316
+msgid "Enabled"
+msgstr "সà¦à§à§°à¦¿à§"
+
+#. TRANSLATORS: if the repo is disabled
+#: ../client/pk-console.c:478 ../client/pk-console-test.c:319
+msgid "Disabled"
+msgstr "নিষà§à¦à§à§°à¦¿à§"
+
+#: ../client/pk-console.c:555 ../client/pk-console.c:557
msgid "Percentage"
msgstr "শতাà¦à¦¶"
-#: ../client/pk-console.c:479
+#: ../client/pk-console.c:557
msgid "Unknown"
msgstr "à¦
à¦à§à¦à¦¾à¦¤"
#. TRANSLATORS: a package requires the system to be restarted
-#: ../client/pk-console.c:521
+#: ../client/pk-console.c:599 ../client/pk-console-test.c:341
msgid "System restart required by:"
msgstr "-ৰ দà§à¦¬à¦¾à§°à¦¾ বà§à¦¯à§±à¦¸à§à¦¥à¦¾à¦ªà§à§°à¦£à¦¾à¦²à§à§° পà§à¦¨à§°à¦¾à§°à¦®à§à¦à§° পà§à§°à§à§à¦à¦¨:"
#. TRANSLATORS: a package requires the session to be restarted
-#: ../client/pk-console.c:524
+#: ../client/pk-console.c:602 ../client/pk-console-test.c:344
msgid "Session restart required:"
msgstr "à¦
ধিবà§à¦¶à¦¨à§° পà§à¦¨à§°à¦¾à§°à¦®à§à¦à§° পà§à§°à§à§à¦à¦¨:"
#. TRANSLATORS: a package requires the system to be restarted due to a security update
-#: ../client/pk-console.c:527
-#, fuzzy
+#: ../client/pk-console.c:605 ../client/pk-console-test.c:347
msgid "System restart (security) required by:"
-msgstr "-ৰ দà§à¦¬à¦¾à§°à¦¾ বà§à¦¯à§±à¦¸à§à¦¥à¦¾à¦ªà§à§°à¦£à¦¾à¦²à§à§° পà§à¦¨à§°à¦¾à§°à¦®à§à¦à§° পà§à§°à§à§à¦à¦¨:"
+msgstr "à¦à¦¿à¦¹à§à¦¨à¦¿à¦¤ সৰà¦à§à¦à¦¾à¦®à§° à¦à§à¦·à§à¦¤à§à§°à¦¤ পà§à§°à¦£à¦¾à¦²à§ পà§à¦¨à§°à¦¾à§°à¦®à§à¦ (সà§à§°à¦à§à¦·à¦¾) à¦à§°à¦¾ à¦à§±à¦¶à§à¦¯à¦:"
#. TRANSLATORS: a package requires the session to be restarted due to a security update
-#: ../client/pk-console.c:530
-#, fuzzy
+#: ../client/pk-console.c:608 ../client/pk-console-test.c:350
msgid "Session restart (security) required:"
-msgstr "à¦
ধিবà§à¦¶à¦¨à§° পà§à¦¨à§°à¦¾à§°à¦®à§à¦à§° পà§à§°à§à§à¦à¦¨:"
+msgstr "à¦
ধিবà§à¦¶à¦¨ পà§à¦¨à§°à¦¾à§°à¦®à§à¦ (সà§à§°à¦à§à¦·à¦¾) à¦à§°à¦¾ à¦à§±à¦¶à§à¦¯à¦:"
#. TRANSLATORS: a package requires the application to be restarted
-#: ../client/pk-console.c:533
+#: ../client/pk-console.c:611 ../client/pk-console-test.c:353
msgid "Application restart required by:"
msgstr "-ৰ দà§à¦¬à¦¾à§°à¦¾ à¦
নà§à¦ªà§à§°à§à§à¦à§° পà§à¦¨à§°à¦¾à§°à¦®à§à¦à§° পà§à§°à§à§à¦à¦¨: "
#. TRANSLATORS: a package needs to restart their system
-#: ../client/pk-console.c:588
+#: ../client/pk-console.c:666 ../client/pk-console-test.c:704
msgid "Please restart the computer to complete the update."
msgstr "à¦à¦¨à§à¦¨à§à¦¨ সমà§à¦ªà§à§°à§à¦£ à¦à§°à¦¿à¦¬à¦²à§ à¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ à¦à¦®à§à¦ªà¦¿à¦à¦à¦¾à§° পà§à¦¨à§°à¦¾à§°à¦®à§à¦ à¦à§°à¦ ।"
#. TRANSLATORS: a package needs to restart the session
-#: ../client/pk-console.c:591
+#: ../client/pk-console.c:669 ../client/pk-console-test.c:707
msgid "Please logout and login to complete the update."
msgstr "à¦à¦¨à§à¦¨à§à¦¨ সমà§à¦ªà§à§°à§à¦£ à¦à§°à¦¿à¦¬à¦²à§ পà§à§°à¦¸à§à¦¥à¦¾à¦¨ à¦à§°à¦¿ পà§à§°à§±à§à¦¶ à¦à§°à¦ ।"
#. TRANSLATORS: a package needs to restart the application
-#: ../client/pk-console.c:594
+#: ../client/pk-console.c:672
msgid "Please restart the application as it is being used."
msgstr "বà§à¦¯à§±à¦¹à¦¾à§° à¦à§°à¦¾à§° সমà§à¦¤ à¦
নà§à¦ªà§à§°à§à§à¦ পà§à¦¨à§°à¦¾à§°à¦®à§à¦ à¦à§°à¦ ।"
#. TRANSLATORS: a package needs to restart their system (due to security)
-#: ../client/pk-console.c:597
-#, fuzzy
+#: ../client/pk-console.c:675 ../client/pk-console-test.c:710
msgid ""
"Please restart the computer to complete the update as important security "
"updates have been installed."
-msgstr "à¦à¦¨à§à¦¨à§à¦¨ সমà§à¦ªà§à§°à§à¦£ à¦à§°à¦¿à¦¬à¦²à§ à¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ à¦à¦®à§à¦ªà¦¿à¦à¦à¦¾à§° পà§à¦¨à§°à¦¾à§°à¦®à§à¦ à¦à§°à¦ ।"
+msgstr ""
+"সà§à§°à¦à§à¦·à¦¾ বিষà§à¦ à¦à§à§°à§à¦¤à§à¦¬à¦ªà§à§°à§à¦£ à¦à¦¨à§à¦¨à§à¦¨ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾ হà§à¦à§ । à¦à¦¨à§à¦¨à§à¦¨ সমà§à¦ªà§à§°à§à¦£ à¦à§°à¦¾à§° বাবৠà¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ à¦à¦®à§à¦ªà¦¿à¦à¦à¦¾à§° পà§à¦¨à§°à¦¾à§°à¦®à§à¦ "
+"à¦à§°à¦ ।"
#. TRANSLATORS: a package needs to restart the session (due to security)
-#: ../client/pk-console.c:600
-#, fuzzy
+#: ../client/pk-console.c:678 ../client/pk-console-test.c:713
msgid ""
"Please logout and login to complete the update as important security updates "
"have been installed."
-msgstr "à¦à¦¨à§à¦¨à§à¦¨ সমà§à¦ªà§à§°à§à¦£ à¦à§°à¦¿à¦¬à¦²à§ পà§à§°à¦¸à§à¦¥à¦¾à¦¨ à¦à§°à¦¿ পà§à§°à§±à§à¦¶ à¦à§°à¦ ।"
+msgstr ""
+"সà§à§°à¦à§à¦·à¦¾ বিষà§à¦ à¦à§à§°à§à¦¤à§à¦¬à¦ªà§à§°à§à¦£ à¦à¦¨à§à¦¨à§à¦¨ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾ হà§à¦à§ । à¦à¦¨à§à¦¨à§à¦¨ সমà§à¦ªà¦¨à§à¦¨ à¦à§°à¦¾à§° বাবৠà¦
নà§à¦à§à§°à¦¹ "
+"à¦à§°à¦¿ পà§à§°à¦¸à§à¦¥à¦¾à¦¨ à¦à§°à¦¿ পà§à¦¨à¦ পà§à§°à§±à§à¦¶ à¦à§°à¦ ।"
#. TRANSLATORS: The package is already installed on the system
-#: ../client/pk-console.c:727
+#: ../client/pk-console.c:810
#, c-format
msgid "The package %s is already installed"
msgstr "%s সৰà¦à§à¦à¦¾à¦® à¦à¦¤à¦¿à¦®à¦§à§à¦¯à§ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¿à¦¤"
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:735
+#: ../client/pk-console.c:818
#, c-format
msgid "The package %s could not be installed: %s"
msgstr "%s সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿: %s"
#. TRANSLATORS: There was a programming error that shouldn't happen. The detailed error follows
-#: ../client/pk-console.c:760 ../client/pk-console.c:783
-#: ../client/pk-console.c:879 ../client/pk-console.c:996
-#: ../client/pk-tools-common.c:62 ../client/pk-tools-common.c:81
-#: ../client/pk-tools-common.c:89
+#: ../client/pk-console.c:844 ../client/pk-console.c:892
+#: ../client/pk-console.c:916 ../client/pk-console.c:964
+#: ../client/pk-console.c:1060 ../client/pk-console.c:1173
+#: ../client/pk-console.c:1234 ../client/pk-tools-common.c:63
+#: ../client/pk-tools-common.c:82 ../client/pk-tools-common.c:90
#, c-format
msgid "Internal error: %s"
msgstr "à¦
à¦à§à¦¯à¦¨à§à¦¤à§°à§à¦£ তà§à§°à§à¦à¦¿: %s"
+#. TRANSLATORS: We are checking if it's okay to remove a list of packages
+#. ask the user
+#: ../client/pk-console.c:876 ../client/pk-console.c:948
+#: ../client/pk-console.c:1266 ../client/pk-task-text.c:299
+msgid "Proceed with changes?"
+msgstr "পৰিবৰà§à¦¤à¦¨à¦¸à¦®à§à¦¹ পà§à§°à§à§à¦ à¦à§°à¦¾ হ'ব নà§à¦à¦¿ ?"
+
+#. TRANSLATORS: There was an error removing the packages. The detailed error follows
+#: ../client/pk-console.c:881 ../client/pk-console.c:953
+msgid "The package install was canceled!"
+msgstr "সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨à§° à¦à¦¾à¦® বাতিল à¦à§°à¦¾ হà§à¦à§!"
+
#. TRANSLATORS: There was an error installing the packages. The detailed error follows
-#: ../client/pk-console.c:768 ../client/pk-console.c:1392
+#: ../client/pk-console.c:900 ../client/pk-console.c:1634
#, c-format
msgid "This tool could not install the packages: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§: %s"
#. TRANSLATORS: There was an error installing the files. The detailed error follows
-#: ../client/pk-console.c:791
+#: ../client/pk-console.c:972
#, c-format
msgid "This tool could not install the files: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ নথিপতà§à§°à¦¸à¦®à§à¦¹ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§: %s"
#. TRANSLATORS: The package name was not found in the installed list. The detailed error follows
-#: ../client/pk-console.c:847
+#: ../client/pk-console.c:1028
#, c-format
msgid "This tool could not remove %s: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ %s ঠà¦à¦à¦¤à§°à¦¾à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§: %s"
#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:870 ../client/pk-console.c:908
-#: ../client/pk-console.c:941
+#: ../client/pk-console.c:1051 ../client/pk-console.c:1089
+#: ../client/pk-console.c:1118
#, c-format
msgid "This tool could not remove the packages: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ à¦à¦à¦¤à§°à¦¾à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§: %s"
-#. TRANSLATORS: When removing, we might have to remove other dependencies
-#: ../client/pk-console.c:920
-msgid "The following packages have to be removed:"
-msgstr "তলৰ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ à¦à¦à¦¤à§°à¦¾à¦¬ লাà¦à¦¿à¦¬:"
-
#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#: ../client/pk-console.c:927
-msgid "Proceed removing additional packages?"
-msgstr "à¦
তিৰিà¦à§à¦¤ সৰà¦à§à¦à¦¾à¦® à¦à¦à¦¤à§°à§à§±à¦¾ à¦à¦¾à¦®à¦¤ à¦à¦à¦¬à¦¾à§à§à¦ ?"
+#: ../client/pk-console.c:1104
+msgid "Proceed with additional packages?"
+msgstr "à¦
তিৰিà¦à§à¦¤ সৰà¦à§à¦à¦¾à¦® à¦
পসাৰণ à¦à§°à¦¾ হ'ব নà§à¦à¦¿ ?"
-#. TRANSLATORS: We did not remove any packages
-#: ../client/pk-console.c:932
+#. TRANSLATORS: There was an error removing the packages. The detailed error follows
+#: ../client/pk-console.c:1109
msgid "The package removal was canceled!"
msgstr "সৰà¦à§à¦à¦¾à¦®à§° à¦à¦à¦¤à§°à§à§±à¦¾ বাতিল à¦à§°à¦¾ হ'ল!"
#. TRANSLATORS: The package name was not found in any software sources
-#: ../client/pk-console.c:973
+#: ../client/pk-console.c:1150
#, c-format
msgid "This tool could not download the package %s as it could not be found"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ %s সৰà¦à§à¦à¦¾à¦® ডাà¦à¦¨à§âলà§à¦¡ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§ à¦à¦¾à§°à¦£ তাঠপà§à§±à¦¾ ন'à¦'ল"
#. TRANSLATORS: Could not download the packages for some reason. The detailed error follows
-#: ../client/pk-console.c:1004
+#: ../client/pk-console.c:1181
#, c-format
msgid "This tool could not download the packages: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ ডাà¦à¦¨à§âলà§à¦¡ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1031 ../client/pk-console.c:1040
+#: ../client/pk-console.c:1213 ../client/pk-console.c:1225
+#: ../client/pk-console.c:1280
#, c-format
msgid "This tool could not update %s: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ %s à¦à¦¨à§à¦¨à¦¤ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§: %s"
+#. TRANSLATORS: There was an error removing the packages. The detailed error follows
+#: ../client/pk-console.c:1271
+msgid "The package update was canceled!"
+msgstr "সৰà¦à§à¦à¦¾à¦® à¦à¦¨à§à¦¨à§à¦¨à§° à¦à¦¾à¦® বাতিল à¦à§°à¦¾ হà§à¦à§!"
+
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1062 ../client/pk-console.c:1070
+#: ../client/pk-console.c:1304 ../client/pk-console.c:1312
#, c-format
msgid "This tool could not get the requirements for %s: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ %s ৰ পà§à§°à§à§à¦à¦¨à¦¤à¦¾ নাপালà§: %s"
#. TRANSLATORS: There was an error getting the dependencies for the package. The detailed error follows
-#: ../client/pk-console.c:1092 ../client/pk-console.c:1100
+#: ../client/pk-console.c:1334 ../client/pk-console.c:1342
#, c-format
msgid "This tool could not get the dependencies for %s: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ %s ৰ নিৰà§à¦à§°à¦¤à¦¾ নাপালà§: %s"
#. TRANSLATORS: There was an error getting the details about the package. The detailed error follows
-#: ../client/pk-console.c:1122 ../client/pk-console.c:1130
+#: ../client/pk-console.c:1364 ../client/pk-console.c:1372
#, c-format
msgid "This tool could not get package details for %s: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ %s ৰ à¦à¦¾à§°à¦£à§ সৰà¦à§à¦à¦¾à¦®à§° বিৱৰণ নাপালà§: %s"
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1152
+#: ../client/pk-console.c:1394
#, c-format
msgid "This tool could not find the files for %s: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ %s ৰ à¦à¦¾à§°à¦£à§ নথিপতà§à§° বিà¦à¦¾à§°à¦¿ নাপালà§: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1160
+#: ../client/pk-console.c:1402
#, c-format
msgid "This tool could not get the file list for %s: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ %s ৰ à¦à¦¾à§°à¦£à§ নথিপতà§à§°à§° তালিà¦à¦¾ বিà¦à¦¾à§°à¦¿ নাপালà§: %s"
#. TRANSLATORS: There was an error getting the list of packages. The filename follows
-#: ../client/pk-console.c:1182
+#: ../client/pk-console.c:1424
#, c-format
msgid "File already exists: %s"
msgstr "নথিপতà§à§° à¦à¦¤à¦¿à¦®à¦§à§à¦¯à§ à¦à¦à§: %s"
#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1187 ../client/pk-console.c:1243
-#: ../client/pk-console.c:1318
+#: ../client/pk-console.c:1429 ../client/pk-console.c:1485
+#: ../client/pk-console.c:1560
msgid "Getting package list"
msgstr "সৰà¦à§à¦à¦¾à¦®à§° তালিà¦à¦¾ পà§à§°à¦¾à¦ªà§à¦¤ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: There was an error getting the list of packages. The detailed error follows
-#: ../client/pk-console.c:1193 ../client/pk-console.c:1249
-#: ../client/pk-console.c:1324
+#: ../client/pk-console.c:1435 ../client/pk-console.c:1491
+#: ../client/pk-console.c:1566
#, c-format
msgid "This tool could not get package list: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ সৰà¦à§à¦à¦¾à¦®à§° তালিà¦à¦¾ নাপালà§: %s"
#. TRANSLATORS: There was an error saving the list
-#: ../client/pk-console.c:1204
+#: ../client/pk-console.c:1446
#, c-format
msgid "Failed to save to disk"
msgstr "ডিষà§à¦à¦²à§ ৰà¦à§à¦·à¦¾ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿"
#. TRANSLATORS: There was an error getting the list. The filename follows
-#: ../client/pk-console.c:1238 ../client/pk-console.c:1313
+#: ../client/pk-console.c:1480 ../client/pk-console.c:1555
#, c-format
msgid "File does not exist: %s"
msgstr "নথিপতà§à§° নাà¦: %s"
#. TRANSLATORS: header to a list of packages newly added
-#: ../client/pk-console.c:1270
+#: ../client/pk-console.c:1512
msgid "Packages to add"
msgstr "যà§à¦ à¦à§°à¦¿à¦¬ লà¦à¦¾ সৰà¦à§à¦à¦¾à¦®"
#. TRANSLATORS: header to a list of packages removed
-#: ../client/pk-console.c:1278
+#: ../client/pk-console.c:1520
msgid "Packages to remove"
msgstr "à¦à¦à¦¤à§°à¦¾à¦¬ লà¦à¦¾ সৰà¦à§à¦à¦¾à¦®"
#. TRANSLATORS: We didn't find any differences
-#: ../client/pk-console.c:1346
+#: ../client/pk-console.c:1588
#, c-format
msgid "No new packages need to be installed"
msgstr "নতà§à¦¨ সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾à§° পà§à§°à§à§à¦à¦¨ নাà¦"
#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1352
+#: ../client/pk-console.c:1594
msgid "To install"
msgstr "সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬ লà¦à¦¾"
#. TRANSLATORS: searching takes some time....
-#: ../client/pk-console.c:1364
+#: ../client/pk-console.c:1606
msgid "Searching for package: "
msgstr "সৰà¦à§à¦à¦¾à¦® বিà¦à§°à¦¾ হà§à¦à§: "
#. TRANSLATORS: package was not found -- this is the end of a string ended in ...
-#: ../client/pk-console.c:1368
+#: ../client/pk-console.c:1610
msgid "not found."
msgstr "পà§à§±à¦¾ নাযাৠ।"
#. TRANSLATORS: We didn't find any packages to install
-#: ../client/pk-console.c:1379
+#: ../client/pk-console.c:1621
#, c-format
msgid "No packages can be found to install"
msgstr "সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬à¦²à§ à¦à¦à§ সৰà¦à§à¦à¦¾à¦® পà§à§±à¦¾ নাযাà§"
#. TRANSLATORS: installing new packages from package list
#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
-#: ../client/pk-console.c:1385
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:886
+#: ../client/pk-console.c:1627
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:885
#, c-format
msgid "Installing packages"
msgstr "সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1421
+#: ../client/pk-console.c:1663
#, c-format
msgid "This tool could not find the update details for %s: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ %s ৰ à¦à¦¨à§à¦¨à§à¦¨à§° বিৱৰণ নাপালà§: %s"
#. TRANSLATORS: There was an error getting the details about the update for the package. The detailed error follows
-#: ../client/pk-console.c:1429
+#: ../client/pk-console.c:1671
#, c-format
msgid "This tool could not get the update details for %s: %s"
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ %s ৰ à¦à¦¨à§à¦¨à§à¦¨à§° বিৱৰণ নাপালà§: %s"
#. TRANSLATORS: This was an unhandled error, and we don't have _any_ context
-#: ../client/pk-console.c:1460
+#: ../client/pk-console.c:1702
msgid "Error:"
msgstr "তà§à§°à§à¦à¦¿"
#. TRANSLATORS: This a list of details about the package
-#: ../client/pk-console.c:1474
+#: ../client/pk-console.c:1716 ../client/pk-console-test.c:370
msgid "Package description"
msgstr "সৰà¦à§à¦à¦¾à¦®à§° বিৱৰণ"
#. TRANSLATORS: This a message (like a little note that may be of interest) from the transaction
-#: ../client/pk-console.c:1490
+#: ../client/pk-console.c:1732 ../client/pk-console-test.c:388
msgid "Message:"
msgstr "বাৰà§à¦¤à¦¾:"
#. TRANSLATORS: This a list files contained in the package
-#: ../client/pk-console.c:1518
+#: ../client/pk-console.c:1760 ../client/pk-console-test.c:407
msgid "Package files"
msgstr "সৰà¦à§à¦à¦¾à¦®à§° নথিপতà§à§°"
#. TRANSLATORS: This where the package has no files
-#: ../client/pk-console.c:1526
+#: ../client/pk-console.c:1768 ../client/pk-console-test.c:402
msgid "No files"
msgstr "à¦à§à¦¨à§ নথিপতà§à§° নাà¦"
#. TRANSLATORS: This a request for a GPG key signature from the backend, which the client will prompt for later
-#: ../client/pk-console.c:1549
+#: ../client/pk-console.c:1791
msgid "Repository signature required"
msgstr "à¦à§à¦¨à§ নথিপতà§à§° নাà¦"
#. TRANSLATORS: This a prompt asking the user to import the security key
-#: ../client/pk-console.c:1559
+#. ask the user
+#: ../client/pk-console.c:1801 ../client/pk-task-text.c:113
msgid "Do you accept this signature?"
msgstr "à¦à¦à§°à¦¾à¦²à§° à¦à¦¹à¦¿à§° পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: This is where the user declined the security key
-#: ../client/pk-console.c:1563
+#: ../client/pk-console.c:1805 ../client/pk-task-text.c:117
msgid "The signature was not accepted."
msgstr "à¦à¦¹à¦¿ à¦à§à§°à¦¹à¦£ à¦à§°à¦¾ ন'হ'ল ।"
#. TRANSLATORS: This a request for a EULA
-#: ../client/pk-console.c:1597
+#: ../client/pk-console.c:1839
msgid "End user license agreement required"
msgstr "বà§à¦¯à§±à¦¹à¦¾à§°à¦à§°à§à¦¤à¦¾à§° à¦
নà§à¦à§à¦à¦¾à¦ªà¦¤à§à§°à§° à¦à§à¦à§à¦¤à¦¿à§° পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: This a prompt asking the user to agree to the license
-#: ../client/pk-console.c:1604
+#: ../client/pk-console.c:1846
msgid "Do you agree to this license?"
msgstr "à¦à¦ªà§à¦¨à¦¿ à¦à¦ à¦
নà§à¦à§à¦à¦¾à¦ªà¦¤à§à§° মানি লৠনৠ?"
#. TRANSLATORS: This is where the user declined the license
-#: ../client/pk-console.c:1608
+#: ../client/pk-console.c:1850
msgid "The license was refused."
msgstr "à¦
নà§à¦à§à¦à¦¾à¦ªà¦¤à§à§° à¦
à¦à§à§°à¦¾à¦¹à§à¦¯ à¦à§°à¦¾ হৠ।"
#. TRANSLATORS: This is when the daemon crashed, and we are up shit creek without a paddle
-#: ../client/pk-console.c:1637
+#: ../client/pk-console.c:1879 ../client/pk-console-test.c:972
msgid "The daemon crashed mid-transaction!"
msgstr "লà§à¦¨-দà§à¦¨à§° মাà¦à¦¤à§ ডà§à¦®à¦¨ à¦à§à§°à§à¦¶à§à¦¬ হ'ল!"
#. TRANSLATORS: This is the header to the --help menu
-#: ../client/pk-console.c:1690
+#: ../client/pk-console.c:1932 ../client/pk-console-test.c:1006
msgid "PackageKit Console Interface"
msgstr "PackageKit à¦'নà§à¦¸à§à¦² সà¦à¦¯à§à¦à¦®à¦¾à¦§à§à¦¯à¦®"
#. these are commands we can use with pkcon
-#: ../client/pk-console.c:1692
+#: ../client/pk-console.c:1934 ../client/pk-console-test.c:1008
msgid "Subcommands:"
msgstr "à¦à¦ª-à¦à¦¦à§à¦¶:"
#. TRANSLATORS: command line argument, if we should show debugging information
#. TRANSLATORS: if we should show debugging data
-#: ../client/pk-console.c:1785 ../client/pk-generate-pack.c:185
-#: ../client/pk-monitor.c:128
+#: ../client/pk-console.c:2027 ../client/pk-console-test.c:1099
+#: ../client/pk-generate-pack.c:187 ../client/pk-monitor.c:128
+#: ../client/pk-monitor-test.c:282
#: ../contrib/command-not-found/pk-command-not-found.c:616
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:550
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:549
#: ../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:1788 ../client/pk-monitor.c:130
+#: ../client/pk-console.c:2030 ../client/pk-console-test.c:1102
+#: ../client/pk-monitor.c:130 ../client/pk-monitor-test.c:284
msgid "Show the program version and exit"
msgstr "à¦
নà§à¦ªà§à§°à§à§à¦à§° সà¦à¦¸à§à¦à§°à¦£ দà§à¦à§à§±à¦¾à¦ পà§à§°à¦¸à§à¦¥à¦¾à¦¨ à¦à§°à¦"
#. TRANSLATORS: command line argument, use a filter to narrow down results
-#: ../client/pk-console.c:1791
+#: ../client/pk-console.c:2033 ../client/pk-console-test.c:1105
msgid "Set the filter, e.g. installed"
msgstr "ফিলà§à¦à¦¾à§° নিৰà§à¦§à¦¾à§°à¦£ à¦à§°à¦, যà§à¦¨à§ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¿à¦¤"
#. TRANSLATORS: command line argument, work asynchronously
-#: ../client/pk-console.c:1794
+#: ../client/pk-console.c:2036 ../client/pk-console-test.c:1108
msgid "Exit without waiting for actions to complete"
msgstr "à¦à¦¾à¦® সমà§à¦ªà§à§°à§à¦£ নà¦à§°à¦¾à¦à§ পà§à§°à¦¸à§à¦¥à¦¾à¦¨ à¦à§°à¦"
#. TRANSLATORS: This is when we could not connect to the system bus, and is fatal
-#: ../client/pk-console.c:1821
+#: ../client/pk-console.c:2063
msgid "This tool could not connect to system DBUS."
msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ বà§à¦¯à§±à¦¸à§à¦¥à¦¾à¦ªà§à§°à¦£à¦¾à¦²à§à§° DBUS লৠসà¦à¦¯à§à¦ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§ ।"
#. TRANSLATORS: The user specified an incorrect filter
-#: ../client/pk-console.c:1911
+#: ../client/pk-console.c:2153 ../client/pk-console-test.c:1183
msgid "The filter specified was invalid"
msgstr "নিৰà§à¦§à¦¾à§°à¦¿à¦¤ ফিলà§à¦à¦¾à§° à¦
বà§à¦§"
#. TRANSLATORS: a search type can be name, details, file, etc
-#: ../client/pk-console.c:1930
+#: ../client/pk-console.c:2172 ../client/pk-console-test.c:1202
msgid "A search type is required, e.g. name"
msgstr "বিà¦à§°à¦¾à§° ধৰণৰ পà§à§°à§à§à¦à¦¨, যà§à¦¨à§ নাম"
#. TRANSLATORS: the user needs to provide a search term
-#: ../client/pk-console.c:1937 ../client/pk-console.c:1946
-#: ../client/pk-console.c:1955 ../client/pk-console.c:1964
+#: ../client/pk-console.c:2179 ../client/pk-console.c:2188
+#: ../client/pk-console.c:2197 ../client/pk-console.c:2206
+#: ../client/pk-console-test.c:1209 ../client/pk-console-test.c:1221
+#: ../client/pk-console-test.c:1233 ../client/pk-console-test.c:1245
msgid "A search term is required"
msgstr "বিà¦à¦¾à§°à¦¿à¦¬à¦²à§ শবà§à¦¦à§° পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: the search type was provided, but invalid
-#: ../client/pk-console.c:1971
+#: ../client/pk-console.c:2213 ../client/pk-console-test.c:1255
msgid "Invalid search type"
msgstr "à¦
বà§à¦§ বিà¦à§°à¦¾à§° ধৰণ"
#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console.c:1977
+#: ../client/pk-console.c:2219
msgid "A package name or filename to install is required"
msgstr "সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬à¦²à§ সৰà¦à§à¦à¦¾à¦®à§° নাম বা নথিপতà§à§°à§° নামৰ পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:1986
+#: ../client/pk-console.c:2228 ../client/pk-console-test.c:1282
msgid "A type, key_id and package_id are required"
msgstr "à¦à¦à¦¾ ধৰণ, key_id à¦à§°à§ package_id ৰ পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: the user did not specify what they wanted to remove
-#: ../client/pk-console.c:1995
+#: ../client/pk-console.c:2237 ../client/pk-console-test.c:1293
msgid "A package name to remove is required"
msgstr "à¦à¦à¦¤à§°à¦¾à¦¬à¦²à§ à¦à¦à¦¾ সৰà¦à§à¦à¦¾à¦®à§° নামৰ পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: the user did not specify anything about what to download or where
-#: ../client/pk-console.c:2003
-#, fuzzy
+#: ../client/pk-console.c:2245 ../client/pk-console-test.c:1302
msgid "A destination directory and the package names to download are required"
-msgstr "ডাà¦à¦¨à§âলà§à¦¡ à¦à§°à¦¿à¦¬à¦²à§ à¦à¦¨à§à¦¤à¦¬à§à¦¯à§° পà¦à§à¦à¦¿à¦à¦¾ à¦à§°à§ তাৰ পিà¦à¦¤ সৰà¦à§à¦à¦¾à¦®à§° নামৰ পà§à§°à§à§à¦à¦¨"
+msgstr "à¦à¦¨à§à¦¤à¦¬à§à¦¯ পà¦à§à¦à¦¿à¦à¦¾ à¦à§°à§ ডাà¦à¦¨à¦²à§à¦¡ à¦à§°à¦¾à§° à¦à¦¦à§à¦¦à§à¦¶à§à¦¯à§ সৰà¦à§à¦à¦¾à¦®à§° নাম à¦à¦²à§à¦²à§à¦ à¦à§°à¦¾ à¦à§±à¦¶à§à¦¯à¦"
#. TRANSLATORS: the directory does not exist, so we can't continue
-#: ../client/pk-console.c:2010
+#: ../client/pk-console.c:2252 ../client/pk-console-test.c:1309
msgid "Directory not found"
msgstr "পà¦à§à¦à¦¿à¦à¦¾ পà§à§±à¦¾ ন'à¦'ল"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2018
+#: ../client/pk-console.c:2260 ../client/pk-console-test.c:1318
msgid "A licence identifier (eula-id) is required"
msgstr "à¦
নà§à¦à§à¦à¦¾à¦ªà¦¤à§à§°à§° à¦à¦¿à¦¨à¦¾à¦à¦¿ à¦à¦à¦¾à§° (eula-id) পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2028
+#: ../client/pk-console.c:2270 ../client/pk-console-test.c:1329
msgid "A transaction identifier (tid) is required"
msgstr "লà§à¦¨-দà§à¦¨à§° à¦à¦¿à¦¨à¦¾à¦à¦¿ à¦à¦à¦¾à§° (tid) পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: The user did not specify a package name
-#: ../client/pk-console.c:2045
+#: ../client/pk-console.c:2287 ../client/pk-console-test.c:1350
msgid "A package name to resolve is required"
msgstr "বিশà§à¦²à§à¦·à¦£ à¦à§°à¦¿à¦¬à¦²à§ à¦à¦à¦¾ সৰà¦à§à¦à¦¾à¦®à§° নামৰ পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: The user did not specify a repository (software source) name
-#: ../client/pk-console.c:2054 ../client/pk-console.c:2063
+#: ../client/pk-console.c:2296 ../client/pk-console.c:2305
+#: ../client/pk-console-test.c:1361 ../client/pk-console-test.c:1372
msgid "A repository name is required"
msgstr "à¦à¦à¦¾ à¦à¦à§°à¦¾à¦²à§° নামৰ পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: The user didn't provide any data
-#: ../client/pk-console.c:2072
+#: ../client/pk-console.c:2314 ../client/pk-console-test.c:1383
msgid "A repo name, parameter and value are required"
msgstr "à¦à¦à¦¾ à¦à¦à§°à¦¾à¦²à§° নাম, সà§à¦¥à¦¿à¦¤à¦¿à¦®à¦¾à¦ª à¦à§°à§ মানৰ পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: The user didn't specify what action to use
-#: ../client/pk-console.c:2086
+#: ../client/pk-console.c:2328 ../client/pk-console-test.c:1401
msgid "An action, e.g. 'update-system' is required"
msgstr "à¦à¦à¦¾ à¦à¦¾à§°à§à¦¯à§à¦¯, যà§à¦¨à§ 'update-system' ৰ পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: The user specified an invalid action
-#: ../client/pk-console.c:2093
+#: ../client/pk-console.c:2335 ../client/pk-console-test.c:1408
msgid "A correct role is required"
msgstr "à¦à¦à¦¾ শà§à¦¦à§à¦§ à¦à§à¦®à¦¿à¦à¦¾à§° পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: we keep a database updated with the time that an action was last executed
-#: ../client/pk-console.c:2100
+#: ../client/pk-console.c:2342 ../client/pk-console-test.c:1415
msgid "Failed to get the time since this action was last completed"
msgstr "যà§à§±à¦¾à¦¬à¦¾à§°à§° à¦à¦¾à¦® শà§à¦· হà§à§±à¦¾à§° সমৠপাবলৠবিফল"
#. TRANSLATORS: The user did not provide a package name
#. TRANSLATORS: This is when the user fails to supply the package name
-#: ../client/pk-console.c:2110 ../client/pk-console.c:2122
-#: ../client/pk-console.c:2131 ../client/pk-console.c:2149
-#: ../client/pk-console.c:2158 ../client/pk-generate-pack.c:241
+#: ../client/pk-console.c:2352 ../client/pk-console.c:2364
+#: ../client/pk-console.c:2373 ../client/pk-console.c:2391
+#: ../client/pk-console.c:2400 ../client/pk-console-test.c:1425
+#: ../client/pk-console-test.c:1440 ../client/pk-console-test.c:1449
+#: ../client/pk-console-test.c:1469 ../client/pk-console-test.c:1478
+#: ../client/pk-generate-pack.c:243
msgid "A package name is required"
msgstr "à¦à¦à¦¾ সৰà¦à§à¦à¦¾à¦®à§° নামৰ পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: each package "provides" certain things, e.g. mime(gstreamer-decoder-mp3), the user didn't specify it
-#: ../client/pk-console.c:2140
+#: ../client/pk-console.c:2382 ../client/pk-console-test.c:1458
msgid "A package provide string is required"
msgstr "à¦à¦à¦¾ সৰà¦à§à¦à¦¾à¦® দিà¦à¦à¦¤à¦¾à§° শবà§à¦¦à§° পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: The user didn't specify a filename to create as a list
-#: ../client/pk-console.c:2167
+#: ../client/pk-console.c:2409
msgid "A list file name to create is required"
msgstr "সà§à¦·à§à¦à¦¿ à¦à§°à¦¿à¦¬ লà¦à¦¾ à¦à¦à¦¾ তালিà¦à¦¾à§° নথিপতà§à§°à§° নামৰ পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: The user didn't specify a filename to open as a list
-#: ../client/pk-console.c:2177 ../client/pk-console.c:2187
+#: ../client/pk-console.c:2419 ../client/pk-console.c:2429
msgid "A list file to open is required"
msgstr "à¦à§à¦²à¦¿à¦¬ লà¦à¦¾ à¦à¦à¦¾ তালিà¦à¦¾à§° নথিপতà§à§°à§° পà§à§°à§à§à¦à¦¨"
#. TRANSLATORS: The user tried to use an unsupported option on the command line
-#: ../client/pk-console.c:2241
+#: ../client/pk-console.c:2483 ../client/pk-console-test.c:1538
#, c-format
msgid "Option '%s' is not supported"
msgstr "'%s' বিà¦à¦²à§à¦ª à¦
সমৰà§à¦¥à¦¿à¦¤"
#. TRANSLATORS: User does not have permission to do this
-#: ../client/pk-console.c:2254
+#: ../client/pk-console.c:2496
msgid "Incorrect privileges for this operation"
msgstr "à¦à¦ à¦à¦¾à§°à§à¦¯à§à¦¯à§° বাবৠà¦
শà§à¦¦à§à¦§ সà§à¦¬à¦¿à¦§à¦¾"
#. TRANSLATORS: Generic failure of what they asked to do
-#: ../client/pk-console.c:2257
+#. /* TRANSLATORS: User does not have permission to do this */
+#. g_print ("%s\n", _("Incorrect privileges for this operation"));
+#. TRANSLATORS: Generic failure of what they asked to do
+#: ../client/pk-console.c:2499 ../client/pk-console-test.c:1550
msgid "Command failed"
msgstr "à¦à¦¦à§à¦¶ বিফল"
+#. TRANSLATORS: more than one package could be found that matched, to follow is a list of possible packages
+#: ../client/pk-console-test.c:523 ../client/pk-tools-common.c:131
+msgid "More than one package matches:"
+msgstr "à¦à¦à¦¾à¦§à¦¿à¦ সৰà¦à§à¦à¦¾à¦®à§° সà§à¦¤à§ মিল:"
+
+#. TRANSLATORS: This finds out which package in the list to use
+#: ../client/pk-console-test.c:532 ../client/pk-tools-common.c:138
+msgid "Please choose the correct package: "
+msgstr "à¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ শà§à¦¦à§à¦§ সৰà¦à§à¦à¦¾à¦® নিৰà§à¦¬à§à¦¬à¦¾à¦à¦¨ à¦à§°à¦:"
+
+#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
+#: ../client/pk-console-test.c:734
+#, c-format
+msgid "This tool could not find the 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-test.c:762
+#, 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-test.c:790 ../client/pk-console-test.c:818
+#, c-format
+msgid "This tool could not find the package: %s"
+msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ বিà¦à¦¾à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§: %s"
+
+#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
+#. 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-test.c:846 ../client/pk-console-test.c:872
+#: ../client/pk-console-test.c:898 ../client/pk-console-test.c:924
+#: ../client/pk-console-test.c:950
+#, c-format
+msgid "This tool could not find all the packages: %s"
+msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ সà¦à¦²à§ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ বিà¦à¦¾à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§: %s"
+
+#. TRANSLATORS: the user did not specify what they wanted to install
+#: ../client/pk-console-test.c:1261
+msgid "A package name to install is required"
+msgstr "সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬à¦²à§ সৰà¦à§à¦à¦¾à¦®à§° নামৰ পà§à§°à§à§à¦à¦¨"
+
+#. TRANSLATORS: the user did not specify what they wanted to install
+#: ../client/pk-console-test.c:1270
+msgid "A filename to install is required"
+msgstr "সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬à¦²à§ নথিপতà§à§°à§° নামৰ পà§à§°à§à§à¦à¦¨"
+
#. TRANSLATORS: This is the state of the transaction
-#: ../client/pk-generate-pack.c:101
+#: ../client/pk-generate-pack.c:103
msgid "Downloading"
msgstr "ডাà¦à¦¨à§âলà§à¦¡ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: This is when the main packages are being downloaded
-#: ../client/pk-generate-pack.c:121
+#: ../client/pk-generate-pack.c:123
msgid "Downloading packages"
msgstr "সৰà¦à§à¦à¦¾à¦® ডাà¦à¦¨à§âলà§à¦¡ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: This is when the dependency packages are being downloaded
-#: ../client/pk-generate-pack.c:126
+#: ../client/pk-generate-pack.c:128
msgid "Downloading dependencies"
msgstr "নিৰà§à¦à§°à¦¤à¦¾ ডাà¦à¦¨à§âলà§à¦¡ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: we can exclude certain packages (glibc) when we know they'll exist on the target
-#: ../client/pk-generate-pack.c:188
+#: ../client/pk-generate-pack.c:190
msgid "Set the file name of dependencies to be excluded"
msgstr "à¦à¦à¦à¦¾à¦£ à¦à§°à¦¿à¦¬ লà¦à¦¾ নিৰà§à¦à§°à¦¤à¦¾à§° নথিপতà§à§°à§° নাম নিৰà§à¦§à¦¾à§°à¦£ à¦à§°à¦"
#. TRANSLATORS: the output location
-#: ../client/pk-generate-pack.c:191
-msgid ""
-"The output file or directory (the current directory is used if ommitted)"
+#: ../client/pk-generate-pack.c:193
+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:194
+#: ../client/pk-generate-pack.c:196
msgid "The package to be put into the service pack"
msgstr "2 "
#. TRANSLATORS: put all pending updates in the pack
-#: ../client/pk-generate-pack.c:197
+#: ../client/pk-generate-pack.c:199
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:225
+#: ../client/pk-generate-pack.c:227
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:233
+#: ../client/pk-generate-pack.c:235
msgid "Both options selected."
msgstr "দà§à§à§à¦à¦¾ বিà¦à¦²à§à¦ªà¦ নিৰà§à¦¬à¦¾à¦à¦¿à¦¤ ।"
#. TRANSLATORS: This is when the user fails to supply the output
-#: ../client/pk-generate-pack.c:249
+#: ../client/pk-generate-pack.c:251
msgid "A output directory or file name is required"
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:267 ../client/pk-generate-pack.c:273
+#: ../client/pk-generate-pack.c:269 ../client/pk-generate-pack.c:275
msgid "The package manager cannot perform this type of operation."
msgstr "সৰà¦à§à¦à¦¾à¦®à§° পৰিà¦à¦¾à¦²à¦à§ à¦à¦¨à§ ধৰণৰ à¦à¦¾à¦® à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à§ ।"
#. TRANSLATORS: This is when the distro didn't include libarchive support into PK
-#: ../client/pk-generate-pack.c:280
+#: ../client/pk-generate-pack.c:282
msgid ""
"Service packs cannot be created as PackageKit was not built with libarchive "
"support."
-msgstr ""
+msgstr "libarchive সমৰà§à¦¥à¦¨ সহ PackageKit নিৰà§à¦®à¦¿à¦¤ নà§à¦¹à§à§±à¦¾à§° ফলত সà§à§±à¦¾ à¦à§à¦ সà§à¦·à§à¦à¦¿ à¦à§°à¦¾ সমà§à¦à§± নহৠ।"
#. TRANSLATORS: the user specified an absolute path, but didn't get the extension correct
-#: ../client/pk-generate-pack.c:291
+#: ../client/pk-generate-pack.c:293
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:307
+#: ../client/pk-generate-pack.c:309
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:310
+#: ../client/pk-generate-pack.c:312
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:323
+#: ../client/pk-generate-pack.c:325
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:333
+#: ../client/pk-generate-pack.c:335
msgid "Failed to open package list."
msgstr "সৰà¦à§à¦à¦¾à¦®à§° তালিà¦à¦¾ à¦à§à¦²à¦¿à¦¬à¦²à§ বিফল ।"
#. TRANSLATORS: The package name is being matched up to available packages
-#: ../client/pk-generate-pack.c:344
+#: ../client/pk-generate-pack.c:346
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:348
+#: ../client/pk-generate-pack.c:350
#, 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:365
+#: ../client/pk-generate-pack.c:367
msgid "Creating service pack..."
msgstr "সà§à§±à¦¾à§° à¦à§à¦ সà§à¦·à§à¦à¦¿ à¦à§°à¦¾ হà§à¦à§..."
#. TRANSLATORS: we succeeded in making the file
-#: ../client/pk-generate-pack.c:372
+#: ../client/pk-generate-pack.c:374
#, c-format
msgid "Service pack created '%s'"
msgstr "'%s' সà§à§±à¦¾à§° à¦à§à¦ সà§à¦·à§à¦à¦¿ à¦à§°à¦¾ হ'ল"
#. TRANSLATORS: we failed to make te file
-#: ../client/pk-generate-pack.c:377
+#: ../client/pk-generate-pack.c:379
#, c-format
msgid "Failed to create '%s': %s"
msgstr "'%s' সà§à¦·à§à¦à¦¿ à¦à§°à¦¿à¦¬à¦²à§ বিফল: %s"
#. TRANSLATORS: this is a program that monitors PackageKit
-#: ../client/pk-monitor.c:146
+#: ../client/pk-monitor.c:146 ../client/pk-monitor-test.c:299
msgid "PackageKit Monitor"
msgstr "PackageKit Monitor"
#: ../client/pk-monitor.c:183
msgid "Cannot show the list of transactions"
-msgstr ""
+msgstr "লà§à¦¨-দà§à¦¨à§° তালিà¦à¦¾ পà§à§°à¦¦à§°à§à¦¶à¦¨ à¦à§°à¦¿à¦¬à¦²à§ বà§à¦¯à§°à§à¦¥"
-#. TRANSLATORS: The package was not found in any software sources
-#: ../client/pk-tools-common.c:118
-#, c-format
-msgid "The package could not be found"
-msgstr "সৰà¦à§à¦à¦¾à¦® পà§à§±à¦¾ ন'à¦'ল"
+#: ../client/pk-monitor-test.c:204
+msgid "Failed to get transaction list"
+msgstr "লà§à¦¨-দà§à¦¨à§° তালিà¦à¦¾ পাবলৠবà§à¦¯à§°à§à¦¥"
-#. TRANSLATORS: more than one package could be found that matched, to follow is a list of possible packages
-#: ../client/pk-tools-common.c:130
-msgid "More than one package matches:"
-msgstr "à¦à¦à¦¾à¦§à¦¿à¦ সৰà¦à§à¦à¦¾à¦®à§° সà§à¦¤à§ মিল:"
+#: ../client/pk-monitor-test.c:235
+msgid "Failed to get daemon state"
+msgstr "ডà§à¦®à¦¨à§° à¦
ৱসà§à¦¥à¦¾ পাবলৠবà§à¦¯à§°à§à¦¥"
-#. TRANSLATORS: This finds out which package in the list to use
-#: ../client/pk-tools-common.c:137
-msgid "Please choose the correct package: "
-msgstr "à¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ শà§à¦¦à§à¦§ সৰà¦à§à¦à¦¾à¦® নিৰà§à¦¬à§à¦¬à¦¾à¦à¦¨ à¦à§°à¦:"
+#. ask the user
+#: ../client/pk-task-text.c:64
+msgid "Do you want to allow installing of unsigned software?"
+msgstr "à¦à¦ªà§à¦¨à¦¿ সà§à¦¬à¦¾à¦à§à¦·à§° নà¦à§°à¦¾ à¦à¦¾à¦²à¦¨à¦¾à¦à§à¦à¦¾à¦¨ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾à§° à¦
নà§à¦®à¦¤à¦¿ দিব à¦à§à¦à§ নৠ?"
+
+#: ../client/pk-task-text.c:68
+msgid "The unsigned software will not be installed."
+msgstr "à¦
সà§à¦¬à¦¾à¦à§à¦·à§°à¦¿à¦¤ সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿ ।"
+
+#: ../client/pk-task-text.c:100
+msgid "Software source signature required"
+msgstr "à¦à¦¾à¦²à¦¨à¦¾à¦à§à¦à¦¾à¦¨ à¦à§à¦¸à§° à¦à¦¹à¦¿à§° পà§à§°à§à§à¦à¦¨"
+
+#: ../client/pk-task-text.c:102
+msgid "Software source name"
+msgstr "à¦à¦¾à¦²à¦¨à¦¾à¦à§à¦à¦¾à¦¨à§° à¦à§à¦¸à§° নাম"
+
+#: ../client/pk-task-text.c:103
+msgid "Key URL"
+msgstr "à¦à¦¾à¦¬à¦¿à§° URL"
+
+#: ../client/pk-task-text.c:104
+msgid "Key user"
+msgstr "à¦à¦¾à¦¬à¦¿à§° বà§à¦¯à§±à¦¹à¦¾à§°à¦à§°à§à¦¤à¦¾"
+
+#: ../client/pk-task-text.c:105
+msgid "Key ID"
+msgstr "à¦à¦¾à¦¬à¦¿à§° ID"
+
+#: ../client/pk-task-text.c:106
+msgid "Key fingerprint"
+msgstr "à¦à¦¾à¦¬à¦¿à§° fingerprint"
+
+#: ../client/pk-task-text.c:107
+msgid "Key Timestamp"
+msgstr "à¦à¦¾à¦¬à¦¿à§° Timestamp"
+
+#: ../client/pk-task-text.c:151
+msgid "End user licence agreement required"
+msgstr "বà§à¦¯à§±à¦¹à¦¾à§°à¦à§°à§à¦¤à¦¾à§° à¦
নà§à¦à§à¦à¦¾à¦ªà¦¤à§à§°à§° à¦à§à¦à§à¦¤à¦¿à§° পà§à§°à§à§à¦à¦¨"
+
+#: ../client/pk-task-text.c:152
+msgid "EULA ID"
+msgstr "EULA ID"
+
+#: ../client/pk-task-text.c:155
+msgid "Agreement"
+msgstr "à¦
নà§à¦à§à¦à¦¾à¦ªà¦¤à§à§°"
+
+#. ask the user
+#: ../client/pk-task-text.c:161
+msgid "Do you accept this agreement?"
+msgstr "à¦à¦ªà§à¦¨à¦¿ à¦à¦ à¦
নà§à¦à§à¦à¦¾à¦ªà¦¤à§à§° সà§à¦¬à§à¦à¦¾à§° à¦à§°à§à¦¨à§ ?"
+
+#: ../client/pk-task-text.c:165
+msgid "The agreement was not accepted."
+msgstr "à¦
নà§à¦à§à¦à¦¾à¦à§à¦à§à¦¤à¦¿ à¦à§à§°à¦¹à¦£ à¦à§°à¦¾ ন'হ'ল ।"
+
+#: ../client/pk-task-text.c:194
+msgid "Media change required"
+msgstr "মিডিà§à¦¾ সলনি à¦à§°à¦¾à§° পà§à§°à§à§à¦à¦¨"
-#: ../client/pk-tools-common.c:162
+#: ../client/pk-task-text.c:195
+msgid "Media type"
+msgstr "মিডিà§à¦¾ ধৰন"
+
+#: ../client/pk-task-text.c:196
+msgid "Media ID"
+msgstr "মিডিà§à¦¾ ID"
+
+#: ../client/pk-task-text.c:197
+msgid "Text"
+msgstr "à¦à§à¦à§à¦¸à¦"
+
+#. ask the user
+#: ../client/pk-task-text.c:201
+msgid "Please insert the correct media"
+msgstr "à¦
নà§à¦à§à§°à¦¹ à¦à§°à¦¿ শà§à¦¦à§à¦§ মিডিà§à¦¾ à¦à§°à¦¾à¦à¦"
+
+#: ../client/pk-task-text.c:205
+msgid "The correct media was not inserted."
+msgstr "শà§à¦¦à§à¦§ মিডিà§à¦¾ দিà§à¦¾ হà§à§±à¦¾ নাà¦à¦¿à¦² ।"
+
+#: ../client/pk-task-text.c:303
+msgid "The transaction did not proceed."
+msgstr "লà§à¦¨-দà§à¦¨ à¦à¦ নাবাà§à¦¿à¦²à§ ।"
+
+#: ../client/pk-text.c:50
#, c-format
msgid "Please enter a number from 1 to %i: "
msgstr "১ ৰ পৰা %i লৠà¦à¦à¦¾ সà¦à¦à§à¦¯à¦¾ দিà§à¦: "
+#. TRANSLATORS: The package was not found in any software sources
+#: ../client/pk-tools-common.c:119
+#, c-format
+msgid "The package could not be found"
+msgstr "সৰà¦à§à¦à¦¾à¦® পà§à§±à¦¾ ন'à¦'ল"
+
#. TRANSLATORS: when we are getting data from the daemon
#: ../contrib/browser-plugin/pk-plugin-install.c:466
msgid "Getting package information..."
@@ -887,24 +1086,22 @@ msgstr "সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾ হà§à¦à§..."
#. TRANSLATORS: downloading repo data so we can search
#: ../contrib/command-not-found/pk-command-not-found.c:349
msgid "Downloading details about the software sources."
-msgstr ""
+msgstr "à¦à¦¾à¦²à¦¨à¦¾à¦à§à¦à¦¾à¦¨à§° à¦à§à¦¸à¦¸à§à¦¥à¦² সমà§à¦ªà§°à§à¦à§ বিৱৰণ ডাà¦à¦¨à¦²à§à¦¡ à¦à§°à¦¾ হà§à¦à§ ।"
#. TRANSLATORS: downloading file lists so we can search
#: ../contrib/command-not-found/pk-command-not-found.c:353
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:357
-#, fuzzy
msgid "Waiting for package manager lock."
-msgstr "সৰà¦à§à¦à¦¾à¦®à§° নাম বিà¦à§°à¦¾ হà§à¦à§ ।"
+msgstr "সৰà¦à§à¦à¦¾à¦® পৰিà¦à¦¾à¦²à¦¨ বà§à¦¯à§±à¦¸à§à¦¥à¦¾à§° লঠপà§à§°à¦¾à¦ªà§à¦¤ à¦à§°à¦¾à§° à¦
পà§à¦à§à¦·à¦¾ à¦à¦²à¦¿à¦à§ ।"
#. TRANSLATORS: loading package cache so we can search
#: ../contrib/command-not-found/pk-command-not-found.c:361
-#, fuzzy
msgid "Loading list of packages."
-msgstr "সৰà¦à§à¦à¦¾à¦® ডাà¦à¦¨à§âলà§à¦¡ à¦à§°à¦¾ হà§à¦à§"
+msgstr "সৰà¦à§à¦à¦¾à¦®à§° তালিà¦à¦¾ লà§à¦¡ à¦à§°à¦¾ হà§à¦à§ ।"
#. TRANSLATORS: we failed to find the package, this shouldn't happen
#: ../contrib/command-not-found/pk-command-not-found.c:420
@@ -977,286 +1174,273 @@ msgstr "সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬à¦²à§ à¦à¦à¦¾ সৰà¦à§à¦à¦¾
#. TRANSLATORS: we are starting to install the packages
#: ../contrib/debuginfo-install/pk-debuginfo-install.c:187
-#, fuzzy
msgid "Starting install"
-msgstr "সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬ লà¦à¦¾"
+msgstr "সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦®à§à¦ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: we couldn't find the package name, non-fatal
#: ../contrib/debuginfo-install/pk-debuginfo-install.c:397
-#, fuzzy, c-format
+#, c-format
msgid "Failed to find the package %s, or already installed: %s"
-msgstr "%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:553
-msgid ""
-"Don't actually install any packages, only simulate what would be installed"
-msgstr ""
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:552
+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:556
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:555
msgid "Do not install dependencies of the core packages"
-msgstr ""
+msgstr "মà§à¦² সৰà¦à§à¦à¦¾à¦®à§° নিৰà§à¦à§°à¦¤à¦¾à§° সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾ ন'হ'ব"
#. command line argument, do we operate quietly
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:559
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:558
msgid "Do not display information or progress"
-msgstr ""
+msgstr "তথà§à¦¯ বা পà§à§°à¦à¦¤à¦¿ পà§à§°à¦¦à§°à§à¦¶à¦¨ à¦à§°à¦¾ ন'হ'ব"
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:577
-#, fuzzy
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:576
msgid "PackageKit Debuginfo Installer"
-msgstr "PackageKit à¦'নà§à¦¸à§à¦² সà¦à¦¯à§à¦à¦®à¦¾à¦§à§à¦¯à¦®"
+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:589
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:588
+#, c-format
msgid "ERROR: Specify package names to install."
-msgstr "নতà§à¦¨ সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾à§° পà§à§°à§à§à¦à¦¨ নাà¦"
+msgstr "ERROR: সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨à§° বাবৠসৰà¦à§à¦à¦¾à¦®à§° নাম নিৰà§à¦§à¦¾à§°à¦£ à¦à§°à¦ ।"
#. TRANSLATORS: we are getting the list of repositories
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:623
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:622
+#, c-format
msgid "Getting sources list"
-msgstr "সৰà¦à§à¦à¦¾à¦®à§° তালিà¦à¦¾ পà§à§°à¦¾à¦ªà§à¦¤ à¦à§°à¦¾ হà§à¦à§"
+msgstr "à¦à§à¦¸à§° তালিà¦à¦¾ পà§à§°à¦¾à¦ªà§à¦¤ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: all completed 100%
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:641
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:681
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:716
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:800
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:844
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:911
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:955
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:640
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:680
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:715
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:799
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:843
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:910
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:954
#, c-format
msgid "OK."
-msgstr ""
+msgstr "ঠিঠà¦à¦à§ ।"
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:644
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:643
#, 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:651
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:650
#, c-format
msgid "Finding debugging sources"
-msgstr ""
+msgstr "ডিবাঠà¦à§°à¦¿à¦¬à¦²à§ বà§à¦¯à§±à¦¹à¦¾à§°à¦¯à§à¦à§à¦¯ à¦à§à¦¸à¦¸à§à¦¥à¦² à¦
নà§à¦¸à¦¨à§à¦§à¦¾à¦¨ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:684
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:683
#, 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:691
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:690
#, c-format
msgid "Enabling debugging sources"
-msgstr ""
+msgstr "ডিবাঠà¦à§°à¦¿à¦¬à¦²à§ বà§à¦¯à§±à¦¹à¦¾à§°à¦¯à§à¦à§à¦¯ à¦à§à¦¸à¦¸à§à¦¥à¦² সà¦à§à§°à¦¿à§ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: operation was not successful
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:701
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:785
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:829
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:896
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:940
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:700
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:784
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:828
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:895
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:939
msgid "FAILED."
-msgstr ""
+msgstr "বà§à¦¯à§°à§à¦¥ ।"
#. TRANSLATORS: tell the user how many we enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:719
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:718
#, 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:726
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:725
+#, 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:738
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:737
+#, c-format
msgid "Failed to find the package %s: %s"
-msgstr "'%s' সৰà¦à§à¦à¦¾à¦® বিà¦à¦¾à§°à¦¿ পà§à§±à¦¾ ন'à¦'ল: %s"
+msgstr "%s সৰà¦à§à¦à¦¾à¦® পà§à§±à¦¾ নাযাà§: %s"
#. TRANSLATORS: we couldn't find the debuginfo package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:761
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:760
+#, c-format
msgid "Failed to find the debuginfo package %s: %s"
-msgstr "'%s' সৰà¦à§à¦à¦¾à¦® বিà¦à¦¾à§°à¦¿ পà§à§±à¦¾ ন'à¦'ল: %s"
+msgstr "%s debuginfo সৰà¦à§à¦à¦¾à¦® পà§à§±à¦¾ নাযাà§: %s"
#. TRANSLATORS: no debuginfo packages could be found to be installed
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:789
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:788
+#, 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:803
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:802
+#, 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:819
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:818
#, 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:832
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:831
+#, c-format
msgid "Could not find dependant packages: %s"
-msgstr "'%s' সৰà¦à§à¦à¦¾à¦® বিà¦à¦¾à§°à¦¿ পà§à§±à¦¾ ন'à¦'ল: %s"
+msgstr "নিৰà§à¦à§°à¦¶à§à¦² সৰà¦à§à¦à¦¾à¦® পà§à§±à¦¾ নাযাà§: %s"
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:848
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:847
#, 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:852
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:851
+#, 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:861
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:860
+#, 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:874
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:873
+#, c-format
msgid "Not installing packages in simulate mode"
-msgstr "সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾ হà§à¦à§"
+msgstr "à¦
নà§à¦à§°à¦£à§° মà§à¦¡à¦¤ à¦à§à¦¨à§ সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾ হà§à§±à¦¾ নাà¦"
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:899
-#, fuzzy, c-format
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:898
+#, c-format
msgid "Could not install packages: %s"
-msgstr "à¦à¦ সৰà¦à§à¦à¦¾à¦®à§ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¿à¦¬ নà§à§±à¦¾à§°à¦¿à¦²à§: %s"
+msgstr "সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾ নাযাà§: %s"
#. TRANSLATORS: we are now disabling all debuginfo repos we previously enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:931
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:930
#, 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:943
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:942
#, 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:958
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:957
#, 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
-#, fuzzy
msgid "Failed to open file"
-msgstr "নথিপতà§à§° বিà¦à¦¾à§°à¦¿à¦¬ পৰা ন'à¦'ল"
+msgstr "নথিপতà§à§° à¦à§à¦²à¦¿à¦¬à¦²à§ বà§à¦¯à§°à§à¦¥"
#. TRANSLATORS: could not write to the device
#: ../contrib/device-rebind/pk-device-rebind.c:70
-#, fuzzy
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
-#, fuzzy
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
-#, fuzzy
msgid "Device could not be found"
-msgstr "সৰà¦à§à¦à¦¾à¦® পà§à§±à¦¾ ন'à¦'ল"
+msgstr "যনà§à¦¤à§à§° পà§à§±à¦¾ নাযাà§"
#. TRANSLATORS: we failed to release the current driver
#: ../contrib/device-rebind/pk-device-rebind.c:202
-#, fuzzy
msgid "Failed to unregister driver"
-msgstr "পà¦à§à¦à¦¿à¦à¦¾ সà§à¦·à§à¦à¦¿ à¦à§°à¦¿à¦¬à¦²à§ বিফল:"
+msgstr "à¦à¦¾à¦²à¦à§° নিবনà§à¦§à¦¨ বাতিল à¦à§°à¦¿à¦¬à¦²à§ বà§à¦¯à§°à§à¦¥"
#. TRANSLATORS: we failed to bind the old driver
#: ../contrib/device-rebind/pk-device-rebind.c:211
-#, fuzzy
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
-#, fuzzy
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
msgid "Don't actually touch the hardware, only simulate what would be done"
-msgstr ""
+msgstr "যানà§à¦¤à§à§°à¦¿à¦ সামà¦à§à§°à§à¦¤ à¦à§à¦¨à§ পৰিবৰà§à¦¤à¦¨ à¦à§°à¦¾ ন'হ'ব, নিৰà§à¦§à¦¾à§°à¦¿à¦¤ à¦à¦¾à¦®à§° à¦
à¦à¦² à¦
নà§à¦à§°à¦£ à¦à§°à¦¾ হ'ব"
#. TRANSLATORS: command line option: a list of files to install
#: ../contrib/device-rebind/pk-device-rebind.c:299
msgid "Device paths"
-msgstr ""
+msgstr "যনà§à¦¤à§à§°à§° পাথ"
#. TRANSLATORS: tool that gets called when the device needs reloading after installing firmware
#: ../contrib/device-rebind/pk-device-rebind.c:314
-#, fuzzy
msgid "PackageKit Device Reloader"
-msgstr "PackageKit সà§à§±à¦¾à§° à¦à§à¦"
+msgstr "PackageKit যনà§à¦¤à§à§° ৰি-লà§à¦¡à¦¾à§°"
#. TRANSLATORS: user did not specify a valid device sysfs path
#: ../contrib/device-rebind/pk-device-rebind.c:322
msgid "You need to specify at least one valid device path"
-msgstr ""
+msgstr "à¦
নà§à¦¤à¦¤à¦ à¦à¦à¦¾ বà§à¦§ যনà§à¦¤à§à§° পাথ à¦à¦²à§à¦²à§à¦ à¦à§°à¦¾ à¦à§±à¦¶à§à¦¯à¦"
#. TRANSLATORS: user did not specify a valid device sysfs path
#: ../contrib/device-rebind/pk-device-rebind.c:332
msgid "This script can only be used by the root user"
-msgstr ""
+msgstr "à¦
à¦à¦² root বà§à¦¯à§±à¦¹à¦¾à§°à¦à§°à§à¦¤à¦¾ দà§à¦¬à¦¾à§°à¦¾ à¦à¦ সà§à¦à§à§°à¦¿à¦ªà§à¦ বà§à¦¯à§±à¦¹à¦¾à§° à¦à§°à¦¾ যাব"
#. TRANSLATORS: we're going to verify the path first
#: ../contrib/device-rebind/pk-device-rebind.c:341
msgid "Verifying device path"
-msgstr ""
+msgstr "যনà§à¦¤à§à§°à§° পাথ পৰà§à¦à§à¦·à¦¾ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: user did not specify a device sysfs path that exists
#: ../contrib/device-rebind/pk-device-rebind.c:346
-#, fuzzy
msgid "Failed to verify device path"
-msgstr "নথিপতà§à§° বিà¦à¦¾à§°à¦¿à¦¬ পৰা ন'à¦'ল"
+msgstr "যনà§à¦¤à§à§°à§° পাথ পৰà§à¦à§à¦·à¦¾ à¦à§°à¦¿à¦¬à¦²à§ বà§à¦¯à§°à§à¦¥"
#. TRANSLATORS: we're going to try
#: ../contrib/device-rebind/pk-device-rebind.c:360
msgid "Attempting to rebind device"
-msgstr ""
+msgstr "যনà§à¦¤à§à§° rebind à¦à§°à¦¾à§° পà§à§°à¦à§à¦·à§à¦ à¦à§°à¦¾ হà§à¦à§"
#. TRANSLATORS: we failed to release the current driver
#: ../contrib/device-rebind/pk-device-rebind.c:365
-#, fuzzy
msgid "Failed to rebind device"
-msgstr "পà¦à§à¦à¦¿à¦à¦¾ সà§à¦·à§à¦à¦¿ à¦à§°à¦¿à¦¬à¦²à§ বিফল:"
+msgstr "যনà§à¦¤à§à§° rebind à¦à§°à¦¿à¦¬à¦²à§ বà§à¦¯à§°à§à¦¥"
#: ../data/packagekit-catalog.xml.in.h:1
msgid "PackageKit Catalog"
@@ -1285,8 +1469,7 @@ msgid "Authentication is required to accept a EULA"
msgstr "à¦à¦à¦¾ EULA à¦à§à§°à¦¹à¦£ à¦à§°à¦¿à¦¬à¦²à§ পà§à§°à¦®à¦¾à¦£à§à¦à§°à¦£à§° পà§à§°à§à§à¦à¦¨"
#: ../policy/org.freedesktop.packagekit.policy.in.h:9
-msgid ""
-"Authentication is required to cancel a task that was not started by yourself"
+msgid "Authentication is required to cancel a task that was not started by yourself"
msgstr "à¦à¦ªà§à¦¨à¦¿ নিà¦à§à¦ à¦à§°à¦®à§à¦ নà¦à§°à¦¾ à¦à¦¾à§°à§à¦¯à§à¦¯ à¦à¦à¦¾ বাতিল à¦à§°à¦¿à¦¬à¦²à§ পà§à§°à¦®à¦¾à¦£à§à¦à§°à¦£à§° পà§à§°à§à§à¦à¦¨"
#: ../policy/org.freedesktop.packagekit.policy.in.h:10
@@ -1314,9 +1497,8 @@ msgid "Authentication is required to refresh the system sources"
msgstr "বà§à¦¯à§±à¦¸à§à¦¥à¦¾à¦ªà§à§°à¦£à¦¾à¦²à§à§° সমà§à¦ªà¦¦à¦ সতà§à¦ à¦à§°à¦¿à¦¬à¦²à§ পà§à§°à¦®à¦¾à¦£à§à¦à§°à¦£à§° পà§à§°à§à§à¦à¦¨"
#: ../policy/org.freedesktop.packagekit.policy.in.h:15
-#, fuzzy
msgid "Authentication is required to reload the device with a new driver"
-msgstr "বà§à¦¯à§±à¦¸à§à¦¥à¦¾à¦ªà§à§°à¦£à¦¾à¦²à§à§° সমà§à¦ªà¦¦à¦ সতà§à¦ à¦à§°à¦¿à¦¬à¦²à§ পà§à§°à¦®à¦¾à¦£à§à¦à§°à¦£à§° পà§à§°à§à§à¦à¦¨"
+msgstr "নতà§à¦¨ à¦à¦¾à¦²à¦ সহ যনà§à¦¤à§à§°à¦à¦¿ পà§à¦¨à¦ লà§à¦¡ à¦à§°à¦¾à§° বাবৠà¦
নà§à¦®à§à¦¦à¦¨ পà§à§°à§à§à¦à¦¨"
#: ../policy/org.freedesktop.packagekit.policy.in.h:16
msgid "Authentication is required to remove packages"
@@ -1391,7 +1573,7 @@ msgstr "বà§à¦¯à§±à¦¸à§à¦¥à¦¾à¦ªà§à§°à¦£à¦¾à¦²à§à§° সমà§à¦ªà¦¦à¦ সà
#.
#: ../policy/org.freedesktop.packagekit.policy.in.h:58
msgid "Reload a device"
-msgstr ""
+msgstr "যনà§à¦¤à§à§° পà§à¦¨à¦ লà§à¦¡ à¦à§°à¦"
#. SECURITY:
#. - Normal users require admin authentication to remove packages as
@@ -1464,8 +1646,7 @@ msgstr "à¦à¦²à¦¾à¦¬ পৰা à¦
নà§à¦ªà§à§°à§à§à¦ শà§à¦¦à§à¦§ বà§
msgid ""
"The org.freedesktop.PackageKit.conf file is not installed in the system "
"directory:"
-msgstr ""
-"org.freedesktop.PackageKit.conf নথিপতà§à§° বà§à¦¯à§±à¦¸à§à¦¥à¦¾à¦ªà§à§°à¦£à¦¾à¦²à§à§° পà¦à§à¦à¦¿à¦à¦¾à¦¤ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¿à¦¤ নহà§:"
+msgstr "org.freedesktop.PackageKit.conf নথিপতà§à§° বà§à¦¯à§±à¦¸à§à¦¥à¦¾à¦ªà§à§°à¦£à¦¾à¦²à§à§° পà¦à§à¦à¦¿à¦à¦¾à¦¤ সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¿à¦¤ নহà§:"
#. TRANSLATORS: a backend is the system package tool, e.g. yum, apt
#: ../src/pk-main.c:205
@@ -1513,43 +1694,50 @@ msgid "Error trying to start:"
msgstr "à¦à§°à¦®à§à¦ à¦à§°à¦¿à¦¬à¦²à§ à¦à§à¦·à§à¦à¦¾ à¦à§°à§à¦à¦¤à§ à¦à§à¦²:"
#: ../src/pk-polkit-action-lookup.c:147
-#, fuzzy
msgid "To install debugging packages, extra sources need to be enabled"
-msgstr "নতà§à¦¨ সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾à§° পà§à§°à§à§à¦à¦¨ নাà¦"
+msgstr "ডিবাà¦à§° বাবৠবà§à¦¯à§±à¦¹à¦¾à§°à¦¯à§à¦à§à¦¯ সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ à¦à§°à¦¾à§° বাবৠà¦
তিৰিà¦à§à¦¤ à¦à§à¦¸à¦¸à§à¦¥à¦² সà¦à§à§°à¦¿à§ à¦à§°à¦¾ à¦à§±à¦¶à§à¦¯à¦"
#. TRANSLATORS: is not GPG signed
#: ../src/pk-polkit-action-lookup.c:168 ../src/pk-polkit-action-lookup.c:187
msgid "The software is not from a trusted source."
-msgstr ""
+msgstr "বিশà§à¦¬à¦¸à§à¦¤ à¦à§à¦¸à¦¸à§à¦¥à¦²à§° পৰা à¦à¦¾à¦²à¦¨à¦¾à¦à§à¦à¦¾à¦¨ পà§à§°à¦¾à¦ªà§à¦¤ à¦à§°à¦¾ নহৠ।"
#: ../src/pk-polkit-action-lookup.c:173
msgid "Do not update this package unless you are sure it is safe to do so."
-msgstr ""
+msgstr "সৰà¦à§à¦à¦¾à¦®à§° সà§à§°à¦à§à¦·à¦¾ সমà§à¦ªà§°à§à¦à§ সমà§à¦ªà§à§°à§à¦£à§°à§à¦ªà§ নিশà§à¦à¦¿à¦¤ ন'হ'লৠà¦à¦ সৰà¦à§à¦à¦¾à¦® à¦à¦¨à§à¦¨à§à¦¨ নà¦à§°à¦¾ à¦à¦à¦¿à¦¤ ।"
#: ../src/pk-polkit-action-lookup.c:174
msgid "Do not update these packages unless you are sure it is safe to do so."
msgstr ""
+"সৰà¦à§à¦à¦¾à¦®à§° সà§à§°à¦à§à¦·à¦¾ সমà§à¦ªà§°à§à¦à§ সমà§à¦ªà§à§°à§à¦£à§°à§à¦ªà§ নিশà§à¦à¦¿à¦¤ ন'হ'লৠà¦à¦ সৰà¦à§à¦à¦¾à¦®à¦¸à¦®à§à¦¹ à¦à¦¨à§à¦¨à§à¦¨ নà¦à§°à¦¾ "
+"à¦à¦à¦¿à¦¤ ।"
#: ../src/pk-polkit-action-lookup.c:192
msgid "Do not install this package unless you are sure it is safe to do so."
msgstr ""
+"সৰà¦à§à¦à¦¾à¦®à§° সà§à§°à¦à§à¦·à¦¾ সমà§à¦ªà§°à§à¦à§ সমà§à¦ªà§à§°à§à¦£à§°à§à¦ªà§ নিশà§à¦à¦¿à¦¤ ন'হ'লৠà¦à¦ সৰà¦à§à¦à¦¾à¦® সà¦à¦¸à§à¦¥à¦¾à¦ªà¦¨ নà¦à§°à¦¾ "
+"à¦à¦à¦¿à¦¤ ।"
#: ../src/pk-polkit-action-lookup.c:193
msgid "Do not install these packages unless you are sure it is safe to do so."
msgstr ""
+"সৰà¦à§à¦à¦¾à¦®à§° সà§à§°à¦à§à¦·à¦¾ সমà§à¦ªà§°à§à¦à§ সমà§à¦ªà§à§°à§à¦£à§°à§à¦ªà§ নিশà§à¦à¦¿à¦¤ ন'হ'লৠà¦à¦ সৰà¦à§à¦à¦¾à¦® à¦à¦¨à§à¦¨à§à¦¨ নà¦à§°à¦¾ "
+"à¦à¦à¦¿à¦¤ ।"
#. TRANSLATORS: warn the user that all bets are off
#: ../src/pk-polkit-action-lookup.c:199
msgid "Malicious software can damage your computer or cause other harm."
msgstr ""
+"à¦à§à¦·à¦¤à¦¿à¦à¦¾à§°à¦£ à¦à¦¾à¦²à¦¨à¦¾à¦à§à¦à¦¾à¦¨à§° ফলত à¦à¦®à§à¦ªà¦¿à¦à¦à¦¾à§°à¦¤ সমসà§à¦¯à¦¾ দà§à¦à¦¾ দিব পাৰৠà¦à§°à§ à¦
নà§à¦¯à¦¾à¦¨à§à¦¯ বিপদৰ à¦à¦¶à¦à§à¦à¦¾ "
+"à¦à¦à§ ।"
#. TRANSLATORS: too many packages to list each one
#: ../src/pk-polkit-action-lookup.c:274
-#, fuzzy
msgid "Many packages"
-msgstr "সৰà¦à§à¦à¦¾à¦® à¦à¦¨à§à¦¨à¦¤ à¦à§°à¦"
+msgstr "à¦
তà§à¦¯à¦¾à¦§à¦¿à¦ সৰà¦à§à¦à¦¾à¦®"
#. TRANSLATORS: if the transaction is forced to install only trusted packages
#: ../src/pk-polkit-action-lookup.c:334
msgid "Only trusted"
-msgstr ""
+msgstr "à¦
à¦à¦² বিশà§à¦¬à¦¸à§à¦¤"
+
commit 19b134078627b41236d65064cc5821e383608a15
Author: Anders F Bjorklund <afb at users.sourceforge.net>
Date: Wed Sep 9 23:56:10 2009 +0200
Update feature matrix for slapt.
diff --git a/docs/html/pk-matrix.html b/docs/html/pk-matrix.html
index e34013d..7cab339 100644
--- a/docs/html/pk-matrix.html
+++ b/docs/html/pk-matrix.html
@@ -31,6 +31,7 @@
<td><center>poldek</center></td>
<td><center>portage</center></td>
<td><center>ports</center></td>
+<td><center>slapt</center></td>
<td><center>smart</center></td>
<td><center>urpmi</center></td>
<td><center>yum</center></td>
@@ -48,6 +49,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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><!-- yum -->
@@ -65,6 +67,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<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><!-- yum -->
@@ -82,6 +85,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -99,6 +103,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -116,6 +121,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- smart -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -133,6 +139,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- smart -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -150,6 +157,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -167,6 +175,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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><!-- yum -->
@@ -184,6 +193,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -201,6 +211,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -218,6 +229,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -235,6 +247,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></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><!-- yum -->
@@ -252,6 +265,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -269,6 +283,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- smart -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -286,6 +301,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -303,6 +319,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -320,6 +337,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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><!-- yum -->
@@ -337,6 +355,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></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><!-- yum -->
@@ -354,6 +373,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -371,6 +391,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- smart -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- yum -->
@@ -388,6 +409,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -405,6 +427,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- smart -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -422,6 +445,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -439,6 +463,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -456,6 +481,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- smart -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- yum -->
@@ -473,6 +499,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- smart -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- yum -->
@@ -490,6 +517,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- smart -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- yum -->
@@ -507,6 +535,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- smart -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- yum -->
@@ -524,6 +553,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -541,6 +571,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- smart -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -558,6 +589,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- smart -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -579,6 +611,7 @@
<td><center>poldek</center></td>
<td><center>portage</center></td>
<td><center>ports</center></td>
+<td><center>slapt</center></td>
<td><center>smart</center></td>
<td><center>urpmi</center></td>
<td><center>yum</center></td>
@@ -596,6 +629,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -613,6 +647,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- smart -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -630,6 +665,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- smart -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- urpmi -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- yum -->
@@ -647,6 +683,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></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><!-- yum -->
@@ -664,6 +701,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- smart -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- yum -->
@@ -681,6 +719,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></td><!-- slapt -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- smart -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- urpmi -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- yum -->
@@ -698,6 +737,7 @@
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- poldek -->
<td><img src="img/status-good.png" alt="[yes]"/></td><!-- portage -->
<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><!-- yum -->
@@ -715,6 +755,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></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><!-- yum -->
@@ -732,6 +773,7 @@
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- poldek -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- portage -->
<td><img src="img/status-bad.png" alt="[no]"/></td><!-- ports -->
+<td><img src="img/status-bad.png" alt="[no]"/></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><!-- yum -->
commit 62f7c805c4949e2dae5d33994af2c559699a4300
Author: Anders F Bjorklund <afb at users.sourceforge.net>
Date: Wed Sep 9 23:55:45 2009 +0200
add distro check for slackware
diff --git a/lib/packagekit-glib/pk-common.c b/lib/packagekit-glib/pk-common.c
index b8bc3cb..7953166 100644
--- a/lib/packagekit-glib/pk-common.c
+++ b/lib/packagekit-glib/pk-common.c
@@ -213,6 +213,24 @@ pk_get_distro_id (void)
goto out;
}
+ /* check for Slackware */
+ ret = g_file_get_contents ("/etc/slackware-version", &contents, NULL, NULL);
+ if (ret) {
+ /* Slackware 13.0.0.0.0 */
+ split = g_strsplit (contents, " ", 0);
+ if (split == NULL)
+ goto out;
+
+ /* we can't get arch from /etc */
+ arch = pk_get_machine_type ();
+ if (arch == NULL)
+ goto out;
+
+ /* complete! */
+ distro = g_strdup_printf ("slackware-%s-%s", split[1], arch);
+ goto out;
+ }
+
#ifdef __FreeBSD__
ret = TRUE;
#endif
commit 3c0dc785d7a8f29cab5e647372c7648b8cb87af4
Author: Anders F Bjorklund <afb at users.sourceforge.net>
Date: Wed Sep 9 23:55:22 2009 +0200
slapt: add new backend for Slackware packages
diff --git a/backends/Makefile.am b/backends/Makefile.am
index cf20493..63d33e1 100644
--- a/backends/Makefile.am
+++ b/backends/Makefile.am
@@ -32,6 +32,10 @@ if BACKEND_TYPE_RAZOR
SUBDIRS += razor
endif
+if BACKEND_TYPE_SLAPT
+SUBDIRS += slapt
+endif
+
if BACKEND_TYPE_SMART
SUBDIRS += smart
endif
diff --git a/backends/slapt/Makefile.am b/backends/slapt/Makefile.am
new file mode 100644
index 0000000..eebc441
--- /dev/null
+++ b/backends/slapt/Makefile.am
@@ -0,0 +1,7 @@
+plugindir = $(PK_PLUGIN_DIR)
+plugin_LTLIBRARIES = libpk_backend_slapt.la
+libpk_backend_slapt_la_SOURCES = pk-backend-slapt.c
+libpk_backend_slapt_la_LIBADD = $(PK_PLUGIN_LIBS) $(SLAPT_LIBS)
+libpk_backend_slapt_la_LDFLAGS = -module -avoid-version
+libpk_backend_slapt_la_CFLAGS = $(PK_PLUGIN_CFLAGS) $(WARNINGFLAGS_C)
+libpk_backend_slapt_la_INCLUDES = $(SLAPT_CFLAGS)
diff --git a/backends/slapt/pk-backend-slapt.c b/backends/slapt/pk-backend-slapt.c
new file mode 100644
index 0000000..e77aee9
--- /dev/null
+++ b/backends/slapt/pk-backend-slapt.c
@@ -0,0 +1,1373 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2009 Anders F Bjorklund <afb at users.sourceforge.net>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#define _GNU_SOURCE
+
+#include <gmodule.h>
+#include <glib.h>
+#include <string.h>
+#include <stdlib.h>
+#include <packagekit-glib/packagekit.h>
+
+#include <pk-backend.h>
+
+#include <slapt.h>
+
+#include <openssl/md5.h>
+
+struct category_map {
+ const char *category;
+ PkGroupEnum group;
+};
+
+static struct category_map CATGROUP[] = { /* TODO: load into hashmap */
+/* Slackware */
+{ "a", PK_GROUP_ENUM_SYSTEM /* The base Slackware system. */ },
+{ "ap", PK_GROUP_ENUM_OTHER /* Linux applications. */ },
+{ "d", PK_GROUP_ENUM_PROGRAMMING /* Program development tools. */ },
+{ "e", PK_GROUP_ENUM_OTHER /* GNU Emacs. */ },
+{ "f", PK_GROUP_ENUM_DOCUMENTATION /* FAQs and HOWTOs for common tasks. */ },
+{ "k", PK_GROUP_ENUM_OTHER /* Linux kernel source. */ },
+{ "kde", PK_GROUP_ENUM_DESKTOP_KDE /* The K Desktop Environment and applications. */ },
+{ "kdei", PK_GROUP_ENUM_LOCALIZATION /* Language support for the K Desktop Environment. */ },
+{ "l", PK_GROUP_ENUM_SYSTEM /* System libraries. */ },
+{ "n", PK_GROUP_ENUM_NETWORK /* Networking applications and utilities. */ },
+{ "t", PK_GROUP_ENUM_OTHER /* TeX typesetting language. */ },
+{ "tcl", PK_GROUP_ENUM_OTHER /* Tcl/Tk/TclX scripting languages and tools. */ },
+{ "x", PK_GROUP_ENUM_SYSTEM /* X Window System graphical user interface. */ },
+{ "xap", PK_GROUP_ENUM_DESKTOP_OTHER /* Applications for the X Window System. */ },
+{ "y", PK_GROUP_ENUM_GAMES /* Classic text-based BSD games. */ },
+
+{ "gsb", PK_GROUP_ENUM_DESKTOP_GNOME /* GNOME SlackBuild */ },
+/* Vector */
+{ "base-apps", PK_GROUP_ENUM_OTHER },
+{ "base", PK_GROUP_ENUM_SYSTEM },
+{ "dev", PK_GROUP_ENUM_PROGRAMMING },
+{ "drivers", PK_GROUP_ENUM_OTHER },
+{ "emulators", PK_GROUP_ENUM_OTHER },
+{ "fonts", PK_GROUP_ENUM_FONTS },
+{ "games", PK_GROUP_ENUM_GAMES },
+{ "kde", PK_GROUP_ENUM_DESKTOP_KDE },
+{ "kdei", PK_GROUP_ENUM_LOCALIZATION },
+{ "libs", PK_GROUP_ENUM_SYSTEM },
+{ "net", PK_GROUP_ENUM_NETWORK },
+{ "x-apps", PK_GROUP_ENUM_DESKTOP_OTHER },
+{ "x-dev", PK_GROUP_ENUM_PROGRAMMING },
+{ "x", PK_GROUP_ENUM_OTHER },
+{ "xfce", PK_GROUP_ENUM_DESKTOP_XFCE },
+/* Wolvix */
+{ "compiz", PK_GROUP_ENUM_OTHER },
+{ "desktop", PK_GROUP_ENUM_DESKTOP_OTHER },
+{"development", PK_GROUP_ENUM_PROGRAMMING },
+{ "drivers", PK_GROUP_ENUM_OTHER },
+{ "games", PK_GROUP_ENUM_GAMES },
+{ "gnome", PK_GROUP_ENUM_DESKTOP_GNOME },
+{ "graphics", PK_GROUP_ENUM_GRAPHICS },
+{ "kernel", PK_GROUP_ENUM_OTHER },
+{ "lxde", PK_GROUP_ENUM_DESKTOP_OTHER },
+{ "meta", PK_GROUP_ENUM_COLLECTIONS },
+{ "multimedia", PK_GROUP_ENUM_MULTIMEDIA },
+{ "network", PK_GROUP_ENUM_NETWORK },
+{ "office", PK_GROUP_ENUM_OFFICE },
+{ "scientific", PK_GROUP_ENUM_SCIENCE },
+{ "system", PK_GROUP_ENUM_SYSTEM },
+{ "utilities", PK_GROUP_ENUM_OTHER },
+{ "wolvix", PK_GROUP_ENUM_VENDOR },
+{ "xfce-extra", PK_GROUP_ENUM_DESKTOP_XFCE },
+{ "xfce", PK_GROUP_ENUM_DESKTOP_XFCE },
+/* Sentinel */
+{ NULL, PK_GROUP_ENUM_UNKNOWN }
+};
+
+static PkBackend *_backend = NULL;
+
+static slapt_rc_config *_config = NULL;
+static const gchar *_config_file = "/etc/slapt-get/slapt-getrc";
+
+/* CURLOPT_PROGRESSFUNCTION */
+static int backend_progress_callback(void *clientp,
+double dltotal, double dlnow, double ultotal, double ulnow)
+{
+ unsigned int percentage;
+ struct slapt_progress_data *cb_data = clientp;
+
+ (void) cb_data; /* unused */
+
+ if (dltotal == 0)
+ percentage = 0;
+ else
+ percentage = (dlnow * 100.0) / dltotal;
+
+ pk_backend_set_percentage (_backend, percentage);
+ return 0;
+}
+
+/**
+ * backend_initialize:
+ * This should only be run once per backend load, i.e. not every transaction
+ */
+static void
+backend_initialize (PkBackend *backend)
+{
+ _config = slapt_read_rc_config(_config_file);
+ if (_config == NULL)
+ _config = slapt_init_config();
+
+ _backend = backend;
+ if (_backend != NULL)
+ _config->progress_cb = &backend_progress_callback;
+
+ chdir(_config->working_dir);
+}
+
+/**
+ * backend_destroy:
+ * This should only be run once per backend load, i.e. not every transaction
+ */
+static void
+backend_destroy (PkBackend *backend)
+{
+ slapt_free_rc_config(_config);
+}
+
+/**
+ * backend_get_groups:
+ */
+static PkBitfield
+backend_get_groups (PkBackend *backend)
+{
+ return pk_bitfield_from_enums (
+ /* PK_GROUP_ENUM_ACCESSIBILITY, */
+ /* PK_GROUP_ENUM_ACCESSORIES, */
+ /* PK_GROUP_ENUM_ADMIN_TOOLS, */
+ /* PK_GROUP_ENUM_COMMUNICATION, */
+ PK_GROUP_ENUM_DESKTOP_GNOME,
+ PK_GROUP_ENUM_DESKTOP_KDE,
+ PK_GROUP_ENUM_DESKTOP_OTHER,
+ PK_GROUP_ENUM_DESKTOP_XFCE,
+ /* PK_GROUP_ENUM_EDUCATION, */
+ PK_GROUP_ENUM_FONTS,
+ PK_GROUP_ENUM_GAMES,
+ PK_GROUP_ENUM_GRAPHICS,
+ /* PK_GROUP_ENUM_INTERNET, */
+ /* PK_GROUP_ENUM_LEGACY, */
+ PK_GROUP_ENUM_LOCALIZATION,
+ /* PK_GROUP_ENUM_MAPS, */
+ PK_GROUP_ENUM_MULTIMEDIA,
+ PK_GROUP_ENUM_NETWORK,
+ PK_GROUP_ENUM_OFFICE,
+ PK_GROUP_ENUM_OTHER,
+ /* PK_GROUP_ENUM_POWER_MANAGEMENT, */
+ PK_GROUP_ENUM_PROGRAMMING,
+ /* PK_GROUP_ENUM_PUBLISHING, */
+ /* PK_GROUP_ENUM_REPOS, */
+ /* PK_GROUP_ENUM_SECURITY, */
+ /* PK_GROUP_ENUM_SERVERS, */
+ PK_GROUP_ENUM_SYSTEM,
+ /* PK_GROUP_ENUM_VIRTUALIZATION, */
+ PK_GROUP_ENUM_SCIENCE,
+ PK_GROUP_ENUM_DOCUMENTATION,
+ /* PK_GROUP_ENUM_ELECTRONICS, */
+ PK_GROUP_ENUM_COLLECTIONS,
+ PK_GROUP_ENUM_VENDOR,
+ /* PK_GROUP_ENUM_NEWEST, */
+ -1);
+}
+
+/**
+ * backend_get_filters:
+ */
+static PkBitfield
+backend_get_filters (PkBackend *backend)
+{
+ return pk_bitfield_from_enums (
+ PK_FILTER_ENUM_INSTALLED,
+ PK_FILTER_ENUM_NEWEST,
+ -1);
+}
+
+/**
+ * backend_get_mime_types:
+ */
+static gchar *
+backend_get_mime_types (PkBackend *backend)
+{
+ return g_strdup ("application/x-compressed-tar;" /* .tgz */
+ "application/x-bzip-compressed-tar;" /* .tbz */
+ "application/x-lzma-compressed-tar;" /* .tlz */
+ "application/x-xz-compressed-tar" /* .txz */);
+}
+
+/**
+ * backend_cancel:
+ */
+static void
+backend_cancel (PkBackend *backend)
+{
+}
+
+static slapt_pkg_info_t* _get_pkg_from_id(PkPackageId *pi,
+ struct slapt_pkg_list *avail_pkgs,
+ struct slapt_pkg_list *installed_pkgs)
+{
+ slapt_pkg_info_t *pkg;
+ gchar **fields;
+ const gchar *version;
+
+ fields = g_strsplit(pi->version, "-", 2);
+ version = g_strdup_printf("%s-%s-%s", fields[0], pi->arch, fields[1]);
+ pkg = slapt_get_exact_pkg(avail_pkgs, pi->name, version);
+ if (pkg == NULL && installed_pkgs != NULL) {
+ pkg = slapt_get_exact_pkg(installed_pkgs, pi->name, version);
+ }
+ g_free((gpointer) version);
+ g_strfreev(fields);
+
+ return pkg;
+}
+
+static slapt_pkg_info_t* _get_pkg_from_string(const gchar *package_id,
+ struct slapt_pkg_list *avail_pkgs,
+ struct slapt_pkg_list *installed_pkgs)
+{
+ PkPackageId *pi;
+ slapt_pkg_info_t *pkg;
+
+ pi = pk_package_id_new_from_string (package_id);
+ if (pi == NULL)
+ return NULL;
+ pkg = _get_pkg_from_id(pi, avail_pkgs, installed_pkgs);
+ pk_package_id_free (pi);
+ return pkg;
+}
+
+static PkPackageId* _get_id_from_pkg(slapt_pkg_info_t *pkg)
+{
+ PkPackageId *pi;
+ gchar **fields;
+ const gchar *version;
+ const char *data;
+
+ fields = g_strsplit(pkg->version, "-", 3);
+ version = g_strdup_printf("%s-%s", fields[0], fields[2]);
+ data = pkg->installed ? "installed" : "available"; /* TODO: source */
+ pi = pk_package_id_new_from_list(pkg->name, version, fields[1], data);
+ g_free((gpointer) version);
+ g_strfreev(fields);
+
+ return pi;
+}
+
+static const gchar* _get_string_from_pkg(slapt_pkg_info_t *pkg)
+{
+ PkPackageId *pi;
+ const gchar *package_id;
+
+ pi = _get_id_from_pkg(pkg);
+ if (pi == NULL)
+ return NULL;
+ package_id = pk_package_id_to_string(pi);
+ pk_package_id_free(pi);
+ return package_id;
+}
+
+/* return the last item of the pkg->location, after the slash */
+static const char *_get_pkg_category(slapt_pkg_info_t *pkg)
+{
+ char *p;
+
+ p = strrchr(pkg->location, '/');
+ if (p == NULL)
+ return "";
+ else
+ return (const char *) p + 1;
+}
+
+/* return the first line of the pkg->description, without the prefix */
+static const gchar *_get_pkg_summary(slapt_pkg_info_t *pkg)
+{
+ char *p;
+ char *lf;
+ const gchar *text;
+
+ p = pkg->description;
+ lf = strchr(p, '\n');
+
+ if (lf == NULL)
+ text = g_strdup((const gchar *) p);
+ else
+ text = g_strndup((const gchar *) p, lf - p);
+
+ slapt_clean_description((char*) text, pkg->name);
+
+ return text;
+}
+
+/* return the third plus lines of the pkg->description, without the prefix */
+static const gchar *_get_pkg_description(slapt_pkg_info_t *pkg)
+{
+ char *p;
+ char *lf;
+ const gchar *text;
+
+ p = pkg->description;
+ lf = strchr(p, '\n');
+
+ if (lf == NULL)
+ text = g_strdup((const gchar *) p);
+ else
+ text = g_strdup((const gchar *) lf + 1);
+
+ slapt_clean_description((char*) text, pkg->name);
+
+ return text;
+}
+
+/**
+ * backend_get_depends:
+ */
+static void
+backend_get_depends (PkBackend *backend, PkBitfield filters, gchar **package_ids, gboolean recursive)
+{
+ guint i;
+ guint len;
+ const gchar *package_id;
+ PkPackageId *pi;
+
+ slapt_pkg_info_t *pkg;
+ int ret;
+
+ struct slapt_pkg_list *installed;
+ struct slapt_pkg_list *available;
+
+ struct slapt_pkg_list *depends;
+
+ struct slapt_pkg_err_list *conflicts;
+ struct slapt_pkg_err_list *missing;
+
+ PkInfoEnum state;
+ const char *summary;
+
+ installed = slapt_get_installed_pkgs();
+ available = slapt_get_available_pkgs();
+
+ conflicts = slapt_init_pkg_err_list();
+ missing = slapt_init_pkg_err_list();
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_QUERY);
+
+ len = g_strv_length (package_ids);
+ for (i=0; i<len; i++) {
+ package_id = package_ids[i];
+ pi = pk_package_id_new_from_string (package_id);
+ if (pi == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_ID_INVALID, "invalid package id");
+ pk_backend_finished (backend);
+ return;
+ }
+ pkg = _get_pkg_from_id(pi, available, installed);
+ pk_package_id_free (pi);
+ if (pkg == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, "package not found");
+ continue;
+ }
+
+ depends = slapt_init_pkg_list();
+
+ ret = slapt_get_pkg_dependencies(_config,
+ available, installed, pkg, depends, conflicts, missing);
+
+ for (i = 0; i < depends->pkg_count; i++) {
+ pkg = depends->pkgs[i];
+
+ state = pkg->installed ? PK_INFO_ENUM_INSTALLED : PK_INFO_ENUM_AVAILABLE;
+ package_id = _get_string_from_pkg(pkg);
+ summary = _get_pkg_summary(pkg);
+ pk_backend_package (backend, state, package_id, summary);
+ g_free((gpointer) summary);
+ g_free((gpointer) package_id);
+ }
+
+ slapt_free_pkg_list(depends);
+ }
+
+ slapt_free_pkg_err_list(missing);
+ slapt_free_pkg_err_list(conflicts);
+
+ slapt_free_pkg_list(available);
+ slapt_free_pkg_list(installed);
+
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_get_details:
+ */
+static void
+backend_get_details (PkBackend *backend, gchar **package_ids)
+{
+ guint i;
+ guint len;
+ const gchar *package_id;
+ PkPackageId *pi;
+ const gchar *license = "";
+ const gchar *homepage = "";
+ const gchar *description;
+ PkGroupEnum group;
+
+ struct slapt_pkg_list *installed;
+ struct slapt_pkg_list *available;
+ slapt_pkg_info_t *pkg;
+ const char *category;
+ struct category_map *catgroup;
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_QUERY);
+ pk_backend_set_percentage (backend, 0);
+
+ installed = slapt_get_installed_pkgs();
+ available = slapt_get_available_pkgs();
+
+ len = g_strv_length (package_ids);
+ for (i=0; i<len; i++) {
+ package_id = package_ids[i];
+ pi = pk_package_id_new_from_string (package_id);
+ if (pi == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_ID_INVALID, "invalid package id");
+ pk_backend_finished (backend);
+ return;
+ }
+ pkg = _get_pkg_from_id(pi, available, installed);
+ pk_package_id_free (pi);
+ if (pkg == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, "package not found");
+ continue;
+ }
+
+ category = _get_pkg_category(pkg);
+ group = PK_GROUP_ENUM_UNKNOWN;
+ for (catgroup = CATGROUP; catgroup->category != NULL; catgroup++) {
+ if (strcmp(catgroup->category, category) == 0) {
+ group = catgroup->group;
+ break;
+ }
+ }
+
+ description = g_strstrip((gchar*) _get_pkg_description(pkg));
+
+ pk_backend_details (backend, package_id,
+ license, group, description, homepage, pkg->size_c * 1024);
+
+ g_free((gpointer) description);
+ }
+
+ slapt_free_pkg_list(available);
+ slapt_free_pkg_list(installed);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_get_requires:
+ */
+static void
+backend_get_requires (PkBackend *backend, PkBitfield filters, gchar **package_ids, gboolean recursive)
+{
+ guint i;
+ guint len;
+ const gchar *package_id;
+ PkPackageId *pi;
+
+ slapt_pkg_info_t *pkg;
+
+ struct slapt_pkg_list *installed;
+ struct slapt_pkg_list *available;
+
+ struct slapt_pkg_list *requires;
+
+ PkInfoEnum state;
+ const char *summary;
+
+ installed = slapt_get_installed_pkgs();
+ available = slapt_get_available_pkgs();
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_QUERY);
+
+ len = g_strv_length (package_ids);
+ for (i=0; i<len; i++) {
+ package_id = package_ids[i];
+ pi = pk_package_id_new_from_string (package_id);
+ if (pi == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_ID_INVALID, "invalid package id");
+ pk_backend_finished (backend);
+ return;
+ }
+ pkg = _get_pkg_from_id(pi, available, installed);
+ pk_package_id_free (pi);
+ if (pkg == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, "package not found");
+ continue;
+ }
+
+ requires = slapt_is_required_by(_config, available, pkg);
+
+ for (i = 0; i < requires->pkg_count; i++) {
+ pkg = requires->pkgs[i];
+
+ state = pkg->installed ? PK_INFO_ENUM_INSTALLED : PK_INFO_ENUM_AVAILABLE;
+ package_id = _get_string_from_pkg(pkg);
+ summary = _get_pkg_summary(pkg);
+ pk_backend_package (backend, state, package_id, summary);
+ g_free((gpointer) summary);
+ g_free((gpointer) package_id);
+ }
+
+ slapt_free_pkg_list(requires);
+ }
+
+ slapt_free_pkg_list(available);
+ slapt_free_pkg_list(installed);
+
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_get_update_detail:
+ */
+static void
+backend_get_update_detail (PkBackend *backend, gchar **package_ids)
+{
+ guint i;
+ guint len;
+ const gchar *package_id;
+ const gchar *old_package_id;
+ PkPackageId *pi;
+
+ struct slapt_pkg_list *installed;
+ struct slapt_pkg_list *available;
+ const gchar *search;
+ struct slapt_pkg_list *results;
+ slapt_pkg_info_t *pkg;
+ slapt_pkg_info_t *oldpkg;
+ const gchar *title;
+ char *changelog;
+ const gchar *issued;
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_QUERY);
+ pk_backend_set_percentage (backend, 0);
+
+ installed = slapt_get_installed_pkgs();
+ available = slapt_get_available_pkgs();
+
+ len = g_strv_length (package_ids);
+ for (i=0; i<len; i++) {
+ package_id = package_ids[i];
+ pi = pk_package_id_new_from_string (package_id);
+ if (pi == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_ID_INVALID, "invalid package id");
+ pk_backend_finished (backend);
+ return;
+ }
+ pkg = _get_pkg_from_id(pi, available, installed);
+ pk_package_id_free (pi);
+ if (pkg == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, "package not found");
+ continue;
+ }
+ package_id = _get_string_from_pkg(pkg);
+
+ search = g_strdup_printf("^%s$", pkg->name);
+ results = slapt_search_pkg_list(installed, search);
+ g_free((gpointer) search);
+ if (results->pkg_count > 0) {
+ oldpkg = results->pkgs[0];
+ old_package_id = _get_string_from_pkg(oldpkg);
+ } else {
+ oldpkg = NULL;
+ old_package_id = "";
+ }
+
+ changelog = slapt_get_pkg_changelog(pkg);
+ title = ""; /* first line of changelog */
+
+ issued = NULL;
+
+ pk_backend_update_detail (backend, package_id, old_package_id,
+ "", "", "", NULL, PK_RESTART_ENUM_NONE,
+ title, changelog, PK_UPDATE_STATE_ENUM_UNKNOWN, issued, NULL);
+
+ g_free((gpointer) issued);
+ if (changelog != NULL)
+ free(changelog);
+ }
+
+ slapt_free_pkg_list(available);
+ slapt_free_pkg_list(installed);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_get_updates:
+ */
+static void
+backend_get_updates (PkBackend *backend, PkBitfield filters)
+{
+ guint i;
+ const gchar *package_id;
+ const gchar *new_package_id;
+
+ struct slapt_pkg_list *installed;
+ struct slapt_pkg_list *available;
+ slapt_pkg_info_t *pkg;
+ slapt_pkg_info_t *newpkg;
+ const gchar *summary;
+ const char *changelog;
+ PkInfoEnum state;
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_QUERY);
+ pk_backend_set_percentage (backend, 0);
+
+ installed = slapt_get_installed_pkgs();
+ available = slapt_get_available_pkgs();
+
+ for (i = 0; i < installed->pkg_count; i++) {
+ pkg = installed->pkgs[i];
+ newpkg = slapt_get_newest_pkg(available, pkg->name);
+ if (newpkg == NULL)
+ continue;
+ if (slapt_cmp_pkgs(pkg,newpkg) >= 0)
+ continue;
+
+ package_id = _get_string_from_pkg(pkg);
+ new_package_id = _get_string_from_pkg(newpkg);
+
+ changelog = slapt_get_pkg_changelog(newpkg);
+ if (changelog != NULL &&
+ strstr(changelog, "(* Security fix *)") != NULL)
+ state = PK_INFO_ENUM_SECURITY;
+ else
+ state = PK_INFO_ENUM_NORMAL;
+
+ summary =_get_pkg_summary(newpkg);
+ pk_backend_package (backend, state,
+ new_package_id, summary);
+ g_free((gpointer) summary);
+ g_free((gpointer) new_package_id);
+ g_free((gpointer) package_id);
+ }
+
+ slapt_free_pkg_list(available);
+ slapt_free_pkg_list(installed);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_install_packages:
+ */
+static void
+backend_install_packages (PkBackend *backend, gboolean only_trusted, gchar **package_ids)
+{
+ guint i;
+ guint len;
+ const gchar *package_id;
+ PkPackageId *pi;
+ int ret;
+
+ struct slapt_pkg_list *installed;
+ struct slapt_pkg_list *available;
+ slapt_transaction_t *transaction;
+ slapt_pkg_info_t *pkg;
+
+ /* FIXME: support only_trusted */
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_INSTALL);
+ pk_backend_set_percentage (backend, 0);
+
+ installed = slapt_get_installed_pkgs();
+ available = slapt_get_available_pkgs();
+
+ transaction = slapt_init_transaction();
+
+ len = g_strv_length (package_ids);
+ for (i=0; i<len; i++) {
+ package_id = package_ids[i];
+ pi = pk_package_id_new_from_string (package_id);
+ if (pi == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_ID_INVALID, "invalid package id");
+ pk_backend_finished (backend);
+ return;
+ }
+ pkg = _get_pkg_from_id(pi, available, installed);
+ pk_package_id_free (pi);
+ if (pkg == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, "package not found");
+ continue;
+ }
+
+ if (pkg->installed) {
+ char *pkgname = slapt_stringify_pkg(pkg);
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_ALREADY_INSTALLED, "package %s already installed", pkgname);
+ free(pkgname);
+ continue;
+ }
+
+ slapt_add_install_to_transaction(transaction, pkg);
+ }
+
+ ret = slapt_handle_transaction(_config, transaction);
+ if (ret != 0) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_TRANSACTION_ERROR, "install failed");
+ }
+
+ slapt_free_transaction(transaction);
+
+ slapt_free_pkg_list(available);
+ slapt_free_pkg_list(installed);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_refresh_cache:
+ */
+static void
+backend_refresh_cache (PkBackend *backend, gboolean force)
+{
+ pk_backend_set_allow_cancel (backend, TRUE);
+ pk_backend_set_status (backend, PK_STATUS_ENUM_REFRESH_CACHE);
+ slapt_update_pkg_cache(_config);
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_resolve:
+ */
+static void
+backend_resolve (PkBackend *backend, PkBitfield filters, gchar **packages)
+{
+ guint i;
+ guint len;
+
+ const gchar *package_id;
+ struct slapt_pkg_list *pkglist;
+ slapt_pkg_info_t *pkg = NULL;
+ struct slapt_pkg_list *results = NULL;
+
+ PkInfoEnum state;
+ const gchar *search;
+ const char *summary;
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_QUERY);
+ pk_backend_set_percentage (backend, 0);
+
+ if (pk_bitfield_contain (filters, PK_FILTER_ENUM_INSTALLED)) {
+ pkglist = slapt_get_installed_pkgs();
+ state = PK_INFO_ENUM_INSTALLED;
+ } else {
+ pkglist = slapt_get_available_pkgs();
+ state = PK_INFO_ENUM_AVAILABLE;
+ }
+
+ len = g_strv_length (packages);
+ for (i=0; i<len; i++) {
+
+ search = g_strdup_printf("^%s$", packages[i]); /* regexp */
+ results = slapt_search_pkg_list(pkglist, search);
+ g_free((gpointer) search);
+ if (results == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, "package not found");
+ continue;
+ }
+
+ for (i = 0; i < results->pkg_count; i++) {
+ pkg = results->pkgs[i];
+
+ package_id = _get_string_from_pkg(pkg);
+ summary = _get_pkg_summary(pkg);
+ pk_backend_package (backend, state, package_id, summary);
+ g_free((gpointer) summary);
+ g_free((gpointer) package_id);
+ }
+
+ slapt_free_pkg_list(results);
+ }
+
+ slapt_free_pkg_list(pkglist);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_remove_packages:
+ */
+static void
+backend_remove_packages (PkBackend *backend, gchar **package_ids, gboolean allow_deps, gboolean autoremove)
+{
+ guint i;
+ guint len;
+ const gchar *package_id;
+ PkPackageId *pi;
+ int ret;
+
+ struct slapt_pkg_list *installed;
+ struct slapt_pkg_list *available;
+ slapt_transaction_t *transaction;
+ slapt_pkg_info_t *pkg;
+
+ /* FIXME: support only_trusted */
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_REMOVE);
+ pk_backend_set_percentage (backend, 0);
+
+ installed = slapt_get_installed_pkgs();
+ available = slapt_get_available_pkgs();
+
+ transaction = slapt_init_transaction();
+
+ len = g_strv_length (package_ids);
+ for (i=0; i<len; i++) {
+ package_id = package_ids[i];
+ pi = pk_package_id_new_from_string (package_id);
+ if (pi == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_ID_INVALID, "invalid package id");
+ pk_backend_finished (backend);
+ return;
+ }
+ pkg = _get_pkg_from_id(pi, installed, NULL);
+ pk_package_id_free (pi);
+ if (pkg == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, "package not found");
+ continue;
+ }
+
+ if (!pkg->installed) {
+ char *pkgname = slapt_stringify_pkg(pkg);
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_INSTALLED, "package %s not installed", pkgname);
+ free(pkgname);
+ continue;
+ }
+
+ slapt_add_remove_to_transaction(transaction, pkg);
+ }
+
+ ret = slapt_handle_transaction(_config, transaction);
+ if (ret != 0) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_TRANSACTION_ERROR, "remove failed");
+ }
+
+ slapt_free_transaction(transaction);
+
+ slapt_free_pkg_list(available);
+ slapt_free_pkg_list(installed);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_search_details:
+ */
+static void
+backend_search_details (PkBackend *backend, PkBitfield filters, const gchar *search)
+{
+ guint i;
+
+ const gchar *package_id;
+ struct slapt_pkg_list *pkglist;
+ slapt_pkg_info_t *pkg = NULL;
+ struct slapt_pkg_list *results = NULL;
+
+ PkInfoEnum state;
+ const char *summary;
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_QUERY);
+ pk_backend_set_percentage (backend, 0);
+
+ if (pk_bitfield_contain (filters, PK_FILTER_ENUM_INSTALLED)) {
+ pkglist = slapt_get_installed_pkgs();
+ state = PK_INFO_ENUM_INSTALLED;
+ } else {
+ pkglist = slapt_get_available_pkgs();
+ state = PK_INFO_ENUM_AVAILABLE;
+ }
+
+ results = slapt_search_pkg_list(pkglist, search);
+ for (i = 0; i < results->pkg_count; i++) {
+ pkg = results->pkgs[i];
+
+ package_id = _get_string_from_pkg(pkg);
+ summary = _get_pkg_summary(pkg);
+ pk_backend_package (backend, state, package_id, summary);
+ g_free((gpointer) summary);
+ g_free((gpointer) package_id);
+ }
+
+ slapt_free_pkg_list(results);
+
+ slapt_free_pkg_list(pkglist);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_search_group:
+ */
+static void
+backend_search_group (PkBackend *backend, PkBitfield filters, const gchar *search)
+{
+ guint i;
+
+ const gchar *package_id;
+ struct slapt_pkg_list *pkglist;
+ slapt_pkg_info_t *pkg = NULL;
+ PkGroupEnum group;
+ PkGroupEnum search_group;
+ const char *category;
+ struct category_map *catgroup;
+
+ PkInfoEnum state;
+ const char *summary;
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_QUERY);
+ pk_backend_set_percentage (backend, 0);
+
+ if (pk_bitfield_contain (filters, PK_FILTER_ENUM_INSTALLED)) {
+ pkglist = slapt_get_installed_pkgs();
+ state = PK_INFO_ENUM_INSTALLED;
+ } else {
+ pkglist = slapt_get_available_pkgs();
+ state = PK_INFO_ENUM_AVAILABLE;
+ }
+
+ search_group = pk_group_enum_from_text(search);
+
+ for (i = 0; i < pkglist->pkg_count; i++) {
+ pkg = pkglist->pkgs[i];
+
+ category = _get_pkg_category(pkg);
+ group = PK_GROUP_ENUM_UNKNOWN;
+ for (catgroup = CATGROUP; catgroup->category != NULL; catgroup++) {
+ if (strcmp(catgroup->category, category) == 0) {
+ group = catgroup->group;
+ break;
+ }
+ }
+
+ if (group == search_group) {
+
+ package_id = _get_string_from_pkg(pkg);
+ summary = _get_pkg_summary(pkg);
+ pk_backend_package (backend, state, package_id, summary);
+ g_free((gpointer) summary);
+ g_free((gpointer) package_id);
+
+ }
+ }
+
+ slapt_free_pkg_list(pkglist);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_search_name:
+ */
+static void
+backend_search_name (PkBackend *backend, PkBitfield filters, const gchar *search)
+{
+ unsigned int i;
+
+ const gchar *package_id;
+ struct slapt_pkg_list *pkglist;
+ slapt_pkg_info_t *pkg = NULL;
+ struct slapt_pkg_list *results = NULL;
+
+ PkInfoEnum state;
+ const char *summary;
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_QUERY);
+ pk_backend_set_percentage (backend, 0);
+
+ if (pk_bitfield_contain (filters, PK_FILTER_ENUM_INSTALLED)) {
+ pkglist = slapt_get_installed_pkgs();
+ state = PK_INFO_ENUM_INSTALLED;
+ } else {
+ pkglist = slapt_get_available_pkgs();
+ state = PK_INFO_ENUM_AVAILABLE;
+ }
+
+ results = slapt_search_pkg_list(pkglist, search);
+ g_free((gpointer) search);
+ if (results == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, "package not found");
+ goto out;
+ }
+
+ for (i = 0; i < results->pkg_count; i++) {
+ pkg = results->pkgs[i];
+
+ package_id = _get_string_from_pkg(pkg);
+ summary = _get_pkg_summary(pkg);
+ pk_backend_package (backend, state, package_id, summary);
+ g_free((gpointer) summary);
+ g_free((gpointer) package_id);
+ }
+
+ slapt_free_pkg_list(results);
+
+out:
+ slapt_free_pkg_list(pkglist);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_update_packages:
+ */
+static void
+backend_update_packages (PkBackend *backend, gboolean only_trusted, gchar **package_ids)
+{
+ guint i;
+ guint len;
+ const gchar *package_id;
+ int ret;
+
+ struct slapt_pkg_list *installed;
+ struct slapt_pkg_list *available;
+ const gchar *search;
+ struct slapt_pkg_list *results = NULL;
+ slapt_transaction_t *transaction;
+ slapt_pkg_info_t *pkg;
+ slapt_pkg_info_t *oldpkg;
+
+ /* FIXME: support only_trusted */
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_UPDATE);
+ pk_backend_set_percentage (backend, 0);
+
+ installed = slapt_get_installed_pkgs();
+ available = slapt_get_available_pkgs();
+
+ transaction = slapt_init_transaction();
+
+ len = g_strv_length (package_ids);
+ for (i=0; i<len; i++) {
+ package_id = package_ids[i];
+ pkg = _get_pkg_from_string(package_id, available, installed);
+ if (pkg == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, "package not found");
+ continue;
+ }
+ oldpkg = NULL;
+ search = g_strdup_printf("^%s$", pkg->name);
+ results = slapt_search_pkg_list(installed, search);
+ g_free((gpointer) search);
+ if (results->pkg_count > 0) {
+ oldpkg = results->pkgs[0];
+ } else {
+ continue;
+ }
+
+ slapt_add_upgrade_to_transaction(transaction, oldpkg, pkg);
+ }
+
+ ret = slapt_handle_transaction(_config, transaction);
+ if (ret != 0) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_TRANSACTION_ERROR, "install failed");
+ }
+
+ slapt_free_transaction(transaction);
+
+ slapt_free_pkg_list(available);
+ slapt_free_pkg_list(installed);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+/* return a unique repoid (currently uses MD5), for a package source */
+static const gchar *_get_source_repoid(slapt_source_t *src)
+{
+ unsigned char md5[MD5_DIGEST_LENGTH];
+ const gchar *text;
+ MD5_CTX ctx;
+ int i;
+
+ MD5_Init(&ctx);
+ MD5_Update(&ctx, src->url, strlen(src->url));
+ MD5_Update(&ctx, &src->priority, sizeof(SLAPT_PRIORITY_T));
+ MD5_Final(md5, &ctx);
+
+ text = g_malloc0(MD5_DIGEST_LENGTH * 2 + 1);
+ for (i = 0; i < MD5_DIGEST_LENGTH; i++) {
+ sprintf((char *) text + 2 * i, "%.2x", md5[i]);
+ }
+ return text;
+}
+
+/**
+ * backend_get_repo_list:
+ */
+static void
+backend_get_repo_list (PkBackend *backend, PkBitfield filters)
+{
+ unsigned int i;
+ slapt_source_t *source;
+ const gchar *repo_id;
+ const gchar *repo_description;
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_QUERY);
+
+ for (i = 0; i < _config->sources->count; i++) {
+ source = _config->sources->src[i];
+
+ repo_id = _get_source_repoid(source);
+ repo_description = g_strdup_printf("%s (%s)", source->url,
+ slapt_priority_to_str(source->priority));
+ pk_backend_repo_detail (backend, repo_id, repo_description,
+ !source->disabled);
+ g_free((gpointer) repo_description);
+ g_free((gpointer) repo_id);
+ }
+
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_repo_enable:
+ */
+static void
+backend_repo_enable (PkBackend *backend, const gchar *rid, gboolean enabled)
+{
+ unsigned int i;
+ slapt_source_t *source;
+ const gchar *repo_id;
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_REQUEST);
+
+ for (i = 0; i < _config->sources->count; i++) {
+ source = _config->sources->src[i];
+
+ repo_id = _get_source_repoid(source);
+ if (strcmp(repo_id, rid) == 0) {
+ source->disabled = !enabled;
+ /* Note: currently writing config deletes all comments! */
+ slapt_write_rc_config(_config, _config_file);
+ break;
+ }
+ g_free((gpointer) repo_id);
+ }
+
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_get_packages:
+ */
+static void
+backend_get_packages (PkBackend *backend, PkBitfield filters)
+{
+ PkFilterEnum list_order[] = {
+ PK_FILTER_ENUM_INSTALLED,
+ PK_FILTER_ENUM_NOT_INSTALLED,
+ PK_FILTER_ENUM_UNKNOWN
+ };
+ PkFilterEnum *list_filter;
+
+ struct slapt_pkg_list *pkglist;
+ slapt_pkg_info_t *pkg;
+ slapt_pkg_info_t *other_pkg;
+ unsigned int i;
+ const gchar *package_id;
+
+ struct slapt_pkg_list *installed;
+ struct slapt_pkg_list *available;
+
+ PkInfoEnum state;
+ const char *summary;
+
+ installed = slapt_get_installed_pkgs();
+ available = slapt_get_available_pkgs();
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_REQUEST);
+ for (list_filter = list_order; *list_filter != PK_FILTER_ENUM_UNKNOWN; list_filter++) {
+
+ if (*list_filter == PK_FILTER_ENUM_INSTALLED) {
+ if (pk_bitfield_contain (filters, PK_FILTER_ENUM_NOT_INSTALLED))
+ break;
+ pkglist = installed;
+ } else if (*list_filter == PK_FILTER_ENUM_NOT_INSTALLED) {
+ if (pk_bitfield_contain (filters, PK_FILTER_ENUM_INSTALLED))
+ break;
+ pkglist = available;
+ } else {
+ continue;
+ }
+
+ for (i = 0; i < pkglist->pkg_count; i++) {
+ pkg = pkglist->pkgs[i];
+
+ /* check so that we don't show installed pkgs twice */
+ if (*list_filter == PK_FILTER_ENUM_NOT_INSTALLED &&
+ !pk_bitfield_contain (filters, PK_FILTER_ENUM_NOT_INSTALLED)) {
+ other_pkg = slapt_get_exact_pkg(installed,
+ pkg->name, pkg->version);
+ if (other_pkg != NULL) {
+ continue;
+ }
+ }
+
+ /* only display the newest pkg in each pkglist */
+ if (pk_bitfield_contain (filters, PK_FILTER_ENUM_NEWEST)) {
+ other_pkg = slapt_get_newest_pkg(pkglist, pkg->name);
+ if (slapt_cmp_pkgs(pkg, other_pkg) <= 0) {
+ continue;
+ }
+ }
+
+ state = pkg->installed ? PK_INFO_ENUM_INSTALLED : PK_INFO_ENUM_AVAILABLE;
+ package_id = _get_string_from_pkg(pkg);
+ summary = _get_pkg_summary(pkg);
+ pk_backend_package (backend, state, package_id, summary);
+ g_free((gpointer) summary);
+ g_free((gpointer) package_id);
+ }
+
+ }
+
+ slapt_free_pkg_list(available);
+ slapt_free_pkg_list(installed);
+
+ pk_backend_finished (backend);
+}
+
+/**
+ * backend_download_packages:
+ */
+static void
+backend_download_packages (PkBackend *backend, gchar **package_ids, const gchar *directory)
+{
+ guint i;
+ guint len;
+ const gchar *package_id;
+ const gchar *files;
+ const char *error;
+ struct slapt_pkg_list *installed;
+ struct slapt_pkg_list *available;
+ slapt_pkg_info_t *pkg;
+ const char *summary;
+ const char *note = NULL;
+ char *filename;
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_LOADING_CACHE);
+
+ installed = slapt_get_installed_pkgs();
+ available = slapt_get_available_pkgs();
+
+ pk_backend_set_status (backend, PK_STATUS_ENUM_DOWNLOAD);
+ pk_backend_set_percentage (backend, 0);
+
+ len = g_strv_length (package_ids);
+ for (i=0; i<len; i++) {
+ package_id = package_ids[i];
+ pkg = _get_pkg_from_string(package_id, available, installed);
+ if (pkg == NULL) {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_NOT_FOUND, "package not found");
+ continue;
+ }
+
+ summary = _get_pkg_summary(pkg);
+ pk_backend_package (backend, PK_INFO_ENUM_DOWNLOADING, package_id, summary);
+ g_free((gpointer) summary);
+
+ error = slapt_download_pkg(_config, pkg, note);
+ if (error == NULL) {
+
+ filename = slapt_gen_pkg_file_name(_config, pkg);
+ files = g_strdup(filename);
+
+ pk_backend_files (backend, package_id, files);
+
+ g_free((gpointer) files);
+ free(filename);
+ } else {
+ pk_backend_error_code (backend, PK_ERROR_ENUM_PACKAGE_DOWNLOAD_FAILED, error);
+ }
+ }
+
+ slapt_free_pkg_list(available);
+ slapt_free_pkg_list(installed);
+
+ pk_backend_set_percentage (backend, 100);
+ pk_backend_finished (backend);
+}
+
+PK_BACKEND_OPTIONS (
+ "Slack", /* description */
+ "Anders F Björklund <afb at users.sourceforge.net>", /* author */
+ backend_initialize, /* initalize */
+ backend_destroy, /* destroy */
+ backend_get_groups, /* get_groups */
+ backend_get_filters, /* get_filters */
+ backend_get_mime_types, /* get_mime_types */
+ backend_cancel, /* cancel */
+ backend_download_packages, /* download_packages */
+ NULL, /* get_categories */
+ backend_get_depends, /* get_depends */
+ backend_get_details, /* get_details */
+ NULL, /* get_distro_upgrades */
+ NULL, /* 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 */
+ backend_install_packages, /* install_packages */
+ NULL, /* install_signature */
+ backend_refresh_cache, /* refresh_cache */
+ backend_remove_packages, /* remove_packages */
+ backend_repo_enable, /* repo_enable */
+ NULL, /* repo_set_data */
+ backend_resolve, /* resolve */
+ NULL, /* rollback */
+ backend_search_details, /* search_details */
+ NULL, /* search_file */
+ backend_search_group, /* search_group */
+ backend_search_name, /* search_name */
+ backend_update_packages, /* update_packages */
+ NULL, /* update_system */
+ NULL, /* what_provides */
+ NULL, /* simulate_install_files */
+ NULL, /* simulate_install_packages */
+ NULL, /* simulate_remove_packages */
+ NULL /* simulate_update_packages */
+);
+
diff --git a/configure.ac b/configure.ac
index c869a72..936369e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -561,6 +561,7 @@ AC_ARG_ENABLE(poldek, AS_HELP_STRING([--enable-poldek],[use the poldek backend])
AC_ARG_ENABLE(portage, AS_HELP_STRING([--enable-portage],[use the portage backend]),enable_portage=$enableval,enable_portage=no)
AC_ARG_ENABLE(ports, AS_HELP_STRING([--enable-ports],[use the ports backend]),enable_ports=$enableval,enable_ports=no)
AC_ARG_ENABLE(razor, AS_HELP_STRING([--enable-razor],[use the razor backend]),enable_razor=$enableval,enable_razor=no)
+AC_ARG_ENABLE(slapt, AS_HELP_STRING([--enable-slapt],[use the slapt backend]),enable_slapt=$enableval,enable_slapt=no)
AC_ARG_ENABLE(smart, AS_HELP_STRING([--enable-smart],[use the SMART backend]),enable_smart=$enableval,enable_smart=no)
AC_ARG_ENABLE(urpmi, AS_HELP_STRING([--enable-urpmi],[use the URPMI backend]),enable_urpmi=$enableval,enable_urpmi=no)
AC_ARG_ENABLE(yum, AS_HELP_STRING([--enable-yum],[use the YUM backend]),enable_yum=$enableval,enable_yum=no)
@@ -579,6 +580,7 @@ AM_CONDITIONAL(BACKEND_TYPE_POLDEK, [test x$enable_poldek = xyes])
AM_CONDITIONAL(BACKEND_TYPE_PORTAGE, [test x$enable_portage = xyes])
AM_CONDITIONAL(BACKEND_TYPE_PORTS, [test x$enable_ports = xyes])
AM_CONDITIONAL(BACKEND_TYPE_RAZOR, [test x$enable_razor = xyes])
+AM_CONDITIONAL(BACKEND_TYPE_SLAPT, [test x$enable_slapt = xyes])
AM_CONDITIONAL(BACKEND_TYPE_SMART, [test x$enable_smart = xyes])
AM_CONDITIONAL(BACKEND_TYPE_URPMI, [test x$enable_urpmi = xyes])
AM_CONDITIONAL(BACKEND_TYPE_YUM, [test x$enable_yum = xyes])
@@ -645,7 +647,7 @@ dnl ---------------------------------------------------------------------------
AC_ARG_WITH([default_backend],
AS_HELP_STRING([--with-default-backend=<option>],
[Default backend to use
- alpm,apt,aptcc,box,conary,dummy,opkg,pisi,portage,ports,razor,smart,urpmi,yum,zypp (dummy)]))
+ alpm,apt,aptcc,box,conary,dummy,opkg,pisi,portage,ports,razor,slapt,smart,urpmi,yum,zypp (dummy)]))
# default to a sane option for the installed tool
if test x$with_default_backend = x; then
if test -f /usr/bin/yum ; then
@@ -658,6 +660,8 @@ if test x$with_default_backend = x; then
with_default_backend=conary
elif test -f /usr/bin/box-repos ; then
with_default_backend=box
+ elif test -f /usr/sbin/slapt-get ; then
+ with_default_backend=slapt
elif test -f /usr/bin/smart ; then
with_default_backend=smart
elif test -f /usr/bin/pisi ; then
@@ -757,6 +761,26 @@ if test x$enable_razor = xyes; then
AC_SUBST(RAZOR_LIBS)
fi
+if test x$enable_slapt = xyes; then
+ with_default_backend=dummy
+ AC_CHECK_HEADER([slapt.h],
+ [with_default_backend=slapt],
+ [AC_MSG_WARN([No slapt headers found - falling back to dummy backend])])
+ AC_CHECK_LIB(curl, curl_version, [
+ CURL_CFLAGS="`curl-config --cflags`"
+ CURL_LIBS="`curl-config --libs`"
+ ], [AC_MSG_ERROR([Can't find curl])])
+ AC_CHECK_LIB(gpgme, gpgme_check_version, [
+ AC_DEFINE(SLAPT_HAS_GPGME, 1, [Define to 1 if GPGME is available to Slapt])
+ GPGME_CFLAGS="`gpgme-config --cflags`"
+ GPGME_LIBS="`gpgme-config --libs`"
+ ], [AC_MSG_WARN([Can't find gpgme])])
+ SLAPT_CFLAGS="$CURL_CFLAGS $GPGME_CFLAGS"
+ SLAPT_LIBS="$CURL_LIBS $GPGME_LIBS -lslapt"
+ AC_SUBST(SLAPT_CFLAGS)
+ AC_SUBST(SLAPT_LIBS)
+fi
+
AC_SUBST(PK_CONF_DIR, "\$(sysconfdir)/PackageKit")
AC_SUBST(PK_YUM_PLUGIN_DIR, "\$(prefix)/lib/yum-plugins")
AC_SUBST(PK_DB_DIR, "\$(localstatedir)/lib/PackageKit")
@@ -799,6 +823,7 @@ backends/box/Makefile
backends/conary/Makefile
backends/dummy/Makefile
backends/opkg/Makefile
+backends/slapt/Makefile
backends/smart/Makefile
backends/test/Makefile
backends/test/helpers/Makefile
@@ -879,6 +904,7 @@ echo "
poldek backend: ${enable_poldek}
Portage backend: ${enable_portage}
Ports backend: ${enable_ports}
+ Slapt backend: ${enable_slapt}
SMART backend: ${enable_smart}
URPMI backend: ${enable_urpmi}
YUM backend: ${enable_yum}
commit e7a58cfe5574798565fbe7aa2b940a4b07fc8797
Author: warrink <warrink at fedoraproject.org>
Date: Wed Sep 9 17:06:32 2009 +0000
Sending translation for Dutch
diff --git a/po/nl.po b/po/nl.po
index 74fc733..b43f56f 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -5,8 +5,8 @@ msgid ""
msgstr ""
"Project-Id-Version: packagekit.master.nl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-08 08:28+0000\n"
-"PO-Revision-Date: 2009-09-08 10:44+0200\n"
+"POT-Creation-Date: 2009-09-09 15:38+0000\n"
+"PO-Revision-Date: 2009-09-09 19:05+0200\n"
"Last-Translator: Geert Warrink <geert.warrink at onsnet.nu>\n"
"Language-Team: nl <nl at li.org>\n"
"MIME-Version: 1.0\n"
@@ -17,152 +17,124 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
#. TRANSLATORS: this is an atomic transaction
-#: ../client/pk-console.c:237 ../client/pk-console-test.c:146
+#: ../client/pk-console.c:143
msgid "Transaction"
msgstr "Transactie"
#. TRANSLATORS: this is the time the transaction was started in system timezone
-#: ../client/pk-console.c:239 ../client/pk-console-test.c:148
+#: ../client/pk-console.c:145
msgid "System time"
msgstr "Systeemtijd"
#. TRANSLATORS: this is if the transaction succeeded or not
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:150
+#: ../client/pk-console.c:147
msgid "Succeeded"
msgstr "Geslaagd"
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:150
+#: ../client/pk-console.c:147
msgid "True"
msgstr "Waar"
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:150
+#: ../client/pk-console.c:147
msgid "False"
msgstr "Niet waar"
#. TRANSLATORS: this is the transactions role, e.g. "update-system"
#. TRANSLATORS: the trasaction role, e.g. update-system
-#: ../client/pk-console.c:243 ../client/pk-console-test.c:152
-#: ../src/pk-polkit-action-lookup.c:327
+#: ../client/pk-console.c:149 ../src/pk-polkit-action-lookup.c:327
msgid "Role"
msgstr "Rol"
#. TRANSLATORS: this is The duration of the transaction
-#: ../client/pk-console.c:248 ../client/pk-console-test.c:157
+#: ../client/pk-console.c:154
msgid "Duration"
msgstr "Duur"
-#: ../client/pk-console.c:248 ../client/pk-console-test.c:157
+#: ../client/pk-console.c:154
msgid "(seconds)"
msgstr "(seconden)"
#. 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:252 ../client/pk-console-test.c:161
-#: ../src/pk-polkit-action-lookup.c:341
+#: ../client/pk-console.c:158 ../src/pk-polkit-action-lookup.c:341
msgid "Command line"
msgstr "Commando regel"
#. TRANSLATORS: this is the user ID of the user that started the action
-#: ../client/pk-console.c:254 ../client/pk-console-test.c:163
+#: ../client/pk-console.c:160
msgid "User ID"
msgstr "Gebruiker ID"
#. TRANSLATORS: this is the username, e.g. hughsie
-#: ../client/pk-console.c:261 ../client/pk-console-test.c:170
+#: ../client/pk-console.c:167
msgid "Username"
msgstr "Gebruikernaam"
#. TRANSLATORS: this is the users real name, e.g. "Richard Hughes"
-#: ../client/pk-console.c:265 ../client/pk-console-test.c:174
+#: ../client/pk-console.c:171
msgid "Real name"
msgstr "Werkelijke naam"
-#: ../client/pk-console.c:273 ../client/pk-console-test.c:182
+#: ../client/pk-console.c:179
msgid "Affected packages:"
msgstr "Betreffende pakketten"
-#: ../client/pk-console.c:275 ../client/pk-console-test.c:184
+#: ../client/pk-console.c:181
msgid "Affected packages: None"
msgstr "Betreffende pakketten: Geen"
-#. TRANSLATORS: When processing, we might have to remove other dependencies
-#: ../client/pk-console.c:336 ../client/pk-task-text.c:220
-msgid "The following packages have to be removed:"
-msgstr "De volgende pakketten moeten worden verwijderd:"
-
-#. TRANSLATORS: When processing, we might have to install other dependencies
-#: ../client/pk-console.c:339 ../client/pk-task-text.c:225
-msgid "The following packages have to be installed:"
-msgstr "De volgende pakketten moeten worden geïnstalleerd"
-
-#. TRANSLATORS: When processing, we might have to update other dependencies
-#: ../client/pk-console.c:342 ../client/pk-task-text.c:230
-msgid "The following packages have to be updated:"
-msgstr "De volgende pakketten moeten worden vernieuwd:"
-
-#. TRANSLATORS: When processing, we might have to reinstall other dependencies
-#: ../client/pk-console.c:345 ../client/pk-task-text.c:235
-msgid "The following packages have to be reinstalled:"
-msgstr "De volgende pakketten moeten opnieuw geïnstalleerd worden:"
-
-#. TRANSLATORS: When processing, we might have to downgrade other dependencies
-#: ../client/pk-console.c:348 ../client/pk-task-text.c:240
-msgid "The following packages have to be downgraded:"
-msgstr "De volgende pakketten moeten gedegradeerd worden:"
-
#. TRANSLATORS: this is the distro, e.g. Fedora 10
-#: ../client/pk-console.c:362 ../client/pk-console-test.c:204
+#: ../client/pk-console.c:201
msgid "Distribution"
msgstr "Distributie"
#. TRANSLATORS: this is type of update, stable or testing
-#: ../client/pk-console.c:364 ../client/pk-console-test.c:206
+#: ../client/pk-console.c:203
msgid "Type"
msgstr "Type"
#. TRANSLATORS: this is any summary text describing the upgrade
#. TRANSLATORS: this is the summary of the group
-#. TRANSLATORS: this is any summary text describing the upgrade
-#. TRANSLATORS: this is the summary of the group
-#: ../client/pk-console.c:366 ../client/pk-console.c:389
-#: ../client/pk-console-test.c:208 ../client/pk-console-test.c:229
+#: ../client/pk-console.c:205 ../client/pk-console.c:226
msgid "Summary"
msgstr "Samenvatting"
#. TRANSLATORS: this is the group category name
-#: ../client/pk-console.c:378 ../client/pk-console-test.c:218
+#: ../client/pk-console.c:215
msgid "Category"
msgstr "Categorie"
#. TRANSLATORS: this is group identifier
-#: ../client/pk-console.c:380 ../client/pk-console-test.c:220
+#: ../client/pk-console.c:217
msgid "ID"
msgstr "ID"
#. TRANSLATORS: this is the parent group
-#: ../client/pk-console.c:383 ../client/pk-console-test.c:223
+#: ../client/pk-console.c:220
msgid "Parent"
msgstr "Ouder"
#. TRANSLATORS: this is the name of the parent group
-#: ../client/pk-console.c:386 ../client/pk-console-test.c:226
+#: ../client/pk-console.c:223
msgid "Name"
msgstr "Naam"
#. TRANSLATORS: this is preferred icon for the group
-#: ../client/pk-console.c:392 ../client/pk-console-test.c:232
+#: ../client/pk-console.c:229
msgid "Icon"
msgstr "Icoon"
#. TRANSLATORS: this is a header for the package that can be updated
-#: ../client/pk-console.c:407 ../client/pk-console-test.c:246
+#: ../client/pk-console.c:243
msgid "Details about the update:"
msgstr "Details van de vernieuwing:"
#. TRANSLATORS: details about the update, package name and version
+#. 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:409 ../client/pk-console-test.c:252
-#: ../client/pk-task-text.c:101 ../client/pk-task-text.c:153
+#: ../client/pk-console.c:249 ../lib/packagekit-glib2/pk-task-text.c:105
+#: ../lib/packagekit-glib2/pk-task-text.c:172
#: ../src/pk-polkit-action-lookup.c:352
msgid "Package"
msgid_plural "Packages"
@@ -170,121 +142,143 @@ msgstr[0] "Pakket"
msgstr[1] "Pakketten"
#. TRANSLATORS: details about the update, any packages that this update updates
-#: ../client/pk-console.c:412 ../client/pk-console-test.c:255
+#: ../client/pk-console.c:252
msgid "Updates"
msgstr "Vernieuwingen"
#. TRANSLATORS: details about the update, any packages that this update obsoletes
-#: ../client/pk-console.c:416 ../client/pk-console-test.c:259
+#: ../client/pk-console.c:256
msgid "Obsoletes"
msgstr "Verouderde pakketten"
#. TRANSLATORS: details about the update, the vendor URLs
-#: ../client/pk-console.c:420 ../client/pk-console-test.c:263
-#: ../client/pk-task-text.c:154
+#. TRANSLATORS: the vendor (e.g. vmware) that is providing the EULA
+#: ../client/pk-console.c:260 ../lib/packagekit-glib2/pk-task-text.c:175
msgid "Vendor"
msgstr "Verkoper"
#. TRANSLATORS: details about the update, the bugzilla URLs
-#: ../client/pk-console.c:424 ../client/pk-console-test.c:267
+#: ../client/pk-console.c:264
msgid "Bugzilla"
msgstr "Bugzilla"
#. TRANSLATORS: details about the update, the CVE URLs
-#: ../client/pk-console.c:428 ../client/pk-console-test.c:271
+#: ../client/pk-console.c:268
msgid "CVE"
msgstr "CVE"
#. TRANSLATORS: details about the update, if the package requires a restart
-#: ../client/pk-console.c:432 ../client/pk-console-test.c:275
+#: ../client/pk-console.c:272
msgid "Restart"
msgstr "Herstarten"
#. TRANSLATORS: details about the update, any description of the update
-#: ../client/pk-console.c:436 ../client/pk-console-test.c:279
+#: ../client/pk-console.c:276
msgid "Update text"
msgstr "Vernieuw tekst"
#. TRANSLATORS: details about the update, the changelog for the package
-#: ../client/pk-console.c:440 ../client/pk-console-test.c:283
+#: ../client/pk-console.c:280
msgid "Changes"
msgstr "Veranderingen"
#. TRANSLATORS: details about the update, the ongoing state of the update
-#: ../client/pk-console.c:444 ../client/pk-console-test.c:287
+#: ../client/pk-console.c:284
msgid "State"
msgstr "Status"
#. TRANSLATORS: details about the update, date the update was issued
-#: ../client/pk-console.c:449 ../client/pk-console-test.c:292
+#: ../client/pk-console.c:289
msgid "Issued"
msgstr "Uitgegeven"
#. TRANSLATORS: details about the update, date the update was updated
-#: ../client/pk-console.c:454 ../client/pk-console-test.c:297
+#: ../client/pk-console.c:294
msgid "Updated"
msgstr "Vernieuwd"
#. TRANSLATORS: if the repo is enabled
-#: ../client/pk-console.c:474 ../client/pk-console-test.c:315
+#: ../client/pk-console.c:312
msgid "Enabled"
msgstr "Aangezit"
#. TRANSLATORS: if the repo is disabled
-#: ../client/pk-console.c:477 ../client/pk-console-test.c:318
+#: ../client/pk-console.c:315
msgid "Disabled"
msgstr "Uitgezet"
-#: ../client/pk-console.c:554 ../client/pk-console.c:556
-msgid "Percentage"
-msgstr "Percentage"
-
-#: ../client/pk-console.c:556
-msgid "Unknown"
-msgstr "Onbekend"
-
#. TRANSLATORS: a package requires the system to be restarted
-#: ../client/pk-console.c:598 ../client/pk-console-test.c:340
+#: ../client/pk-console.c:337
msgid "System restart required by:"
msgstr "Herstart systeem vereist door:"
#. TRANSLATORS: a package requires the session to be restarted
-#: ../client/pk-console.c:601 ../client/pk-console-test.c:343
+#: ../client/pk-console.c:340
msgid "Session restart required:"
msgstr "Het is vereist het systeem te herstarten:"
#. TRANSLATORS: a package requires the system to be restarted due to a security update
-#: ../client/pk-console.c:604 ../client/pk-console-test.c:346
+#: ../client/pk-console.c:343
msgid "System restart (security) required by:"
msgstr "Herstart systeem (beveiliging) vereist door:"
#. TRANSLATORS: a package requires the session to be restarted due to a security update
-#: ../client/pk-console.c:607 ../client/pk-console-test.c:349
+#: ../client/pk-console.c:346
msgid "Session restart (security) required:"
msgstr "Herstart sessie (beveiliging) vereist door:"
#. TRANSLATORS: a package requires the application to be restarted
-#: ../client/pk-console.c:610 ../client/pk-console-test.c:352
+#: ../client/pk-console.c:349
msgid "Application restart required by:"
msgstr "Herstart vereist door toepassing:"
+#. TRANSLATORS: This a list of details about the package
+#: ../client/pk-console.c:366
+msgid "Package description"
+msgstr "Pakketomschrijving"
+
+#. TRANSLATORS: This a message (like a little note that may be of interest) from the transaction
+#: ../client/pk-console.c:384
+msgid "Message:"
+msgstr "Bericht:"
+
+#. TRANSLATORS: This where the package has no files
+#: ../client/pk-console.c:398
+msgid "No files"
+msgstr "Geen bestanden"
+
+#. TRANSLATORS: This a list files contained in the package
+#: ../client/pk-console.c:403
+msgid "Package files"
+msgstr "Pakketbestanden"
+
+#. TRANSLATORS: we failed to get any results, which is pretty fatal in my book
+#: ../client/pk-console.c:462
+msgid "Fatal error"
+msgstr "Fatale fout"
+
+#. TRANSLATORS: we failed, but there was no error set
+#: ../client/pk-console.c:475
+msgid "Transaction failed with no error"
+msgstr "De transactie faalde zonder fout"
+
+#. TRANSLATORS: the transaction failed in a way we could not expect
+#: ../client/pk-console.c:480
+msgid "The transaction failed"
+msgstr "De transactie faalde"
+
#. TRANSLATORS: a package needs to restart their system
-#: ../client/pk-console.c:665 ../client/pk-console-test.c:541
+#: ../client/pk-console.c:554
msgid "Please restart the computer to complete the update."
msgstr "Herstart a.u.b de computer om de verneuwing af te maken."
#. TRANSLATORS: a package needs to restart the session
-#: ../client/pk-console.c:668 ../client/pk-console-test.c:544
+#: ../client/pk-console.c:557
msgid "Please logout and login to complete the update."
msgstr "Log a.u.b uit en weer in om de vernieuwing af te maken."
-#. TRANSLATORS: a package needs to restart the application
-#: ../client/pk-console.c:671
-msgid "Please restart the application as it is being used."
-msgstr "Herstart a.ub. de toepassing omdat deze in gebruik was."
-
#. TRANSLATORS: a package needs to restart their system (due to security)
-#: ../client/pk-console.c:674 ../client/pk-console-test.c:547
+#: ../client/pk-console.c:560
msgid ""
"Please restart the computer to complete the update as important security "
"updates have been installed."
@@ -293,545 +287,210 @@ msgstr ""
"beveiligings vernieuwingen geïnstaleerd zijn."
#. TRANSLATORS: a package needs to restart the session (due to security)
-#: ../client/pk-console.c:677 ../client/pk-console-test.c:550
+#: ../client/pk-console.c:563
msgid ""
"Please logout and login to complete the update as important security updates "
"have been installed."
msgstr "Log a.u.b. uit en weer in om de verniewing af te maken."
-#. TRANSLATORS: The package is already installed on the system
-#: ../client/pk-console.c:809
-#, c-format
-msgid "The package %s is already installed"
-msgstr "Het pakket %s is reeds geïnstalleerd"
-
-#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:817
-#, c-format
-msgid "The package %s could not be installed: %s"
-msgstr "Het pakket %s kon niet worden geïnstalleerd: %s"
-
-#. TRANSLATORS: There was a programming error that shouldn't happen. The detailed error follows
-#: ../client/pk-console.c:843 ../client/pk-console.c:891
-#: ../client/pk-console.c:915 ../client/pk-console.c:963
-#: ../client/pk-console.c:1059 ../client/pk-console.c:1172
-#: ../client/pk-console.c:1233 ../client/pk-tools-common.c:132
-#: ../client/pk-tools-common.c:151 ../client/pk-tools-common.c:159
-#, c-format
-msgid "Internal error: %s"
-msgstr "Interne fout: %s"
-
-#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#. ask the user
-#: ../client/pk-console.c:875 ../client/pk-console.c:947
-#: ../client/pk-console.c:1265 ../client/pk-task-text.c:299
-msgid "Proceed with changes?"
-msgstr "Doorgaan met veranderingen?"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:880 ../client/pk-console.c:952
-msgid "The package install was canceled!"
-msgstr "De pakket installatie is afgebroken!"
-
-#. TRANSLATORS: There was an error installing the packages. The detailed error follows
-#: ../client/pk-console.c:899 ../client/pk-console.c:1633
-#, c-format
-msgid "This tool could not install the packages: %s"
-msgstr "Dit programma kon niet de pakketten %s installeren."
-
-#. TRANSLATORS: There was an error installing the files. The detailed error follows
-#: ../client/pk-console.c:971
-#, c-format
-msgid "This tool could not install the files: %s"
-msgstr "De bestanden %s konden niet worden geïnstalleerd."
-
-#. TRANSLATORS: The package name was not found in the installed list. The detailed error follows
-#: ../client/pk-console.c:1027
-#, c-format
-msgid "This tool could not remove %s: %s"
-msgstr "Dit programma kon %s niet verwijderen: %s"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1050 ../client/pk-console.c:1088
-#: ../client/pk-console.c:1117
-#, c-format
-msgid "This tool could not remove the packages: %s"
-msgstr "Dit programma kon het pakket %s niet verwijderen."
-
-#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#: ../client/pk-console.c:1103
-msgid "Proceed with additional packages?"
-msgstr "Doorgaan met additionele pakketten?"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1108
-msgid "The package removal was canceled!"
-msgstr "Het verwijderen van pakketten is afgebroken!"
-
-#. TRANSLATORS: The package name was not found in any software sources
-#: ../client/pk-console.c:1149
-#, c-format
-msgid "This tool could not download the package %s as it could not be found"
-msgstr ""
-"Dit programma kon het pakket %s niet downloaden omdat het nergens gevonden "
-"kon worden."
-
-#. TRANSLATORS: Could not download the packages for some reason. The detailed error follows
-#: ../client/pk-console.c:1180
+#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
+#: ../client/pk-console.c:584
#, c-format
-msgid "This tool could not download the packages: %s"
-msgstr "Dit programma kon de pakketten niet downloaden: %s"
+msgid "This tool could not find any available package: %s"
+msgstr "Dit programma kon geen enkel beschikbaar pakket %s vinden."
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1212 ../client/pk-console.c:1224
-#: ../client/pk-console.c:1279
+#: ../client/pk-console.c:612
#, c-format
-msgid "This tool could not update %s: %s"
-msgstr "Dit programma kon %s niet updaten: %s"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1270
-msgid "The package update was canceled!"
-msgstr "De pakket vernieuwing is afgebroken!"
+msgid "This tool could not find the installed package: %s"
+msgstr "Dit programma kon het geïinstallerde pakket %s niet vinden."
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1303 ../client/pk-console.c:1311
+#: ../client/pk-console.c:640 ../client/pk-console.c:668
#, c-format
-msgid "This tool could not get the requirements for %s: %s"
-msgstr "Dit programma kon niet de benodigdheden voor %s vinden: %s"
+msgid "This tool could not find the package: %s"
+msgstr "Dit programma kon het pakket %s niet vinden."
+#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
#. TRANSLATORS: There was an error getting the dependencies for the package. The detailed error follows
-#: ../client/pk-console.c:1333 ../client/pk-console.c:1341
-#, c-format
-msgid "This tool could not get the dependencies for %s: %s"
-msgstr "De afhankelijkheden voor %s konden niet worden verkregen: %s"
-
#. TRANSLATORS: There was an error getting the details about the package. The detailed error follows
-#: ../client/pk-console.c:1363 ../client/pk-console.c:1371
-#, c-format
-msgid "This tool could not get package details for %s: %s"
-msgstr "Dit programma kon geen pakketdetails vinden voor %s: %s"
-
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1393
-#, c-format
-msgid "This tool could not find the files for %s: %s"
-msgstr "Dit programma kon de bestanden voor %s niet vinden: %s"
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1401
-#, c-format
-msgid "This tool could not get the file list for %s: %s"
-msgstr "Dit programma kon de bestandenlijst voor %s niet vinden: %s"
-
-#. TRANSLATORS: There was an error getting the list of packages. The filename follows
-#: ../client/pk-console.c:1423
-#, c-format
-msgid "File already exists: %s"
-msgstr "Bestand bestaat reeds: %s"
-
-#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1428 ../client/pk-console.c:1484
-#: ../client/pk-console.c:1559
-msgid "Getting package list"
-msgstr "Ophalen Pakketlijst"
-
-#. TRANSLATORS: There was an error getting the list of packages. The detailed error follows
-#: ../client/pk-console.c:1434 ../client/pk-console.c:1490
-#: ../client/pk-console.c:1565
-#, c-format
-msgid "This tool could not get package list: %s"
-msgstr "Dit programma kon de pakketlijst niet vinden: %s"
-
-#. TRANSLATORS: There was an error saving the list
-#: ../client/pk-console.c:1445
+#: ../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 "Failed to save to disk"
-msgstr "Vastleggen op schijf niet gelukt"
-
-#. TRANSLATORS: There was an error getting the list. The filename follows
-#: ../client/pk-console.c:1479 ../client/pk-console.c:1554
-#, c-format
-msgid "File does not exist: %s"
-msgstr "Bestand bestaat niet: %s"
-
-#. TRANSLATORS: header to a list of packages newly added
-#: ../client/pk-console.c:1511
-msgid "Packages to add"
-msgstr "Toe te voegen pakketten"
-
-#. TRANSLATORS: header to a list of packages removed
-#: ../client/pk-console.c:1519
-msgid "Packages to remove"
-msgstr "Te verwijderen pakketten"
-
-#. TRANSLATORS: We didn't find any differences
-#: ../client/pk-console.c:1587
-#, c-format
-msgid "No new packages need to be installed"
-msgstr "Er hoeven geen nieuwe pakketten te worden toegevoegd"
-
-#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1593
-msgid "To install"
-msgstr "Te installeren"
-
-#. TRANSLATORS: searching takes some time....
-#: ../client/pk-console.c:1605
-msgid "Searching for package: "
-msgstr "Pakketten worden gezocht (kan even duren): "
-
-#. TRANSLATORS: package was not found -- this is the end of a string ended in ...
-#: ../client/pk-console.c:1609
-msgid "not found."
-msgstr "niet gevonden."
-
-#. TRANSLATORS: We didn't find any packages to install
-#: ../client/pk-console.c:1620
-#, c-format
-msgid "No packages can be found to install"
-msgstr "Er kunnen geen pakketten worden gevonden om te installeren"
-
-#. TRANSLATORS: installing new packages from package list
-#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
-#: ../client/pk-console.c:1626
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:885
-#, c-format
-msgid "Installing packages"
-msgstr "Pakketten installeren"
-
-#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1662
-#, c-format
-msgid "This tool could not find the update details for %s: %s"
-msgstr "Dit programma kon de update-details voor %s niet vinden: %s"
-
-#. TRANSLATORS: There was an error getting the details about the update for the package. The detailed error follows
-#: ../client/pk-console.c:1670
-#, c-format
-msgid "This tool could not get the update details for %s: %s"
-msgstr "Dit programma kon de update-details voor %s niet verkrijgen: %s"
-
-#. TRANSLATORS: This was an unhandled error, and we don't have _any_ context
-#: ../client/pk-console.c:1701
-msgid "Error:"
-msgstr "Fout:"
-
-#. TRANSLATORS: This a list of details about the package
-#: ../client/pk-console.c:1715 ../client/pk-console-test.c:369
-msgid "Package description"
-msgstr "Pakketomschrijving"
-
-#. TRANSLATORS: This a message (like a little note that may be of interest) from the transaction
-#: ../client/pk-console.c:1731 ../client/pk-console-test.c:387
-msgid "Message:"
-msgstr "Bericht:"
-
-#. TRANSLATORS: This a list files contained in the package
-#: ../client/pk-console.c:1759 ../client/pk-console-test.c:406
-msgid "Package files"
-msgstr "Pakketbestanden"
-
-#. TRANSLATORS: This where the package has no files
-#: ../client/pk-console.c:1767 ../client/pk-console-test.c:401
-msgid "No files"
-msgstr "Geen bestanden"
-
-#. TRANSLATORS: This a request for a GPG key signature from the backend, which the client will prompt for later
-#: ../client/pk-console.c:1790
-msgid "Repository signature required"
-msgstr "Repository signatuur vereist"
-
-#. TRANSLATORS: This a prompt asking the user to import the security key
-#. ask the user
-#: ../client/pk-console.c:1800 ../client/pk-task-text.c:113
-msgid "Do you accept this signature?"
-msgstr "Accepteert u deze signatuur?"
-
-#. TRANSLATORS: This is where the user declined the security key
-#: ../client/pk-console.c:1804 ../client/pk-task-text.c:117
-msgid "The signature was not accepted."
-msgstr "De signatuur werd niet geaccepteerd"
-
-#. TRANSLATORS: This a request for a EULA
-#: ../client/pk-console.c:1838
-msgid "End user license agreement required"
-msgstr "Eindgebruiker licentie overeenkomst vereist"
-
-#. TRANSLATORS: This a prompt asking the user to agree to the license
-#: ../client/pk-console.c:1845
-msgid "Do you agree to this license?"
-msgstr "Gaat u accoord met deze licentie?"
-
-#. TRANSLATORS: This is where the user declined the license
-#: ../client/pk-console.c:1849
-msgid "The license was refused."
-msgstr "De licentie werd geweigerd."
+msgid "This tool could not find all the packages: %s"
+msgstr "Dit programma kon niet alle pakketten vinden: %s"
#. TRANSLATORS: This is when the daemon crashed, and we are up shit creek without a paddle
-#: ../client/pk-console.c:1878 ../client/pk-console-test.c:819
+#: ../client/pk-console.c:832
msgid "The daemon crashed mid-transaction!"
msgstr "De service is midden in de transactie gecrashed!"
#. TRANSLATORS: This is the header to the --help menu
-#: ../client/pk-console.c:1931 ../client/pk-console-test.c:853
+#: ../client/pk-console.c:866
msgid "PackageKit Console Interface"
msgstr "PackageKit console-interface"
#. these are commands we can use with pkcon
-#: ../client/pk-console.c:1933 ../client/pk-console-test.c:855
+#: ../client/pk-console.c:868
msgid "Subcommands:"
msgstr "Subopdrachten:"
+#. TRANSLATORS: we keep a database updated with the time that an action was last executed
+#: ../client/pk-console.c:947
+msgid "Failed to get the time since this action was last completed"
+msgstr ""
+"Verkrijgen van de tijd tussen laatste actie en deze actie is niet gelukt"
+
#. TRANSLATORS: command line argument, if we should show debugging information
#. TRANSLATORS: if we should show debugging data
-#: ../client/pk-console.c:2026 ../client/pk-console-test.c:969
-#: ../client/pk-generate-pack.c:185 ../client/pk-generate-pack-test.c:225
-#: ../client/pk-monitor.c:128 ../client/pk-monitor-test.c:282
-#: ../contrib/command-not-found/pk-command-not-found.c:616
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:549
+#: ../client/pk-console.c:982 ../client/pk-generate-pack.c:222
+#: ../client/pk-monitor.c:282
+#: ../contrib/command-not-found/pk-command-not-found.c:614
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:500
#: ../contrib/device-rebind/pk-device-rebind.c:293 ../src/pk-main.c:211
msgid "Show extra debugging information"
msgstr "Extra debuginformatie tonen"
#. TRANSLATORS: command line argument, just show the version string
-#: ../client/pk-console.c:2029 ../client/pk-console-test.c:972
-#: ../client/pk-monitor.c:130 ../client/pk-monitor-test.c:284
+#: ../client/pk-console.c:985 ../client/pk-monitor.c:284
msgid "Show the program version and exit"
msgstr "Programmaversie tonen en sluiten"
#. TRANSLATORS: command line argument, use a filter to narrow down results
-#: ../client/pk-console.c:2032 ../client/pk-console-test.c:975
+#: ../client/pk-console.c:988
msgid "Set the filter, e.g. installed"
msgstr "Filter instellen, bijvoorbeeld geïnstalleerd"
#. TRANSLATORS: command line argument, work asynchronously
-#: ../client/pk-console.c:2035 ../client/pk-console-test.c:978
+#: ../client/pk-console.c:991
msgid "Exit without waiting for actions to complete"
msgstr "Afsluiten zonder te wachten tot de transacties zijn afgerond"
-#. TRANSLATORS: This is when we could not connect to the system bus, and is fatal
-#: ../client/pk-console.c:2062
-msgid "This tool could not connect to system DBUS."
-msgstr "Er kon geen verbinding worden gelegd met system DBUS"
+#. TRANSLATORS: we failed to contact the daemon
+#: ../client/pk-console.c:1016
+msgid "Failed to contact PackageKit"
+msgstr "Contact met PackageKit krijgen mislukte."
#. TRANSLATORS: The user specified an incorrect filter
-#: ../client/pk-console.c:2152 ../client/pk-console-test.c:1055
+#: ../client/pk-console.c:1068
msgid "The filter specified was invalid"
msgstr "De opgegeven filter was ongeldig"
#. TRANSLATORS: a search type can be name, details, file, etc
-#: ../client/pk-console.c:2171 ../client/pk-console-test.c:1074
+#: ../client/pk-console.c:1087
msgid "A search type is required, e.g. name"
msgstr "Een zoektype is verplicht, b.v. naam"
#. TRANSLATORS: the user needs to provide a search term
-#: ../client/pk-console.c:2178 ../client/pk-console.c:2187
-#: ../client/pk-console.c:2196 ../client/pk-console.c:2205
-#: ../client/pk-console-test.c:1081 ../client/pk-console-test.c:1093
-#: ../client/pk-console-test.c:1105 ../client/pk-console-test.c:1117
+#: ../client/pk-console.c:1094 ../client/pk-console.c:1106
+#: ../client/pk-console.c:1118 ../client/pk-console.c:1130
msgid "A search term is required"
msgstr "Een zoekterm is vereist"
#. TRANSLATORS: the search type was provided, but invalid
-#: ../client/pk-console.c:2212 ../client/pk-console-test.c:1127
+#: ../client/pk-console.c:1140
msgid "Invalid search type"
msgstr "Ongeldig zoektype"
#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console.c:2218
-msgid "A package name or filename to install is required"
-msgstr "Een pakketnaam of bestandsnaam om te installeren is vereist"
+#: ../client/pk-console.c:1146
+msgid "A package name to install is required"
+msgstr "Een pakketnaam om te installeren is vereist"
+
+#. TRANSLATORS: the user did not specify what they wanted to install
+#: ../client/pk-console.c:1155
+msgid "A filename to install is required"
+msgstr "Een bestandsnaam om te installeren is vereist"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2227 ../client/pk-console-test.c:1154
+#: ../client/pk-console.c:1167
msgid "A type, key_id and package_id are required"
msgstr "Er moet een type worden opgegeven, key_id of package_id"
#. TRANSLATORS: the user did not specify what they wanted to remove
-#: ../client/pk-console.c:2236 ../client/pk-console-test.c:1165
+#: ../client/pk-console.c:1178
msgid "A package name to remove is required"
msgstr "Een te verwijderen pakketnaam is vereist"
#. TRANSLATORS: the user did not specify anything about what to download or where
-#: ../client/pk-console.c:2244 ../client/pk-console-test.c:1174
+#: ../client/pk-console.c:1187
msgid "A destination directory and the package names to download are required"
msgstr "Een doelmap en dan de namen van te downloaden pakketten zijn vereist"
#. TRANSLATORS: the directory does not exist, so we can't continue
-#: ../client/pk-console.c:2251 ../client/pk-console-test.c:1181
+#: ../client/pk-console.c:1194
msgid "Directory not found"
msgstr "Map niet gevonden"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2259 ../client/pk-console-test.c:1190
+#: ../client/pk-console.c:1203
msgid "A licence identifier (eula-id) is required"
msgstr "Een licentie indentificatie (eula-id) is vereis"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2269 ../client/pk-console-test.c:1201
+#: ../client/pk-console.c:1214
msgid "A transaction identifier (tid) is required"
msgstr "Een transactie indentificatie (tid) is vereist"
#. TRANSLATORS: The user did not specify a package name
-#: ../client/pk-console.c:2286 ../client/pk-console-test.c:1222
+#: ../client/pk-console.c:1235
msgid "A package name to resolve is required"
msgstr "Een pakketnaam om te gebruiken is vereist"
#. TRANSLATORS: The user did not specify a repository (software source) name
-#: ../client/pk-console.c:2295 ../client/pk-console.c:2304
-#: ../client/pk-console-test.c:1233 ../client/pk-console-test.c:1244
+#: ../client/pk-console.c:1246 ../client/pk-console.c:1257
msgid "A repository name is required"
msgstr "Een naam van een repository is vereist"
#. TRANSLATORS: The user didn't provide any data
-#: ../client/pk-console.c:2313 ../client/pk-console-test.c:1255
+#: ../client/pk-console.c:1268
msgid "A repo name, parameter and value are required"
msgstr "Een repo naam, parameter en waarde zijn vereist"
#. TRANSLATORS: The user didn't specify what action to use
-#: ../client/pk-console.c:2327 ../client/pk-console-test.c:1272
+#: ../client/pk-console.c:1285
msgid "An action, e.g. 'update-system' is required"
msgstr "Een actie, b.v. 'update-system' is vereist"
#. TRANSLATORS: The user specified an invalid action
-#: ../client/pk-console.c:2334 ../client/pk-console-test.c:1279
+#: ../client/pk-console.c:1292
msgid "A correct role is required"
msgstr "Een correcte rol is vereist"
-#. TRANSLATORS: we keep a database updated with the time that an action was last executed
-#: ../client/pk-console.c:2341 ../client/pk-console-test.c:934
-msgid "Failed to get the time since this action was last completed"
-msgstr ""
-"Verkrijgen van de tijd tussen laatste actie en deze actie is niet gelukt"
-
#. TRANSLATORS: The user did not provide a package name
#. TRANSLATORS: This is when the user fails to supply the package name
-#: ../client/pk-console.c:2351 ../client/pk-console.c:2363
-#: ../client/pk-console.c:2372 ../client/pk-console.c:2390
-#: ../client/pk-console.c:2399 ../client/pk-console-test.c:1289
-#: ../client/pk-console-test.c:1304 ../client/pk-console-test.c:1313
-#: ../client/pk-console-test.c:1333 ../client/pk-console-test.c:1342
-#: ../client/pk-generate-pack.c:241 ../client/pk-generate-pack-test.c:288
+#: ../client/pk-console.c:1302 ../client/pk-console.c:1317
+#: ../client/pk-console.c:1326 ../client/pk-console.c:1346
+#: ../client/pk-console.c:1355 ../client/pk-generate-pack.c:285
msgid "A package name is required"
msgstr "Een pakketnaam is vereist"
#. TRANSLATORS: each package "provides" certain things, e.g. mime(gstreamer-decoder-mp3), the user didn't specify it
-#: ../client/pk-console.c:2381 ../client/pk-console-test.c:1322
+#: ../client/pk-console.c:1335
msgid "A package provide string is required"
msgstr "Een pakket geleverde string is vereist"
-#. TRANSLATORS: The user didn't specify a filename to create as a list
-#: ../client/pk-console.c:2408
-msgid "A list file name to create is required"
-msgstr "Een lijstbestandsnaam om aan te maken is vereist"
-
-#. TRANSLATORS: The user didn't specify a filename to open as a list
-#: ../client/pk-console.c:2418 ../client/pk-console.c:2428
-msgid "A list file to open is required"
-msgstr "Een lijstbestand om te open is vereist"
-
#. TRANSLATORS: The user tried to use an unsupported option on the command line
-#: ../client/pk-console.c:2482 ../client/pk-console-test.c:1402
+#: ../client/pk-console.c:1415
#, c-format
msgid "Option '%s' is not supported"
msgstr "Optie '%s' wordt niet ondersteund"
-#. TRANSLATORS: User does not have permission to do this
-#: ../client/pk-console.c:2495
-msgid "Incorrect privileges for this operation"
-msgstr "Onjuiste privileges voor deze operatie"
-
-#. TRANSLATORS: Generic failure of what they asked to do
-#. /* TRANSLATORS: User does not have permission to do this */
-#. g_print ("%s\n", _("Incorrect privileges for this operation"));
#. TRANSLATORS: Generic failure of what they asked to do
-#: ../client/pk-console.c:2498 ../client/pk-console-test.c:1414
+#: ../client/pk-console.c:1425
msgid "Command failed"
msgstr "Opdracht mislukt"
-#: ../client/pk-console-shared.c:53 ../client/pk-tools-common.c:51
-#, c-format
-msgid "Please enter a number from 1 to %i: "
-msgstr "Voer een nummer in van 1 tot %i: "
-
-#. TRANSLATORS: more than one package could be found that matched, to follow is a list of possible packages
-#: ../client/pk-console-shared.c:153 ../client/pk-tools-common.c:200
-msgid "More than one package matches:"
-msgstr "Er zijn meerdere pakketten die overeenkomen:"
-
-#. TRANSLATORS: This finds out which package in the list to use
-#: ../client/pk-console-shared.c:162 ../client/pk-tools-common.c:207
-msgid "Please choose the correct package: "
-msgstr "Kies alstublieft het juiste pakket: "
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console-test.c:571
-#, c-format
-msgid "This tool could not find the available package: %s"
-msgstr "Dit programma kon het beschikbare pakket %s niet vinden."
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console-test.c:599
-#, c-format
-msgid "This tool could not find the installed package: %s"
-msgstr "Dit programma kon het geïinstallerde pakket %s niet vinden."
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console-test.c:627 ../client/pk-console-test.c:655
-#, c-format
-msgid "This tool could not find the package: %s"
-msgstr "Dit programma kon het pakket %s niet vinden."
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#. 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-test.c:683 ../client/pk-console-test.c:711
-#: ../client/pk-console-test.c:739 ../client/pk-console-test.c:767
-#: ../client/pk-console-test.c:795
-#, c-format
-msgid "This tool could not find all the packages: %s"
-msgstr "Dit programma kon niet alle pakketten vinden: %s"
-
-#. TRANSLATORS: we failed to contact the daemon
-#: ../client/pk-console-test.c:1003
-msgid "Failed to contact PackageKit"
-msgstr "Contact met PackageKit krijgen mislukte."
-
-#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console-test.c:1133
-msgid "A package name to install is required"
-msgstr "Een pakketnaam om te installeren is vereist"
-
-#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console-test.c:1142
-msgid "A filename to install is required"
-msgstr "Een bestandsnaam om te installeren is vereist"
-
-#. TRANSLATORS: This is the state of the transaction
-#: ../client/pk-generate-pack.c:101
-msgid "Downloading"
-msgstr "Aan het downloaden"
-
-#. TRANSLATORS: This is when the main packages are being downloaded
-#: ../client/pk-generate-pack.c:121
-msgid "Downloading packages"
-msgstr "Pakketten aan het downloaden"
-
-#. TRANSLATORS: This is when the dependency packages are being downloaded
-#: ../client/pk-generate-pack.c:126
-msgid "Downloading dependencies"
-msgstr "Afhankelijkheden aan het downloaden"
-
#. TRANSLATORS: we can exclude certain packages (glibc) when we know they'll exist on the target
-#: ../client/pk-generate-pack.c:188 ../client/pk-generate-pack-test.c:228
+#: ../client/pk-generate-pack.c:225
msgid "Set the file name of dependencies to be excluded"
msgstr ""
"Zet de bestandsnamen van afhankelijkheden die moeten worden uitgesloten"
#. TRANSLATORS: the output location
-#: ../client/pk-generate-pack.c:191 ../client/pk-generate-pack-test.c:231
+#: ../client/pk-generate-pack.c:228
msgid ""
"The output file or directory (the current directory is used if ommitted)"
msgstr ""
@@ -839,41 +498,43 @@ msgstr ""
"opgegeven)"
#. TRANSLATORS: put a list of packages in the pack
-#: ../client/pk-generate-pack.c:194 ../client/pk-generate-pack-test.c:234
+#: ../client/pk-generate-pack.c:231
msgid "The package to be put into the service pack"
msgstr "Het pakket dat in het servicepack zal worden opgenomen"
#. TRANSLATORS: put all pending updates in the pack
-#: ../client/pk-generate-pack.c:197 ../client/pk-generate-pack-test.c:237
+#: ../client/pk-generate-pack.c:234
msgid "Put all updates available in the service pack"
msgstr "Doe alle beschikbare updates in het servicepack"
#. TRANSLATORS: This is when the user fails to supply the correct arguments
-#: ../client/pk-generate-pack.c:225 ../client/pk-generate-pack-test.c:272
+#: ../client/pk-generate-pack.c:269
msgid "Neither --package or --updates option selected."
msgstr "Noch --package noch --updates als optie geselecteerd."
#. TRANSLATORS: This is when the user fails to supply just one argument
-#: ../client/pk-generate-pack.c:233 ../client/pk-generate-pack-test.c:280
+#: ../client/pk-generate-pack.c:277
msgid "Both options selected."
msgstr "Beide opties geselecteerd."
#. TRANSLATORS: This is when the user fails to supply the output
-#: ../client/pk-generate-pack.c:249 ../client/pk-generate-pack-test.c:296
+#: ../client/pk-generate-pack.c:293
msgid "A output directory or file name is required"
msgstr "Een doelmap of bestandsnaam is vereist"
+#. TRANSLATORS: This is when the dameon is not-installed/broken and fails to startup
+#: ../client/pk-generate-pack.c:311
+msgid "The dameon failed to startup"
+msgstr "De daemon faalde op te starten"
+
#. 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
-#. 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:267 ../client/pk-generate-pack.c:273
-#: ../client/pk-generate-pack-test.c:324 ../client/pk-generate-pack-test.c:330
+#: ../client/pk-generate-pack.c:322 ../client/pk-generate-pack.c:328
msgid "The package manager cannot perform this type of operation."
msgstr "De package manager kan dit type operatie niet uitvoeren."
#. TRANSLATORS: This is when the distro didn't include libarchive support into PK
-#: ../client/pk-generate-pack.c:280 ../client/pk-generate-pack-test.c:337
+#: ../client/pk-generate-pack.c:335
msgid ""
"Service packs cannot be created as PackageKit was not built with libarchive "
"support."
@@ -882,255 +543,158 @@ msgstr ""
"ondersteuning is gebouwd."
#. TRANSLATORS: the user specified an absolute path, but didn't get the extension correct
-#: ../client/pk-generate-pack.c:291 ../client/pk-generate-pack-test.c:348
+#: ../client/pk-generate-pack.c:346
msgid "If specifying a file, the service pack name must end with"
msgstr ""
"Bij het specificeren van een bestand moet de servicepacknaam eindigen met"
#. TRANSLATORS: This is when file already exists
-#: ../client/pk-generate-pack.c:307 ../client/pk-generate-pack-test.c:364
+#: ../client/pk-generate-pack.c:362
msgid "A pack with the same name already exists, do you want to overwrite it?"
msgstr "Een pack met dezelfde naam bestaat reeds, wilt u deze overschrijven?"
#. TRANSLATORS: This is when the pack was not overwritten
-#: ../client/pk-generate-pack.c:310 ../client/pk-generate-pack-test.c:367
+#: ../client/pk-generate-pack.c:365
msgid "The pack was not overwritten."
msgstr "Het pack werd niet overschreven."
#. TRANSLATORS: This is when the temporary directory cannot be created, the directory name follows
-#: ../client/pk-generate-pack.c:323 ../client/pk-generate-pack-test.c:380
+#: ../client/pk-generate-pack.c:378
msgid "Failed to create directory:"
msgstr "Aanmaken map mislukt:"
#. TRANSLATORS: This is when the list of packages from the remote computer cannot be opened
-#: ../client/pk-generate-pack.c:333 ../client/pk-generate-pack-test.c:392
+#: ../client/pk-generate-pack.c:390
msgid "Failed to open package list."
msgstr "Pakketlijst openen is niet gelukt."
#. TRANSLATORS: The package name is being matched up to available packages
-#: ../client/pk-generate-pack.c:344 ../client/pk-generate-pack-test.c:401
+#: ../client/pk-generate-pack.c:399
msgid "Finding package name."
msgstr "Pakketnaam wordt opgezocht."
#. TRANSLATORS: This is when the package cannot be found in any software source. The detailed error follows
-#: ../client/pk-generate-pack.c:348 ../client/pk-generate-pack-test.c:405
+#: ../client/pk-generate-pack.c:403
#, c-format
msgid "Failed to find package '%s': %s"
msgstr "Pakket '%s' niet gevonden: %s"
#. TRANSLATORS: This is telling the user we are in the process of making the pack
-#: ../client/pk-generate-pack.c:365 ../client/pk-generate-pack-test.c:413
+#: ../client/pk-generate-pack.c:411
msgid "Creating service pack..."
msgstr "Servicepack wordt aangemaakt...."
#. TRANSLATORS: we succeeded in making the file
-#: ../client/pk-generate-pack.c:372 ../client/pk-generate-pack-test.c:428
+#: ../client/pk-generate-pack.c:426
#, c-format
msgid "Service pack created '%s'"
msgstr "Servicepack aangemaakt '%s'"
#. TRANSLATORS: we failed to make te file
-#: ../client/pk-generate-pack.c:377 ../client/pk-generate-pack-test.c:433
+#: ../client/pk-generate-pack.c:431
#, c-format
msgid "Failed to create '%s': %s"
msgstr "'%s' aanmaken niet gelukt: %s"
-#. TRANSLATORS: this is a program that monitors PackageKit
-#: ../client/pk-monitor.c:146 ../client/pk-monitor-test.c:299
-msgid "PackageKit Monitor"
-msgstr "PackageKit-monitor"
-
-#: ../client/pk-monitor.c:183
-msgid "Cannot show the list of transactions"
-msgstr "Kan de lijst van transacties niet laten zien"
-
-#: ../client/pk-monitor-test.c:204
+#: ../client/pk-monitor.c:204
msgid "Failed to get transaction list"
msgstr "Transactie lijst verkrijgen mislukte."
-#: ../client/pk-monitor-test.c:235
+#: ../client/pk-monitor.c:235
msgid "Failed to get daemon state"
msgstr "Daemon toestand verkrijgen mislukte."
-#. ask the user
-#: ../client/pk-task-text.c:64
-msgid "Do you want to allow installing of unsigned software?"
-msgstr "Wil het installeren van niet ondertekende software toestaan?"
-
-#: ../client/pk-task-text.c:68
-msgid "The unsigned software will not be installed."
-msgstr "De niet ondertekende software wordt niet geïnstalleerd."
-
-#: ../client/pk-task-text.c:100
-msgid "Software source signature required"
-msgstr "Softeare bron ondertekening vereist"
-
-#: ../client/pk-task-text.c:102
-msgid "Software source name"
-msgstr "Softwarebron naam"
-
-#: ../client/pk-task-text.c:103
-msgid "Key URL"
-msgstr "Sleutel URL"
-
-#: ../client/pk-task-text.c:104
-msgid "Key user"
-msgstr "Sleutel gebruiker"
-
-#: ../client/pk-task-text.c:105
-msgid "Key ID"
-msgstr "Sleutel ID"
-
-#: ../client/pk-task-text.c:106
-msgid "Key fingerprint"
-msgstr "Sleutel vingerafdruk"
-
-#: ../client/pk-task-text.c:107
-msgid "Key Timestamp"
-msgstr "Sleutel tijdstempel"
-
-#: ../client/pk-task-text.c:151
-msgid "End user licence agreement required"
-msgstr "Eindgebruiker licentie overeenkomst vereist"
-
-#: ../client/pk-task-text.c:152
-msgid "EULA ID"
-msgstr "EULA ID"
-
-#: ../client/pk-task-text.c:155
-msgid "Agreement"
-msgstr "Overeenkomst"
-
-#. ask the user
-#: ../client/pk-task-text.c:161
-msgid "Do you accept this agreement?"
-msgstr "Accepteer je deze overeenkomst?"
-
-#: ../client/pk-task-text.c:165
-msgid "The agreement was not accepted."
-msgstr "De overeenkomst werd niet geaccepteerd"
-
-#: ../client/pk-task-text.c:194
-msgid "Media change required"
-msgstr "Media verandering vereist."
-
-#: ../client/pk-task-text.c:195
-msgid "Media type"
-msgstr "Media type"
-
-#: ../client/pk-task-text.c:196
-msgid "Media ID"
-msgstr "Media ID"
-
-#: ../client/pk-task-text.c:197
-msgid "Text"
-msgstr "Tekst"
-
-#. ask the user
-#: ../client/pk-task-text.c:201
-msgid "Please insert the correct media"
-msgstr "Breng a.u.b de juiste media in"
-
-#: ../client/pk-task-text.c:205
-msgid "The correct media was not inserted."
-msgstr "De juiste media was niet ingebracht."
-
-#: ../client/pk-task-text.c:303
-msgid "The transaction did not proceed."
-msgstr "De transactie ging niet verder."
-
-#. TRANSLATORS: The package was not found in any software sources
-#: ../client/pk-tools-common.c:188
-#, c-format
-msgid "The package could not be found"
-msgstr "Het pakket kon niet worden gevonden"
+#. TRANSLATORS: this is a program that monitors PackageKit
+#: ../client/pk-monitor.c:299
+msgid "PackageKit Monitor"
+msgstr "PackageKit-monitor"
#. TRANSLATORS: when we are getting data from the daemon
-#: ../contrib/browser-plugin/pk-plugin-install.c:466
+#: ../contrib/browser-plugin/pk-plugin-install.c:495
msgid "Getting package information..."
msgstr "Pakketinformatie verkrijgen......"
#. TRANSLATORS: run an applicaiton
-#: ../contrib/browser-plugin/pk-plugin-install.c:472
+#: ../contrib/browser-plugin/pk-plugin-install.c:501
#, c-format
msgid "Run %s"
msgstr "Start %s"
#. TRANSLATORS: show the installed version of a package
-#: ../contrib/browser-plugin/pk-plugin-install.c:478
+#: ../contrib/browser-plugin/pk-plugin-install.c:507
msgid "Installed version"
msgstr "Geïnstalleerde versie"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/pk-plugin-install.c:486
+#: ../contrib/browser-plugin/pk-plugin-install.c:515
#, c-format
msgid "Run version %s now"
msgstr "Start versie %s nu"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/pk-plugin-install.c:492
+#: ../contrib/browser-plugin/pk-plugin-install.c:521
msgid "Run now"
msgstr "Start nu"
#. TRANSLATORS: update to a new version of the package
-#: ../contrib/browser-plugin/pk-plugin-install.c:498
+#: ../contrib/browser-plugin/pk-plugin-install.c:527
#, c-format
msgid "Update to version %s"
msgstr "Update naar versie %s"
#. TRANSLATORS: To install a package
-#: ../contrib/browser-plugin/pk-plugin-install.c:504
+#: ../contrib/browser-plugin/pk-plugin-install.c:533
#, c-format
msgid "Install %s now"
msgstr "Installeer %s nu"
#. TRANSLATORS: the version of the package
-#: ../contrib/browser-plugin/pk-plugin-install.c:507
+#: ../contrib/browser-plugin/pk-plugin-install.c:536
msgid "Version"
msgstr "Versie"
#. TRANSLATORS: noting found, so can't install
-#: ../contrib/browser-plugin/pk-plugin-install.c:512
+#: ../contrib/browser-plugin/pk-plugin-install.c:541
msgid "No packages found for your system"
msgstr "Geen pakketten voor uw systeem gevonden"
#. TRANSLATORS: package is being installed
-#: ../contrib/browser-plugin/pk-plugin-install.c:517
+#: ../contrib/browser-plugin/pk-plugin-install.c:546
msgid "Installing..."
msgstr "Aan het installeren......"
#. TRANSLATORS: downloading repo data so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:349
+#: ../contrib/command-not-found/pk-command-not-found.c:358
msgid "Downloading details about the software sources."
msgstr "Download details over de software bronnen."
#. TRANSLATORS: downloading file lists so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:353
+#: ../contrib/command-not-found/pk-command-not-found.c:362
msgid "Downloading filelists (this may take some time to complete)."
msgstr "Bestands lijsten downloaden (dit kan enige tijd duren)."
#. TRANSLATORS: waiting for native lock
-#: ../contrib/command-not-found/pk-command-not-found.c:357
+#: ../contrib/command-not-found/pk-command-not-found.c:366
msgid "Waiting for package manager lock."
msgstr "Wachten op pakket beheerder blokkering."
#. TRANSLATORS: loading package cache so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:361
+#: ../contrib/command-not-found/pk-command-not-found.c:370
msgid "Loading list of packages."
msgstr "Lijst van pakketten downloaden."
#. TRANSLATORS: we failed to find the package, this shouldn't happen
-#: ../contrib/command-not-found/pk-command-not-found.c:420
+#: ../contrib/command-not-found/pk-command-not-found.c:444
msgid "Failed to search for file"
msgstr "Zoeken naar bestand niet gelukt"
#. TRANSLATORS: we failed to launch the executable, the error follows
-#: ../contrib/command-not-found/pk-command-not-found.c:557
+#: ../contrib/command-not-found/pk-command-not-found.c:570
msgid "Failed to launch:"
msgstr "Starten mislukt:"
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/command-not-found/pk-command-not-found.c:632
+#: ../contrib/command-not-found/pk-command-not-found.c:630
msgid "PackageKit Command Not Found"
msgstr "PackageKit Command niet gevonden"
@@ -1189,18 +753,18 @@ msgid "Please choose a package to install"
msgstr "Kies alstublieft een pakket om te installeren"
#. TRANSLATORS: we are starting to install the packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:187
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:195
msgid "Starting install"
msgstr "Installeren starten"
#. TRANSLATORS: we couldn't find the package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:397
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:402
#, c-format
msgid "Failed to find the package %s, or already installed: %s"
msgstr "Pakket %s vinden is mislukt, of is reeds geïnstalleerd: %s"
#. command line argument, simulate what would be done, but don't actually do it
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:552
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:503
msgid ""
"Don't actually install any packages, only simulate what would be installed"
msgstr ""
@@ -1208,169 +772,178 @@ msgstr ""
"worden"
#. command line argument, do we skip packages that depend on the ones specified
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:555
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:506
msgid "Do not install dependencies of the core packages"
msgstr "Installeer geen afhankelijkheden van de kern pakketten"
#. command line argument, do we operate quietly
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:558
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:509
msgid "Do not display information or progress"
msgstr "Laat geen informatie zien over de voortgang"
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:576
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:524
msgid "PackageKit Debuginfo Installer"
msgstr "PackageKit debuginfo installer"
#. TRANSLATORS: the use needs to specify a list of package names on the command line
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:588
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:536
#, c-format
msgid "ERROR: Specify package names to install."
msgstr "FOUT: Specificeer de te installeren pakket namen."
#. TRANSLATORS: we are getting the list of repositories
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:622
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:568
#, c-format
msgid "Getting sources list"
msgstr "Ophalen bronnen lijst"
+#. TRANSLATORS: operation was not successful
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:578
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:653
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:737
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:781
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:848
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:892
+msgid "FAILED."
+msgstr "MISLUKT."
+
#. TRANSLATORS: all completed 100%
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:640
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:680
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:715
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:799
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:843
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:910
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:954
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:593
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:633
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:668
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:752
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:796
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:863
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:907
#, c-format
msgid "OK."
msgstr "OK."
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:643
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:596
#, c-format
msgid "Found %i enabled and %i disabled sources."
msgstr "Vond %i aangezette en %i uitgezette bronnen."
#. TRANSLATORS: we're finding repositories that match out pattern
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:650
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:603
#, c-format
msgid "Finding debugging sources"
msgstr "Zoeken naar debug bronnen"
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:683
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:636
#, c-format
msgid "Found %i disabled debuginfo repos."
msgstr "Vond %i uitgezette debuginfo repo's"
#. TRANSLATORS: we're now enabling all the debug sources we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:690
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:643
#, c-format
msgid "Enabling debugging sources"
msgstr "Debug bronnen aanzetten"
-#. TRANSLATORS: operation was not successful
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:700
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:784
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:828
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:895
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:939
-msgid "FAILED."
-msgstr "MISLUKT."
-
#. TRANSLATORS: tell the user how many we enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:718
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:671
#, c-format
msgid "Enabled %i debugging sources."
msgstr "%i debug bronnen aangezet."
#. TRANSLATORS: we're now finding packages that match in all the repos
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:725
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:678
#, c-format
msgid "Finding debugging packages"
msgstr "Zoeken naar debug pakketten"
#. TRANSLATORS: we couldn't find the package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:737
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:690
#, c-format
msgid "Failed to find the package %s: %s"
msgstr "Pakket %s vinden mislukte: %s"
#. TRANSLATORS: we couldn't find the debuginfo package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:760
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:713
#, c-format
msgid "Failed to find the debuginfo package %s: %s"
msgstr "Debug info pakket %s niet gevonden: %s"
#. TRANSLATORS: no debuginfo packages could be found to be installed
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:788
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:741
#, c-format
msgid "Found no packages to install."
msgstr "Geen pakketten gevonden om te installeren."
#. TRANSLATORS: tell the user we found some packages, and then list them
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:802
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:755
#, c-format
msgid "Found %i packages:"
msgstr "Vond %i pakketten:"
#. TRANSLATORS: tell the user we are searching for deps
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:818
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:771
#, c-format
msgid "Finding packages that depend on these packages"
msgstr "Zoeken naar pakketten die afhangen van deze pakketten"
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:831
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:784
#, c-format
msgid "Could not find dependant packages: %s"
msgstr "Kon geen afhankelijke pakketten vinden: %s"
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:847
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:800
#, c-format
msgid "Found %i extra packages."
msgstr "Vond %i extra pakketten."
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:851
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:804
#, c-format
msgid "No extra packages required."
msgstr "Geen extra pakketten vereist."
#. TRANSLATORS: tell the user we found some packages (and deps), and then list them
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:860
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:813
#, c-format
msgid "Found %i packages to install:"
msgstr "Vond %i pakketten om te installeren:"
#. TRANSLATORS: simulate mode is a testing mode where we quit before the action
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:873
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:826
#, c-format
msgid "Not installing packages in simulate mode"
msgstr "Pakketten niet installeren in de simulatie mode"
+#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
+#. TRANSLATORS: transaction state, installing packages
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:838
+#: ../lib/packagekit-glib2/pk-console-shared.c:246
+#, c-format
+msgid "Installing packages"
+msgstr "Pakketten installeren"
+
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:898
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:851
#, c-format
msgid "Could not install packages: %s"
msgstr "Kon pakketen %s niet installeren."
#. TRANSLATORS: we are now disabling all debuginfo repos we previously enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:930
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:883
#, c-format
msgid "Disabling sources previously enabled"
msgstr "Uitzetten van bronnen die eerst aangezet waren"
#. TRANSLATORS: no debuginfo packages could be found to be installed, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:942
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:895
#, c-format
msgid "Could not disable the debugging sources: %s"
msgstr "Kon de debug bronnen %s niet uitzetten"
#. TRANSLATORS: we disabled all the debugging repos that we enabled before
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:957
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:910
#, c-format
msgid "Disabled %i debugging sources."
msgstr "%i debug bronnen uitgezet."
@@ -1473,6 +1046,336 @@ msgstr "PackageKit Pakketlijst"
msgid "PackageKit Service Pack"
msgstr "PackageKit-servicepack"
+#: ../lib/packagekit-glib2/pk-console-shared.c:53
+#, c-format
+msgid "Please enter a number from 1 to %i: "
+msgstr "Voer een nummer in van 1 tot %i: "
+
+#. 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:153
+msgid "More than one package matches:"
+msgstr "Er zijn meerdere pakketten die overeenkomen:"
+
+#. TRANSLATORS: This finds out which package in the list to use
+#: ../lib/packagekit-glib2/pk-console-shared.c:162
+msgid "Please choose the correct package: "
+msgstr "Kies alstublieft het juiste pakket: "
+
+#. TRANSLATORS: This is when the transaction status is not known
+#: ../lib/packagekit-glib2/pk-console-shared.c:214
+msgid "Unknown state"
+msgstr "Onbekende toestand"
+
+#. TRANSLATORS: transaction state, the daemon is in the process of starting
+#: ../lib/packagekit-glib2/pk-console-shared.c:218
+msgid "Starting"
+msgstr "Opstarten"
+
+#. TRANSLATORS: transaction state, the transaction is waiting for another to complete
+#: ../lib/packagekit-glib2/pk-console-shared.c:222
+msgid "Waiting in queue"
+msgstr "Wachten in wachtrij"
+
+#. TRANSLATORS: transaction state, just started
+#: ../lib/packagekit-glib2/pk-console-shared.c:226
+msgid "Running"
+msgstr "Draaiende"
+
+#. TRANSLATORS: transaction state, is querying data
+#: ../lib/packagekit-glib2/pk-console-shared.c:230
+msgid "Querying"
+msgstr "Informatie ophalen"
+
+#. TRANSLATORS: transaction state, getting data from a server
+#: ../lib/packagekit-glib2/pk-console-shared.c:234
+msgid "Getting information"
+msgstr "Informatie krijgen"
+
+#. TRANSLATORS: transaction state, removing packages
+#: ../lib/packagekit-glib2/pk-console-shared.c:238
+msgid "Removing packages"
+msgstr "Pakketten verwijderen"
+
+#. TRANSLATORS: transaction state, downloading package files
+#: ../lib/packagekit-glib2/pk-console-shared.c:242
+msgid "Downloading packages"
+msgstr "Pakketten aan het downloaden"
+
+#. TRANSLATORS: transaction state, refreshing internal lists
+#: ../lib/packagekit-glib2/pk-console-shared.c:250
+msgid "Refreshing software list"
+msgstr "Software lijst verversen"
+
+#. TRANSLATORS: transaction state, installing updates
+#: ../lib/packagekit-glib2/pk-console-shared.c:254
+msgid "Installing updates"
+msgstr "Vernieuwingen installeren"
+
+#. TRANSLATORS: transaction state, removing old packages, and cleaning config files
+#: ../lib/packagekit-glib2/pk-console-shared.c:258
+msgid "Cleaning up packages"
+msgstr "Pakketten opschonen"
+
+#. TRANSLATORS: transaction state, obsoleting old packages
+#: ../lib/packagekit-glib2/pk-console-shared.c:262
+msgid "Obsoleting packages"
+msgstr "Pakketten achterhaald maken"
+
+#. TRANSLATORS: transaction state, checking the transaction before we do it
+#: ../lib/packagekit-glib2/pk-console-shared.c:266
+msgid "Resolving dependencies"
+msgstr "Afhankelijkheden oplossen"
+
+#. TRANSLATORS: transaction state, checking if we have all the security keys for the operation
+#: ../lib/packagekit-glib2/pk-console-shared.c:270
+msgid "Checking signatures"
+msgstr "Ondertekeningen controleren"
+
+#. TRANSLATORS: transaction state, when we return to a previous system state
+#: ../lib/packagekit-glib2/pk-console-shared.c:274
+msgid "Rolling back"
+msgstr "Terug draaien"
+
+#. TRANSLATORS: transaction state, when we're doing a test transaction
+#: ../lib/packagekit-glib2/pk-console-shared.c:278
+msgid "Testing changes"
+msgstr "Veranderingen testen"
+
+#. TRANSLATORS: transaction state, when we're writing to the system package database
+#: ../lib/packagekit-glib2/pk-console-shared.c:282
+msgid "Committing changes"
+msgstr "Veranderingen beschikbaar maken"
+
+#. TRANSLATORS: transaction state, requesting data from a server
+#: ../lib/packagekit-glib2/pk-console-shared.c:286
+msgid "Requesting data"
+msgstr "Data aanvragen"
+
+#. TRANSLATORS: transaction state, all done!
+#: ../lib/packagekit-glib2/pk-console-shared.c:290
+msgid "Finished"
+msgstr "Klaar"
+
+#. TRANSLATORS: transaction state, in the process of cancelling
+#: ../lib/packagekit-glib2/pk-console-shared.c:294
+msgid "Cancelling"
+msgstr "Afbreken"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:298
+msgid "Downloading repository information"
+msgstr "Repository informatie downloaden"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:302
+msgid "Downloading list of packages"
+msgstr "Lijst van pakketten downloaden"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:306
+msgid "Downloading file lists"
+msgstr "Bestandslijsten downloaden"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:310
+msgid "Downloading lists of changes"
+msgstr "Lijst van veranderingen downloaden."
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:314
+msgid "Downloading groups"
+msgstr "Groepen downloaden"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:318
+msgid "Downloading update information"
+msgstr "Pakketinformatie downloaden"
+
+#. TRANSLATORS: transaction state, repackaging delta files
+#: ../lib/packagekit-glib2/pk-console-shared.c:322
+msgid "Repackaging files"
+msgstr "Bestanden opnieuw inpakken"
+
+#. TRANSLATORS: transaction state, loading databases
+#: ../lib/packagekit-glib2/pk-console-shared.c:326
+msgid "Loading cache"
+msgstr "Cache laden"
+
+#. TRANSLATORS: transaction state, scanning for running processes
+#: ../lib/packagekit-glib2/pk-console-shared.c:330
+msgid "Scanning applications"
+msgstr "Toepassingen doorzoeken"
+
+#. TRANSLATORS: transaction state, generating a list of packages installed on the system
+#: ../lib/packagekit-glib2/pk-console-shared.c:334
+msgid "Generating package lists"
+msgstr "Pakketlijst aanmaken"
+
+#. TRANSLATORS: transaction state, when we're waiting for the native tools to exit
+#: ../lib/packagekit-glib2/pk-console-shared.c:338
+msgid "Waiting for package manager lock"
+msgstr "Wachten op pakket beheerder blokkering"
+
+#. TRANSLATORS: waiting for user to type in a password
+#: ../lib/packagekit-glib2/pk-console-shared.c:342
+msgid "Waiting for authentication"
+msgstr "Wachten op authenticatie"
+
+#. TRANSLATORS: we are updating the list of processes
+#: ../lib/packagekit-glib2/pk-console-shared.c:346
+msgid "Updating running applications"
+msgstr "Draaiende toepassingen vernieuwen"
+
+#. TRANSLATORS: we are checking executable files currently in use
+#: ../lib/packagekit-glib2/pk-console-shared.c:350
+msgid "Checking applications in use"
+msgstr "Controleren van toepassingen in gebruik"
+
+#. TRANSLATORS: we are checking for libraries currently in use
+#: ../lib/packagekit-glib2/pk-console-shared.c:354
+msgid "Checking libraries in use"
+msgstr "Controleren van bibliotheken in gebruik"
+
+#. TRANSLATORS: ask the user if they are comfortable installing insecure packages
+#: ../lib/packagekit-glib2/pk-task-text.c:64
+msgid "Do you want to allow installing of unsigned software?"
+msgstr "Wil het installeren van niet ondertekende software toestaan?"
+
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:69
+msgid "The unsigned software will not be installed."
+msgstr "De niet ondertekende software wordt niet geïnstalleerd."
+
+#. TRANSLATORS: the package repository is signed by a key that is not recognised
+#: ../lib/packagekit-glib2/pk-task-text.c:102
+msgid "Software source signature required"
+msgstr "Softeare bron ondertekening vereist"
+
+#. TRANSLATORS: the package repository name
+#: ../lib/packagekit-glib2/pk-task-text.c:108
+msgid "Software source name"
+msgstr "Softwarebron naam"
+
+#. TRANSLATORS: the key URL
+#: ../lib/packagekit-glib2/pk-task-text.c:111
+msgid "Key URL"
+msgstr "Sleutel URL"
+
+#. TRANSLATORS: the username of the key
+#: ../lib/packagekit-glib2/pk-task-text.c:114
+msgid "Key user"
+msgstr "Sleutel gebruiker"
+
+#. TRANSLATORS: the key ID, usually a few hex digits
+#: ../lib/packagekit-glib2/pk-task-text.c:117
+msgid "Key ID"
+msgstr "Sleutel ID"
+
+#. TRANSLATORS: the key fingerprint, again, yet more hex
+#: ../lib/packagekit-glib2/pk-task-text.c:120
+msgid "Key fingerprint"
+msgstr "Sleutel vingerafdruk"
+
+#. TRANSLATORS: the timestamp (a bit like a machine readable time)
+#: ../lib/packagekit-glib2/pk-task-text.c:123
+msgid "Key Timestamp"
+msgstr "Sleutel tijdstempel"
+
+#. TRANSLATORS: ask the user if they want to import
+#: ../lib/packagekit-glib2/pk-task-text.c:129
+msgid "Do you accept this signature?"
+msgstr "Accepteert u deze signatuur?"
+
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:134
+msgid "The signature was not accepted."
+msgstr "De signatuur werd niet geaccepteerd"
+
+#. TRANSLATORS: this is another name for a software licence that has to be read before installing
+#: ../lib/packagekit-glib2/pk-task-text.c:169
+msgid "End user licence agreement required"
+msgstr "Eindgebruiker licentie overeenkomst vereist"
+
+#. TRANSLATORS: the EULA text itself (long and boring)
+#: ../lib/packagekit-glib2/pk-task-text.c:178
+msgid "Agreement"
+msgstr "Overeenkomst"
+
+#. TRANSLATORS: ask the user if they've read and accepted the EULA
+#: ../lib/packagekit-glib2/pk-task-text.c:184
+msgid "Do you accept this agreement?"
+msgstr "Accepteer je deze overeenkomst?"
+
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:189
+msgid "The agreement was not accepted."
+msgstr "De overeenkomst werd niet geaccepteerd"
+
+#. TRANSLATORS: the user needs to change media inserted into the computer
+#: ../lib/packagekit-glib2/pk-task-text.c:219
+msgid "Media change required"
+msgstr "Media verandering vereist."
+
+#. TRANSLATORS: the type, e.g. DVD, CD, etc
+#: ../lib/packagekit-glib2/pk-task-text.c:222
+msgid "Media type"
+msgstr "Media type"
+
+#. TRANSLATORS: the media label, usually like 'disk-1of3'
+#: ../lib/packagekit-glib2/pk-task-text.c:225
+msgid "Media label"
+msgstr "Media label"
+
+#. TRANSLATORS: the media description, usually like 'Fedora 12 disk 5'
+#: ../lib/packagekit-glib2/pk-task-text.c:228
+msgid "Text"
+msgstr "Tekst"
+
+#. TRANSLATORS: ask the user to insert the media
+#: ../lib/packagekit-glib2/pk-task-text.c:232
+msgid "Please insert the correct media"
+msgstr "Breng a.u.b de juiste media in"
+
+#. TRANSLATORS: tell the user we've not done anything as they are lazy
+#: ../lib/packagekit-glib2/pk-task-text.c:237
+msgid "The correct media was not inserted."
+msgstr "De juiste media was niet ingebracht."
+
+#. TRANSLATORS: When processing, we might have to remove other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:252
+msgid "The following packages have to be removed:"
+msgstr "De volgende pakketten moeten worden verwijderd:"
+
+#. TRANSLATORS: When processing, we might have to install other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:257
+msgid "The following packages have to be installed:"
+msgstr "De volgende pakketten moeten worden geïnstalleerd"
+
+#. TRANSLATORS: When processing, we might have to update other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:262
+msgid "The following packages have to be updated:"
+msgstr "De volgende pakketten moeten worden vernieuwd:"
+
+#. TRANSLATORS: When processing, we might have to reinstall other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:267
+msgid "The following packages have to be reinstalled:"
+msgstr "De volgende pakketten moeten opnieuw geïnstalleerd worden:"
+
+#. TRANSLATORS: When processing, we might have to downgrade other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:272
+msgid "The following packages have to be downgraded:"
+msgstr "De volgende pakketten moeten gedegradeerd worden:"
+
+#. TRANSLATORS: ask the user if the proposed changes are okay
+#: ../lib/packagekit-glib2/pk-task-text.c:331
+msgid "Proceed with changes?"
+msgstr "Doorgaan met veranderingen?"
+
+#. TRANSLATORS: tell the user we didn't do anything
+#: ../lib/packagekit-glib2/pk-task-text.c:336
+msgid "The transaction did not proceed."
+msgstr "De transactie ging niet verder."
+
#. SECURITY:
#. - Normal users do not require admin authentication to accept new
#. licence agreements.
@@ -1769,3 +1672,146 @@ msgstr "Vele pakketten"
#: ../src/pk-polkit-action-lookup.c:334
msgid "Only trusted"
msgstr "Alleen vertrouwde"
+
+#~ msgid "Percentage"
+#~ msgstr "Percentage"
+
+#~ msgid "Please restart the application as it is being used."
+#~ msgstr "Herstart a.ub. de toepassing omdat deze in gebruik was."
+
+#~ msgid "The package %s is already installed"
+#~ msgstr "Het pakket %s is reeds geïnstalleerd"
+
+#~ msgid "The package %s could not be installed: %s"
+#~ msgstr "Het pakket %s kon niet worden geïnstalleerd: %s"
+
+#~ msgid "The package install was canceled!"
+#~ msgstr "De pakket installatie is afgebroken!"
+
+#~ msgid "This tool could not install the packages: %s"
+#~ msgstr "Dit programma kon niet de pakketten %s installeren."
+
+#~ msgid "This tool could not install the files: %s"
+#~ msgstr "De bestanden %s konden niet worden geïnstalleerd."
+
+#~ msgid "This tool could not remove %s: %s"
+#~ msgstr "Dit programma kon %s niet verwijderen: %s"
+
+#~ msgid "This tool could not remove the packages: %s"
+#~ msgstr "Dit programma kon het pakket %s niet verwijderen."
+
+#~ msgid "Proceed with additional packages?"
+#~ msgstr "Doorgaan met additionele pakketten?"
+
+#~ msgid "The package removal was canceled!"
+#~ msgstr "Het verwijderen van pakketten is afgebroken!"
+
+#~ msgid "This tool could not download the package %s as it could not be found"
+#~ msgstr ""
+#~ "Dit programma kon het pakket %s niet downloaden omdat het nergens "
+#~ "gevonden kon worden."
+
+#~ msgid "This tool could not download the packages: %s"
+#~ msgstr "Dit programma kon de pakketten niet downloaden: %s"
+
+#~ msgid "This tool could not update %s: %s"
+#~ msgstr "Dit programma kon %s niet updaten: %s"
+
+#~ msgid "The package update was canceled!"
+#~ msgstr "De pakket vernieuwing is afgebroken!"
+
+#~ msgid "This tool could not get the requirements for %s: %s"
+#~ msgstr "Dit programma kon niet de benodigdheden voor %s vinden: %s"
+
+#~ msgid "This tool could not get the dependencies for %s: %s"
+#~ msgstr "De afhankelijkheden voor %s konden niet worden verkregen: %s"
+
+#~ msgid "This tool could not get package details for %s: %s"
+#~ msgstr "Dit programma kon geen pakketdetails vinden voor %s: %s"
+
+#~ msgid "This tool could not find the files for %s: %s"
+#~ msgstr "Dit programma kon de bestanden voor %s niet vinden: %s"
+
+#~ msgid "This tool could not get the file list for %s: %s"
+#~ msgstr "Dit programma kon de bestandenlijst voor %s niet vinden: %s"
+
+#~ msgid "File already exists: %s"
+#~ msgstr "Bestand bestaat reeds: %s"
+
+#~ msgid "This tool could not get package list: %s"
+#~ msgstr "Dit programma kon de pakketlijst niet vinden: %s"
+
+#~ msgid "Failed to save to disk"
+#~ msgstr "Vastleggen op schijf niet gelukt"
+
+#~ msgid "File does not exist: %s"
+#~ msgstr "Bestand bestaat niet: %s"
+
+#~ msgid "Packages to add"
+#~ msgstr "Toe te voegen pakketten"
+
+#~ msgid "Packages to remove"
+#~ msgstr "Te verwijderen pakketten"
+
+#~ msgid "No new packages need to be installed"
+#~ msgstr "Er hoeven geen nieuwe pakketten te worden toegevoegd"
+
+#~ msgid "To install"
+#~ msgstr "Te installeren"
+
+#~ msgid "Searching for package: "
+#~ msgstr "Pakketten worden gezocht (kan even duren): "
+
+#~ msgid "not found."
+#~ msgstr "niet gevonden."
+
+#~ msgid "No packages can be found to install"
+#~ msgstr "Er kunnen geen pakketten worden gevonden om te installeren"
+
+#~ msgid "This tool could not find the update details for %s: %s"
+#~ msgstr "Dit programma kon de update-details voor %s niet vinden: %s"
+
+#~ msgid "This tool could not get the update details for %s: %s"
+#~ msgstr "Dit programma kon de update-details voor %s niet verkrijgen: %s"
+
+#~ msgid "Error:"
+#~ msgstr "Fout:"
+
+#~ msgid "Repository signature required"
+#~ msgstr "Repository signatuur vereist"
+
+#~ msgid "End user license agreement required"
+#~ msgstr "Eindgebruiker licentie overeenkomst vereist"
+
+#~ msgid "Do you agree to this license?"
+#~ msgstr "Gaat u accoord met deze licentie?"
+
+#~ msgid "The license was refused."
+#~ msgstr "De licentie werd geweigerd."
+
+#~ msgid "This tool could not connect to system DBUS."
+#~ msgstr "Er kon geen verbinding worden gelegd met system DBUS"
+
+#~ msgid "A package name or filename to install is required"
+#~ msgstr "Een pakketnaam of bestandsnaam om te installeren is vereist"
+
+#~ msgid "A list file name to create is required"
+#~ msgstr "Een lijstbestandsnaam om aan te maken is vereist"
+
+#~ msgid "A list file to open is required"
+#~ msgstr "Een lijstbestand om te open is vereist"
+
+#~ msgid "Incorrect privileges for this operation"
+#~ msgstr "Onjuiste privileges voor deze operatie"
+
+#~ msgid "Cannot show the list of transactions"
+#~ msgstr "Kan de lijst van transacties niet laten zien"
+
+#~ msgid "EULA ID"
+#~ msgstr "EULA ID"
+
+#~ msgid "Media ID"
+#~ msgstr "Media ID"
+
+#~ msgid "The package could not be found"
+#~ msgstr "Het pakket kon niet worden gevonden"
commit d7274f69786e296557e0aa6a919743cad3d4cee7
Author: anipeter <anipeter at fedoraproject.org>
Date: Wed Sep 9 16:33:34 2009 +0000
Sending translation for Malayalam
diff --git a/po/ml.po b/po/ml.po
index a151d77..5cfc244 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: packagekit.master.ml\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-09 08:33+0000\n"
-"PO-Revision-Date: 2009-09-09 17:12+0530\n"
+"POT-Creation-Date: 2009-09-09 15:38+0000\n"
+"PO-Revision-Date: 2009-09-09 22:01+0530\n"
"Last-Translator: \n"
"Language-Team: <en at li.org>\n"
"MIME-Version: 1.0\n"
@@ -18,153 +18,124 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. TRANSLATORS: this is an atomic transaction
-#: ../client/pk-console.c:237 ../client/pk-console-test.c:143
+#: ../client/pk-console.c:143
msgid "Transaction"
msgstr "à´à´à´ªà´¾à´àµàµ"
#. TRANSLATORS: this is the time the transaction was started in system timezone
-#: ../client/pk-console.c:239 ../client/pk-console-test.c:145
+#: ../client/pk-console.c:145
msgid "System time"
msgstr "സിസàµà´±àµà´±à´ സമയà´"
#. TRANSLATORS: this is if the transaction succeeded or not
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:147
+#: ../client/pk-console.c:147
msgid "Succeeded"
msgstr "à´à´à´ªà´¾à´àµàµ à´ªàµà´°àµâà´¤àµà´¤à´¿à´¯à´¾à´¯à´¿"
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:147
+#: ../client/pk-console.c:147
msgid "True"
msgstr "True"
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:147
+#: ../client/pk-console.c:147
msgid "False"
msgstr "False"
#. TRANSLATORS: this is the transactions role, e.g. "update-system"
#. TRANSLATORS: the trasaction role, e.g. update-system
-#: ../client/pk-console.c:243 ../client/pk-console-test.c:149
-#: ../src/pk-polkit-action-lookup.c:327
+#: ../client/pk-console.c:149 ../src/pk-polkit-action-lookup.c:327
msgid "Role"
msgstr "à´±àµà´³àµâ"
#. TRANSLATORS: this is The duration of the transaction
-#: ../client/pk-console.c:248 ../client/pk-console-test.c:154
+#: ../client/pk-console.c:154
msgid "Duration"
msgstr "സമയà´"
-#: ../client/pk-console.c:248 ../client/pk-console-test.c:154
+#: ../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:252 ../client/pk-console-test.c:158
-#: ../src/pk-polkit-action-lookup.c:341
+#: ../client/pk-console.c:158 ../src/pk-polkit-action-lookup.c:341
msgid "Command line"
msgstr "à´à´®à´¾à´¨àµâഡൠലàµà´¨àµâ"
#. TRANSLATORS: this is the user ID of the user that started the action
-#: ../client/pk-console.c:254 ../client/pk-console-test.c:160
+#: ../client/pk-console.c:160
msgid "User ID"
msgstr "à´à´ªà´¯àµà´àµà´¤à´¾à´µà´¿à´¨àµà´³àµà´³ ID"
#. TRANSLATORS: this is the username, e.g. hughsie
-#: ../client/pk-console.c:261 ../client/pk-console-test.c:167
+#: ../client/pk-console.c:167
msgid "Username"
msgstr "à´à´ªà´¯àµà´àµà´¤àµà´¨à´¾à´®à´"
#. TRANSLATORS: this is the users real name, e.g. "Richard Hughes"
-#: ../client/pk-console.c:265 ../client/pk-console-test.c:171
+#: ../client/pk-console.c:171
msgid "Real name"
msgstr "യഥാരàµâà´¤àµà´¥ à´ªàµà´°àµàµ"
-#: ../client/pk-console.c:273 ../client/pk-console-test.c:179
+#: ../client/pk-console.c:179
msgid "Affected packages:"
msgstr "ബാധിà´àµà´ പാà´àµà´àµà´àµà´à´³àµâ:"
-#: ../client/pk-console.c:275 ../client/pk-console-test.c:181
+#: ../client/pk-console.c:181
msgid "Affected packages: None"
msgstr "ബാധിà´àµà´ പാà´àµà´àµà´àµà´à´³àµâ: à´à´¨àµà´¨àµà´®à´¿à´²àµà´²"
-#. TRANSLATORS: When processing, we might have to remove other dependencies
-#: ../client/pk-console.c:336 ../lib/packagekit-glib2/pk-task-text.c:220
-msgid "The following packages have to be removed:"
-msgstr "താഴൠപറയàµà´¨àµà´¨ പാà´àµà´àµà´àµà´à´³àµâ à´¨àµà´àµà´à´ à´àµà´¯àµà´¯àµà´£àµà´à´¤àµà´£àµà´àµàµ."
-
-#. TRANSLATORS: When processing, we might have to install other dependencies
-#: ../client/pk-console.c:339 ../lib/packagekit-glib2/pk-task-text.c:225
-msgid "The following packages have to be installed:"
-msgstr "താഴൠപറയàµà´¨àµà´¨ പാà´àµà´àµà´àµà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´£àµà´à´¤à´¾à´£àµàµ:"
-
-#. TRANSLATORS: When processing, we might have to update other dependencies
-#: ../client/pk-console.c:342 ../lib/packagekit-glib2/pk-task-text.c:230
-msgid "The following packages have to be updated:"
-msgstr "താഴൠപറയàµà´¨àµà´¨ പാà´àµà´àµà´àµà´à´³àµâ പരിഷàµà´à´°à´¿à´àµà´àµà´£àµà´à´¤àµà´£àµà´àµàµ:"
-
-#. TRANSLATORS: When processing, we might have to reinstall other dependencies
-#: ../client/pk-console.c:345 ../lib/packagekit-glib2/pk-task-text.c:235
-msgid "The following packages have to be reinstalled:"
-msgstr "താഴൠപറയàµà´¨àµà´¨ പാà´àµà´àµà´àµà´à´³àµâ à´µàµà´£àµà´àµà´ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´£àµà´à´¤àµà´£àµà´àµàµ:"
-
-#. TRANSLATORS: When processing, we might have to downgrade other dependencies
-#: ../client/pk-console.c:348 ../lib/packagekit-glib2/pk-task-text.c:240
-msgid "The following packages have to be downgraded:"
-msgstr "താഴൠപറയàµà´¨àµà´¨ പാà´àµà´àµà´àµà´à´³àµâ à´¡àµà´£àµâà´àµà´°àµà´¡àµ à´àµà´¯àµà´¯àµà´£àµà´à´¤àµà´£àµà´àµàµ:"
-
#. TRANSLATORS: this is the distro, e.g. Fedora 10
-#: ../client/pk-console.c:362 ../client/pk-console-test.c:201
+#: ../client/pk-console.c:201
msgid "Distribution"
msgstr "വിതരണà´"
#. TRANSLATORS: this is type of update, stable or testing
-#: ../client/pk-console.c:364 ../client/pk-console-test.c:203
+#: ../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
-#. TRANSLATORS: this is any summary text describing the upgrade
-#. TRANSLATORS: this is the summary of the group
-#: ../client/pk-console.c:366 ../client/pk-console.c:389
-#: ../client/pk-console-test.c:205 ../client/pk-console-test.c:226
+#: ../client/pk-console.c:205 ../client/pk-console.c:226
msgid "Summary"
msgstr "സമàµà´®à´±à´¿"
#. TRANSLATORS: this is the group category name
-#: ../client/pk-console.c:378 ../client/pk-console-test.c:215
+#: ../client/pk-console.c:215
msgid "Category"
msgstr "വിà´à´¾à´à´"
#. TRANSLATORS: this is group identifier
-#: ../client/pk-console.c:380 ../client/pk-console-test.c:217
+#: ../client/pk-console.c:217
msgid "ID"
msgstr "ID"
#. TRANSLATORS: this is the parent group
-#: ../client/pk-console.c:383 ../client/pk-console-test.c:220
+#: ../client/pk-console.c:220
msgid "Parent"
msgstr "à´ªàµà´°à´¨àµà´±àµ"
#. TRANSLATORS: this is the name of the parent group
-#: ../client/pk-console.c:386 ../client/pk-console-test.c:223
+#: ../client/pk-console.c:223
msgid "Name"
msgstr "à´ªàµà´°àµàµ"
#. TRANSLATORS: this is preferred icon for the group
-#: ../client/pk-console.c:392 ../client/pk-console-test.c:229
+#: ../client/pk-console.c:229
msgid "Icon"
msgstr "à´à´¿à´¹àµà´¨à´"
#. TRANSLATORS: this is a header for the package that can be updated
-#: ../client/pk-console.c:407 ../client/pk-console-test.c:243
+#: ../client/pk-console.c:243
msgid "Details about the update:"
msgstr "പരിഷàµà´à´°à´£à´àµà´à´³àµâ à´¸à´à´¬à´¨àµà´§à´¿à´àµà´àµà´³àµà´³ വിശദാà´à´¶à´àµà´à´³àµâ:"
#. TRANSLATORS: details about the update, package name and version
+#. 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:409 ../client/pk-console-test.c:249
-#: ../lib/packagekit-glib2/pk-task-text.c:101
-#: ../lib/packagekit-glib2/pk-task-text.c:153
+#: ../client/pk-console.c:249 ../lib/packagekit-glib2/pk-task-text.c:105
+#: ../lib/packagekit-glib2/pk-task-text.c:172
#: ../src/pk-polkit-action-lookup.c:352
msgid "Package"
msgid_plural "Packages"
@@ -172,121 +143,143 @@ msgstr[0] "പാà´àµà´àµà´àµ"
msgstr[1] "പാà´àµà´àµà´àµà´à´³àµâ"
#. TRANSLATORS: details about the update, any packages that this update updates
-#: ../client/pk-console.c:412 ../client/pk-console-test.c:252
+#: ../client/pk-console.c:252
msgid "Updates"
msgstr "പരിഷàµà´à´°à´£à´àµà´à´³àµâ"
#. TRANSLATORS: details about the update, any packages that this update obsoletes
-#: ../client/pk-console.c:416 ../client/pk-console-test.c:256
+#: ../client/pk-console.c:256
msgid "Obsoletes"
msgstr "à´µàµà´£àµà´àµà´¨àµà´¨àµàµ à´µà´àµà´à´µ"
#. TRANSLATORS: details about the update, the vendor URLs
-#: ../client/pk-console.c:420 ../client/pk-console-test.c:260
-#: ../lib/packagekit-glib2/pk-task-text.c:154
+#. TRANSLATORS: the vendor (e.g. vmware) that is providing the EULA
+#: ../client/pk-console.c:260 ../lib/packagekit-glib2/pk-task-text.c:175
msgid "Vendor"
msgstr "à´à´àµà´à´µà´à´àµà´à´¾à´°à´¨àµâ"
#. TRANSLATORS: details about the update, the bugzilla URLs
-#: ../client/pk-console.c:424 ../client/pk-console-test.c:264
+#: ../client/pk-console.c:264
msgid "Bugzilla"
msgstr "Bugzilla"
#. TRANSLATORS: details about the update, the CVE URLs
-#: ../client/pk-console.c:428 ../client/pk-console-test.c:268
+#: ../client/pk-console.c:268
msgid "CVE"
msgstr "CVE"
#. TRANSLATORS: details about the update, if the package requires a restart
-#: ../client/pk-console.c:432 ../client/pk-console-test.c:272
+#: ../client/pk-console.c:272
msgid "Restart"
msgstr "à´µàµà´£àµà´àµà´ à´à´°à´à´à´¿à´àµà´àµà´"
#. TRANSLATORS: details about the update, any description of the update
-#: ../client/pk-console.c:436 ../client/pk-console-test.c:276
+#: ../client/pk-console.c:276
msgid "Update text"
msgstr "പരിഷàµà´à´°à´¿à´àµà´ വാà´à´à´"
#. TRANSLATORS: details about the update, the changelog for the package
-#: ../client/pk-console.c:440 ../client/pk-console-test.c:280
+#: ../client/pk-console.c:280
msgid "Changes"
msgstr "മാറàµà´±à´àµà´à´³àµâ"
#. TRANSLATORS: details about the update, the ongoing state of the update
-#: ../client/pk-console.c:444 ../client/pk-console-test.c:284
+#: ../client/pk-console.c:284
msgid "State"
msgstr "à´
വസàµà´¥"
#. TRANSLATORS: details about the update, date the update was issued
-#: ../client/pk-console.c:449 ../client/pk-console-test.c:289
+#: ../client/pk-console.c:289
msgid "Issued"
msgstr "നലàµâà´à´¿à´¯à´¤àµàµ"
#. TRANSLATORS: details about the update, date the update was updated
-#: ../client/pk-console.c:454 ../client/pk-console-test.c:294
+#: ../client/pk-console.c:294
msgid "Updated"
msgstr "പരിഷàµà´à´°à´¿à´àµà´à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ"
#. TRANSLATORS: if the repo is enabled
-#: ../client/pk-console.c:474 ../client/pk-console-test.c:312
+#: ../client/pk-console.c:312
msgid "Enabled"
msgstr "à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¨ à´¸à´àµà´à´"
#. TRANSLATORS: if the repo is disabled
-#: ../client/pk-console.c:477 ../client/pk-console-test.c:315
+#: ../client/pk-console.c:315
msgid "Disabled"
msgstr "à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¨ രഹിതà´"
-#: ../client/pk-console.c:554 ../client/pk-console.c:556
-msgid "Percentage"
-msgstr "ശതമാനà´"
-
-#: ../client/pk-console.c:556
-msgid "Unknown"
-msgstr "à´
പരിà´à´¿à´¤à´"
-
#. TRANSLATORS: a package requires the system to be restarted
-#: ../client/pk-console.c:598 ../client/pk-console-test.c:337
+#: ../client/pk-console.c:337
msgid "System restart required by:"
msgstr "സിസàµà´±àµà´±à´ à´µàµà´£àµà´àµà´ à´à´°à´à´à´¿à´àµà´àµà´¨àµà´¨à´¤àµàµ à´à´µà´¶àµà´¯à´®àµà´³àµà´³à´¤àµàµ:"
#. TRANSLATORS: a package requires the session to be restarted
-#: ../client/pk-console.c:601 ../client/pk-console-test.c:340
+#: ../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:604 ../client/pk-console-test.c:343
+#: ../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:607 ../client/pk-console-test.c:346
+#: ../client/pk-console.c:346
msgid "Session restart (security) required:"
msgstr "à´¸àµà´·à´¨àµâ à´µàµà´£àµà´àµà´ à´à´°à´à´à´¿à´àµà´àµà´¨àµà´¨à´¤àµàµ (à´¸àµà´°à´àµà´·à´¾ പരിഷàµà´à´°à´£à´) à´à´µà´¶àµà´¯à´®àµà´³àµà´³à´¤àµàµ:"
#. TRANSLATORS: a package requires the application to be restarted
-#: ../client/pk-console.c:610 ../client/pk-console-test.c:349
+#: ../client/pk-console.c:349
msgid "Application restart required by:"
msgstr "à´ªàµà´°à´¯àµà´à´ à´µàµà´£àµà´àµà´ à´à´°à´à´à´¿à´àµà´àµà´£àµà´à´¤àµàµ à´à´µà´¶àµà´¯à´®àµà´³àµà´³à´¤àµàµ:"
+#. TRANSLATORS: This a list of details about the package
+#: ../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:384
+msgid "Message:"
+msgstr "സനàµà´¦àµà´¶à´:"
+
+#. TRANSLATORS: This where the package has no files
+#: ../client/pk-console.c:398
+msgid "No files"
+msgstr "ഫയലàµà´à´³àµâ à´²à´àµà´¯à´®à´²àµà´²"
+
+#. TRANSLATORS: This a list files contained in the package
+#: ../client/pk-console.c:403
+msgid "Package files"
+msgstr "പാà´àµà´àµà´à´¿à´²àµà´³àµà´³ ഫയലàµà´à´³àµâ"
+
+#. TRANSLATORS: we failed to get any results, which is pretty fatal in my book
+#: ../client/pk-console.c:462
+msgid "Fatal error"
+msgstr "à´àµà´°àµà´¤à´° പിശà´àµ"
+
+#. TRANSLATORS: we failed, but there was no error set
+#: ../client/pk-console.c:475
+msgid "Transaction failed with no error"
+msgstr "പിശà´à´¿à´²àµà´²à´¾à´¤àµ à´à´à´ªà´¾à´à´¿à´²àµâ പരാà´à´¯à´"
+
+#. TRANSLATORS: the transaction failed in a way we could not expect
+#: ../client/pk-console.c:480
+msgid "The transaction failed"
+msgstr "à´à´à´ªà´¾à´àµàµ പരാà´à´¯à´ªàµà´ªàµà´àµà´àµ"
+
#. TRANSLATORS: a package needs to restart their system
-#: ../client/pk-console.c:665 ../client/pk-console-test.c:538
+#: ../client/pk-console.c:554
msgid "Please restart the computer to complete the update."
msgstr "പരിഷàµà´à´°à´£à´àµà´à´³àµâ à´ªàµà´°àµâà´¤àµà´¤à´¿à´¯à´¾à´àµà´àµà´¨àµà´¨à´¤à´¿à´¨à´¾à´¯à´¿ ദയവായി നിà´àµà´à´³àµà´àµ à´à´®àµà´ªàµà´¯àµà´àµà´à´°àµâ à´µàµà´£àµà´àµà´ à´à´°à´à´à´¿à´àµà´àµà´."
#. TRANSLATORS: a package needs to restart the session
-#: ../client/pk-console.c:668 ../client/pk-console-test.c:541
+#: ../client/pk-console.c:557
msgid "Please logout and login to complete the update."
msgstr "പരിഷàµà´à´°à´£à´àµà´à´³àµâ à´ªàµà´°àµâà´¤àµà´¤à´¿à´¯à´¾à´àµà´àµà´¨àµà´¨à´¤à´¿à´¨à´¾à´¯à´¿ ദയവായി à´²àµà´àµà´àµà´àµ à´àµà´¯àµà´¤àµ à´²àµà´à´¿à´¨àµâ à´àµà´¯àµà´¯àµà´."
-#. TRANSLATORS: a package needs to restart the application
-#: ../client/pk-console.c:671
-msgid "Please restart the application as it is being used."
-msgstr "à´ à´ªàµà´°à´¯àµà´à´ à´à´ªà´¯àµà´à´¿à´àµà´àµà´£àµà´à´ªàµà´ªàµà´³àµâ തനàµà´¨àµ à´µàµà´£àµà´àµà´ à´à´°à´à´à´¿à´àµà´àµà´."
-
#. TRANSLATORS: a package needs to restart their system (due to security)
-#: ../client/pk-console.c:674 ../client/pk-console-test.c:544
+#: ../client/pk-console.c:560
msgid ""
"Please restart the computer to complete the update as important security "
"updates have been installed."
@@ -295,7 +288,7 @@ msgstr ""
"à´µàµà´£àµà´àµà´ à´à´°à´à´à´¿à´àµà´àµà´."
#. TRANSLATORS: a package needs to restart the session (due to security)
-#: ../client/pk-console.c:677 ../client/pk-console-test.c:547
+#: ../client/pk-console.c:563
msgid ""
"Please logout and login to complete the update as important security updates "
"have been installed."
@@ -303,1004 +296,648 @@ msgstr ""
"à´ªàµà´°à´§à´¾à´¨ à´¸àµà´°à´àµà´·à´¾ à´ªàµà´¤àµà´®à´à´³àµâ à´à´¾à´°à´£à´ പരിഷàµà´à´°à´£à´ à´ªàµà´°àµâà´¤àµà´¤à´¿à´¯à´¾à´àµà´àµà´¨àµà´¨à´¤à´¿à´¨à´¾à´¯à´¿ ദയവായി à´²àµà´àµà´àµà´àµ à´àµà´¯àµà´¤àµ à´²àµà´à´¿à´¨àµâ "
"à´àµà´¯àµà´¯àµà´."
-#. TRANSLATORS: The package is already installed on the system
-#: ../client/pk-console.c:809
-#, c-format
-msgid "The package %s is already installed"
-msgstr "%s à´à´¨àµà´¨ പാà´àµà´àµà´àµ നിലവിലàµâ à´à´®àµà´ªàµà´¯àµà´àµà´à´±à´¿à´²àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¤à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ."
-
-#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:817
-#, c-format
-msgid "The package %s could not be installed: %s"
-msgstr "%s à´à´¨àµà´¨ പാà´àµà´àµà´àµ നിà´àµà´à´³àµà´àµ à´à´®àµà´ªàµà´¯àµà´àµà´à´±à´¿à´²àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
-#. TRANSLATORS: There was a programming error that shouldn't happen. The detailed error follows
-#: ../client/pk-console.c:843 ../client/pk-console.c:891
-#: ../client/pk-console.c:915 ../client/pk-console.c:963
-#: ../client/pk-console.c:1059 ../client/pk-console.c:1172
-#: ../client/pk-console.c:1233 ../client/pk-tools-common.c:132
-#: ../client/pk-tools-common.c:151 ../client/pk-tools-common.c:159
-#, c-format
-msgid "Internal error: %s"
-msgstr "à´à´¨àµà´¤à´°à´¿à´ പിശà´àµ: %s"
-
-#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#. ask the user
-#: ../client/pk-console.c:875 ../client/pk-console.c:947
-#: ../client/pk-console.c:1265 ../lib/packagekit-glib2/pk-task-text.c:299
-msgid "Proceed with changes?"
-msgstr "മാറàµà´±à´àµà´à´³àµà´®à´¾à´¯à´¿ à´®àµà´®àµà´ªàµà´àµà´àµ à´ªàµà´à´£à´®àµ?"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:880 ../client/pk-console.c:952
-msgid "The package install was canceled!"
-msgstr "പാà´àµà´àµà´àµ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯à´²àµâ റദàµà´¦à´¾à´àµà´à´¿à´¯à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ!"
-
-#. TRANSLATORS: There was an error installing the packages. The detailed error follows
-#: ../client/pk-console.c:899 ../client/pk-console.c:1633
-#, c-format
-msgid "This tool could not install the packages: %s"
-msgstr "à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ പാà´àµà´àµà´àµà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´²àµà´²: %s"
-
-#. TRANSLATORS: There was an error installing the files. The detailed error follows
-#: ../client/pk-console.c:971
-#, c-format
-msgid "This tool could not install the files: %s"
-msgstr "à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ ഫയലàµà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´²àµà´²: %s"
-
-#. TRANSLATORS: The package name was not found in the installed list. The detailed error follows
-#: ../client/pk-console.c:1027
-#, c-format
-msgid "This tool could not remove %s: %s"
-msgstr "à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ %s à´¨àµà´àµà´à´ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1050 ../client/pk-console.c:1088
-#: ../client/pk-console.c:1117
-#, c-format
-msgid "This tool could not remove the packages: %s"
-msgstr "à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ പാà´àµà´àµà´àµà´à´³àµâ à´¨àµà´àµà´à´ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´²àµà´²: %s"
-
-#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#: ../client/pk-console.c:1103
-msgid "Proceed with additional packages?"
-msgstr "à´àµà´àµà´¤à´²àµâ പാà´àµà´àµà´àµà´à´³àµà´®à´¾à´¯à´¿ à´®àµà´®àµà´ªàµà´àµà´àµ à´ªàµà´à´£à´®àµ?"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1108
-msgid "The package removal was canceled!"
-msgstr "പാà´àµà´àµà´àµ à´¨àµà´àµà´à´ à´àµà´¯àµà´¯à´²àµâ റദàµà´¦à´¾à´àµà´à´¿à´¯à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ!"
-
-#. TRANSLATORS: The package name was not found in any software sources
-#: ../client/pk-console.c:1149
-#, c-format
-msgid "This tool could not download the package %s as it could not be found"
-msgstr "%s പാà´àµà´àµà´àµ à´²à´àµà´¯à´®à´²àµà´²à´¾à´¤àµà´¤à´¤à´¿à´¨à´¾à´²àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ à´
à´¤àµàµ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²"
-
-#. TRANSLATORS: Could not download the packages for some reason. The detailed error follows
-#: ../client/pk-console.c:1180
+#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
+#: ../client/pk-console.c:584
#, c-format
-msgid "This tool could not download the packages: %s"
-msgstr "à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ പാà´àµà´àµà´àµà´à´³àµâ à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´²àµà´²: %s"
+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:1212 ../client/pk-console.c:1224
-#: ../client/pk-console.c:1279
+#: ../client/pk-console.c:612
#, c-format
-msgid "This tool could not update %s: %s"
-msgstr "à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ %s പരിഷàµà´à´°à´¿à´àµà´àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´²àµà´²: %s"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1270
-msgid "The package update was canceled!"
-msgstr "പാà´àµà´àµà´àµ à´ªàµà´¤àµà´àµà´à´²àµâ റദàµà´¦à´¾à´àµà´à´¿à´¯à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ!"
+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:1303 ../client/pk-console.c:1311
+#: ../client/pk-console.c:640 ../client/pk-console.c:668
#, c-format
-msgid "This tool could not get the requirements for %s: %s"
-msgstr "%s-à´¨àµàµ à´à´µà´¶àµà´¯à´®àµà´³àµà´³à´µ à´²à´àµà´¯à´®à´¾à´àµà´àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
+msgid "This tool could not find the package: %s"
+msgstr "പാà´àµà´àµà´àµ à´à´£àµà´àµà´ªà´¿à´à´¿à´àµà´àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
+#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
#. TRANSLATORS: There was an error getting the dependencies for the package. The detailed error follows
-#: ../client/pk-console.c:1333 ../client/pk-console.c:1341
-#, c-format
-msgid "This tool could not get the dependencies for %s: %s"
-msgstr "%s-à´¨àµà´³àµà´³ ഡിപനàµâà´¡à´¨àµâസിà´à´³àµâ à´²à´àµà´¯à´®à´¾à´àµà´àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
#. TRANSLATORS: There was an error getting the details about the package. The detailed error follows
-#: ../client/pk-console.c:1363 ../client/pk-console.c:1371
-#, c-format
-msgid "This tool could not get package details for %s: %s"
-msgstr "%s-à´¨àµà´³àµà´³ പാà´àµà´àµà´à´¿à´¨àµà´±àµ വിശദാà´à´¶à´àµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´àµà´àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
-#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1393
-#, c-format
-msgid "This tool could not find the files for %s: %s"
-msgstr "%s-à´¨àµà´³àµà´³ ഫയലàµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´àµà´àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1401
-#, c-format
-msgid "This tool could not get the file list for %s: %s"
-msgstr "%s-à´¨àµà´³àµà´³ ഫയലàµà´à´³àµà´àµ à´ªà´àµà´à´¿à´ à´²à´àµà´¯à´®à´¾à´àµà´àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
-#. TRANSLATORS: There was an error getting the list of packages. The filename follows
-#: ../client/pk-console.c:1423
-#, c-format
-msgid "File already exists: %s"
-msgstr "ഫയലàµâ നിലവിലàµà´£àµà´àµàµ: %s"
-
-#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1428 ../client/pk-console.c:1484
-#: ../client/pk-console.c:1559
-msgid "Getting package list"
-msgstr "പാà´àµà´àµà´àµ à´¸à´à´¬à´¨àµà´§à´¿à´àµà´àµà´³àµà´³ വിവരഠലà´àµà´¯à´®à´¾à´àµà´¨àµà´¨àµ"
-
-#. TRANSLATORS: There was an error getting the list of packages. The detailed error follows
-#: ../client/pk-console.c:1434 ../client/pk-console.c:1490
-#: ../client/pk-console.c:1565
-#, c-format
-msgid "This tool could not get package list: %s"
-msgstr "à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ പാà´àµà´àµà´àµà´à´³àµà´àµ à´ªà´àµà´à´¿à´ à´²à´àµà´¯à´®à´¾à´àµà´àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
-#. TRANSLATORS: There was an error saving the list
-#: ../client/pk-console.c:1445
-#, c-format
-msgid "Failed to save to disk"
-msgstr "à´¡à´¿à´¸àµà´à´¿à´²àµà´àµà´àµàµ à´¸àµà´àµà´·à´¿à´àµà´àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²"
-
-#. TRANSLATORS: There was an error getting the list. The filename follows
-#: ../client/pk-console.c:1479 ../client/pk-console.c:1554
-#, c-format
-msgid "File does not exist: %s"
-msgstr "ഫയലàµâ നിലവിലിലàµà´²: %s"
-
-#. TRANSLATORS: header to a list of packages newly added
-#: ../client/pk-console.c:1511
-msgid "Packages to add"
-msgstr "à´àµà´°àµâà´àµà´àµà´µà´¾à´¨àµà´³àµà´³ പാà´àµà´àµà´àµà´à´³àµâ"
-
-#. TRANSLATORS: header to a list of packages removed
-#: ../client/pk-console.c:1519
-msgid "Packages to remove"
-msgstr "à´¨àµà´àµà´à´ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµà´³àµà´³ പാà´àµà´àµà´àµà´à´³àµâ"
-
-#. TRANSLATORS: We didn't find any differences
-#: ../client/pk-console.c:1587
-#, c-format
-msgid "No new packages need to be installed"
-msgstr "à´ªàµà´¤à´¿à´¯ പാà´àµà´àµà´àµà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²"
-
-#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1593
-msgid "To install"
-msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµà´³àµà´³ പാà´àµà´àµà´àµà´à´³àµâ"
-
-#. TRANSLATORS: searching takes some time....
-#: ../client/pk-console.c:1605
-msgid "Searching for package: "
-msgstr "പാà´àµà´àµà´à´¿à´¨à´¾à´¯à´¿ à´¤àµà´°à´¯àµà´¨àµà´¨àµ: "
-
-#. TRANSLATORS: package was not found -- this is the end of a string ended in ...
-#: ../client/pk-console.c:1609
-msgid "not found."
-msgstr "à´²à´àµà´¯à´®à´¾à´¯à´¿à´²àµà´²."
-
-#. TRANSLATORS: We didn't find any packages to install
-#: ../client/pk-console.c:1620
-#, c-format
-msgid "No packages can be found to install"
-msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ പാà´àµà´àµà´àµà´à´³àµâ à´²à´àµà´¯à´®à´²àµà´²"
-
-#. TRANSLATORS: installing new packages from package list
-#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
-#: ../client/pk-console.c:1626
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:885
-#, c-format
-msgid "Installing packages"
-msgstr "പാà´àµà´àµà´àµà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
-
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1662
-#, c-format
-msgid "This tool could not find the update details for %s: %s"
-msgstr "%s-à´¨àµàµ പരിഷàµà´à´°à´£à´¤àµà´¤à´¿à´¨àµà´³àµà´³ വിശദാà´à´¶à´àµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´àµà´àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
-#. TRANSLATORS: There was an error getting the details about the update for the package. The detailed error follows
-#: ../client/pk-console.c:1670
+#: ../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 get the update details for %s: %s"
-msgstr "%s-à´¨àµàµ പരിഷàµà´à´°à´£à´¤àµà´¤à´¿à´¨àµà´³àµà´³ വിശദാà´à´¶à´àµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´àµà´àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
-#. TRANSLATORS: This was an unhandled error, and we don't have _any_ context
-#: ../client/pk-console.c:1701
-msgid "Error:"
-msgstr "പിശà´àµ:"
-
-#. TRANSLATORS: This a list of details about the package
-#: ../client/pk-console.c:1715 ../client/pk-console-test.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:1731 ../client/pk-console-test.c:384
-msgid "Message:"
-msgstr "സനàµà´¦àµà´¶à´:"
-
-#. TRANSLATORS: This a list files contained in the package
-#: ../client/pk-console.c:1759 ../client/pk-console-test.c:403
-msgid "Package files"
-msgstr "പാà´àµà´àµà´à´¿à´²àµà´³àµà´³ ഫയലàµà´à´³àµâ"
-
-#. TRANSLATORS: This where the package has no files
-#: ../client/pk-console.c:1767 ../client/pk-console-test.c:398
-msgid "No files"
-msgstr "ഫയലàµà´à´³àµâ à´²à´àµà´¯à´®à´²àµà´²"
-
-#. TRANSLATORS: This a request for a GPG key signature from the backend, which the client will prompt for later
-#: ../client/pk-console.c:1790
-msgid "Repository signature required"
-msgstr "à´¸à´à´à´°à´£à´¿à´¯àµà´àµà´àµà´³àµà´³ à´à´¿à´ªà´¿à´à´¿ à´à´ªàµà´ªàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
-
-#. TRANSLATORS: This a prompt asking the user to import the security key
-#. ask the user
-#: ../client/pk-console.c:1800 ../lib/packagekit-glib2/pk-task-text.c:113
-msgid "Do you accept this signature?"
-msgstr "à´ à´à´ªàµà´ªàµ നിà´àµà´à´³àµâ à´
à´à´àµà´à´°à´¿à´àµà´àµà´¨àµà´¨àµà´µàµ?"
-
-#. TRANSLATORS: This is where the user declined the security key
-#: ../client/pk-console.c:1804 ../lib/packagekit-glib2/pk-task-text.c:117
-msgid "The signature was not accepted."
-msgstr "à´à´ªàµà´ªàµ à´¸àµà´µàµà´à´°à´¿à´àµà´àµà´¨àµà´¨à´¿à´²àµà´²."
-
-#. TRANSLATORS: This a request for a EULA
-#: ../client/pk-console.c:1838
-msgid "End user license agreement required"
-msgstr "à´à´ªà´¯àµà´àµà´¤à´¾à´µà´¿à´¨àµà´³àµà´³ à´²àµà´¸à´¨àµâസൠസമàµà´®à´¤à´ªàµà´ªà´¤àµà´°à´ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
-
-#. TRANSLATORS: This a prompt asking the user to agree to the license
-#: ../client/pk-console.c:1845
-msgid "Do you agree to this license?"
-msgstr "നിà´àµà´à´³àµâ à´ à´²àµà´¸à´¨àµâസൠസàµà´µàµà´à´°à´¿à´àµà´àµà´¨àµà´¨àµà´µàµ?"
-
-#. TRANSLATORS: This is where the user declined the license
-#: ../client/pk-console.c:1849
-msgid "The license was refused."
-msgstr "à´²àµà´¸à´¨àµâസൠനിഷàµà´§à´¿à´àµà´à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ."
+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:1878 ../client/pk-console-test.c:816
+#: ../client/pk-console.c:832
msgid "The daemon crashed mid-transaction!"
msgstr "à´¡àµà´®à´£àµâ à´¤à´à´°àµâà´¨àµà´¨à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ!"
#. TRANSLATORS: This is the header to the --help menu
-#: ../client/pk-console.c:1931 ../client/pk-console-test.c:850
+#: ../client/pk-console.c:866
msgid "PackageKit Console Interface"
msgstr "പാà´àµà´àµà´àµà´à´¿à´±àµà´±àµ à´à´£àµâà´¸àµà´³àµâ à´à´¨àµà´±à´°àµâà´«àµà´¯à´¿à´¸àµ"
#. these are commands we can use with pkcon
-#: ../client/pk-console.c:1933 ../client/pk-console-test.c:852
+#: ../client/pk-console.c:868
msgid "Subcommands:"
msgstr "സബàµà´à´®à´¾à´¨àµâà´¡àµà´à´³àµâ:"
+#. TRANSLATORS: we keep a database updated with the time that an action was last executed
+#: ../client/pk-console.c:947
+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:2026 ../client/pk-console-test.c:966
-#: ../client/pk-generate-pack.c:185 ../client/pk-generate-pack-test.c:222
-#: ../client/pk-monitor.c:128 ../client/pk-monitor-test.c:282
-#: ../contrib/command-not-found/pk-command-not-found.c:616
-#: ../contrib/command-not-found/pk-command-not-found-test.c:614
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:549
+#: ../client/pk-console.c:982 ../client/pk-generate-pack.c:222
+#: ../client/pk-monitor.c:282
+#: ../contrib/command-not-found/pk-command-not-found.c:614
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:500
#: ../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:2029 ../client/pk-console-test.c:969
-#: ../client/pk-monitor.c:130 ../client/pk-monitor-test.c:284
+#: ../client/pk-console.c:985 ../client/pk-monitor.c:284
msgid "Show the program version and exit"
msgstr "à´ªàµà´°àµà´àµà´°à´¾à´®à´¿à´¨àµà´±àµ പതിപàµà´ªàµ à´à´¾à´£à´¿à´àµà´à´¶àµà´·à´ à´ªàµà´±à´¤àµà´¤àµ à´à´à´àµà´àµà´"
#. TRANSLATORS: command line argument, use a filter to narrow down results
-#: ../client/pk-console.c:2032 ../client/pk-console-test.c:972
+#: ../client/pk-console.c:988
msgid "Set the filter, e.g. installed"
msgstr "à´«à´¿à´²àµââà´±àµà´±à´°àµâ à´àµà´°à´®à´¿à´à´°à´¿à´àµà´àµà´, e.g. à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¤à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ"
#. TRANSLATORS: command line argument, work asynchronously
-#: ../client/pk-console.c:2035 ../client/pk-console-test.c:975
+#: ../client/pk-console.c:991
msgid "Exit without waiting for actions to complete"
msgstr "à´ªàµà´°àµâà´¤àµà´¤à´¿à´¯à´¾à´àµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿à´à´³àµâà´àµà´à´¾à´¯à´¿ à´à´¾à´¤àµà´¤à´¿à´°à´¿à´àµà´à´¾à´¤àµ à´ªàµà´±à´¤àµà´¤àµ à´à´à´àµà´àµà´"
-#. TRANSLATORS: This is when we could not connect to the system bus, and is fatal
-#: ../client/pk-console.c:2062
-msgid "This tool could not connect to system DBUS."
-msgstr "സിസàµà´±àµà´±à´ à´¡àµà´¬à´¸à´¿à´²àµà´àµà´àµ à´à´£à´àµà´àµ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´²àµà´²."
+#. TRANSLATORS: we failed to contact the daemon
+#: ../client/pk-console.c:1016
+msgid "Failed to contact PackageKit"
+msgstr "PackageKit-മായി ബനàµà´§à´ªàµà´ªàµà´àµà´µà´¾à´¨àµâ സാധിà´àµà´à´¿à´²àµà´²"
#. TRANSLATORS: The user specified an incorrect filter
-#: ../client/pk-console.c:2152 ../client/pk-console-test.c:1052
+#: ../client/pk-console.c:1068
msgid "The filter specified was invalid"
msgstr "നലàµâà´à´¿à´¯ à´«à´¿à´²àµââà´±àµà´±à´°àµâ à´¤àµà´±àµà´±à´¾à´£àµàµ"
#. TRANSLATORS: a search type can be name, details, file, etc
-#: ../client/pk-console.c:2171 ../client/pk-console-test.c:1071
+#: ../client/pk-console.c:1087
msgid "A search type is required, e.g. name"
msgstr "à´¤àµà´°à´¯àµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ തരഠà´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ, à´à´¦à´¾. à´ªàµà´°àµàµ"
#. TRANSLATORS: the user needs to provide a search term
-#: ../client/pk-console.c:2178 ../client/pk-console.c:2187
-#: ../client/pk-console.c:2196 ../client/pk-console.c:2205
-#: ../client/pk-console-test.c:1078 ../client/pk-console-test.c:1090
-#: ../client/pk-console-test.c:1102 ../client/pk-console-test.c:1114
+#: ../client/pk-console.c:1094 ../client/pk-console.c:1106
+#: ../client/pk-console.c:1118 ../client/pk-console.c:1130
msgid "A search term is required"
msgstr "à´¤àµà´°à´¯àµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ വാà´à´à´ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: the search type was provided, but invalid
-#: ../client/pk-console.c:2212 ../client/pk-console-test.c:1124
+#: ../client/pk-console.c:1140
msgid "Invalid search type"
msgstr "à´¤àµà´±àµà´±à´¾à´¯ തരതàµà´¤à´¿à´²àµà´³àµà´³ à´¤àµà´°à´àµà´à´¿à´²àµâ"
#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console.c:2218
-msgid "A package name or filename to install is required"
-msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ പാà´àµà´àµà´à´¿à´¨àµà´±àµ à´ªàµà´°àµàµ à´
à´²àµà´²àµà´àµà´à´¿à´²àµâ ഫയലിനàµà´±àµ à´ªàµà´°àµàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
+#: ../client/pk-console.c:1146
+msgid "A package name to install is required"
+msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµà´³àµà´³ പാà´àµà´àµà´à´¿à´¨àµà´±àµ à´ªàµà´°àµàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
+
+#. TRANSLATORS: the user did not specify what they wanted to install
+#: ../client/pk-console.c:1155
+msgid "A filename to install is required"
+msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµà´³àµà´³ ഫയലിനàµà´±àµ à´ªàµà´°àµàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2227 ../client/pk-console-test.c:1151
+#: ../client/pk-console.c:1167
msgid "A type, key_id and package_id are required"
msgstr "à´à´¤àµ തരà´, key_id, package_id à´à´¨àµà´¨à´¿à´µ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: the user did not specify what they wanted to remove
-#: ../client/pk-console.c:2236 ../client/pk-console-test.c:1162
+#: ../client/pk-console.c:1178
msgid "A package name to remove is required"
msgstr "à´¨àµà´àµà´à´ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµà´³àµà´³ പാà´àµà´àµà´à´¿à´¨àµà´±àµ à´ªàµà´°àµàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: the user did not specify anything about what to download or where
-#: ../client/pk-console.c:2244 ../client/pk-console-test.c:1171
+#: ../client/pk-console.c:1187
msgid "A destination directory and the package names to download are required"
msgstr "à´à´¤àµàµ ഡയറà´àµà´à´±à´¿ à´à´¨àµà´¨àµà´ à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµà´³àµà´³ പാà´àµà´àµà´àµà´à´³àµà´ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: the directory does not exist, so we can't continue
-#: ../client/pk-console.c:2251 ../client/pk-console-test.c:1178
+#: ../client/pk-console.c:1194
msgid "Directory not found"
msgstr "ഡയറà´àµà´à´±à´¿ à´²à´àµà´¯à´®à´²àµà´²"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2259 ../client/pk-console-test.c:1187
+#: ../client/pk-console.c:1203
msgid "A licence identifier (eula-id) is required"
msgstr "à´²àµà´¸à´¨àµâസൠà´à´¡à´¨àµà´±à´¿à´«à´¯à´°àµâ (eula-id) à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2269 ../client/pk-console-test.c:1198
+#: ../client/pk-console.c:1214
msgid "A transaction identifier (tid) is required"
msgstr "à´à´°àµ à´àµà´°à´¾à´¨àµâസാà´àµà´·à´¨àµâ à´à´¡à´¨àµà´±à´¿à´«à´¯à´°àµâ (tid) à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: The user did not specify a package name
-#: ../client/pk-console.c:2286 ../client/pk-console-test.c:1219
+#: ../client/pk-console.c:1235
msgid "A package name to resolve is required"
msgstr "റിസàµà´³àµâവൠà´àµà´¯àµà´¯àµà´µà´¾à´¨àµà´³àµà´³ പാà´àµà´àµà´à´¿à´¨àµà´±àµ à´ªàµà´°àµàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: The user did not specify a repository (software source) name
-#: ../client/pk-console.c:2295 ../client/pk-console.c:2304
-#: ../client/pk-console-test.c:1230 ../client/pk-console-test.c:1241
+#: ../client/pk-console.c:1246 ../client/pk-console.c:1257
msgid "A repository name is required"
msgstr "à´¸à´à´à´°à´£à´¿à´¯àµà´àµà´àµà´³àµà´³ à´ªàµà´°àµàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: The user didn't provide any data
-#: ../client/pk-console.c:2313 ../client/pk-console-test.c:1252
+#: ../client/pk-console.c:1268
msgid "A repo name, parameter and value are required"
msgstr "à´à´°àµ റിപàµà´ªàµà´¯àµà´àµ à´ªàµà´°àµà´ പരാമàµà´±àµà´±à´°àµà´ à´®àµà´²àµà´²àµà´¯à´µàµà´ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: The user didn't specify what action to use
-#: ../client/pk-console.c:2327 ../client/pk-console-test.c:1269
+#: ../client/pk-console.c:1285
msgid "An action, e.g. 'update-system' is required"
msgstr "à´à´°àµ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ, à´à´¦à´¾. 'update-system'"
#. TRANSLATORS: The user specified an invalid action
-#: ../client/pk-console.c:2334 ../client/pk-console-test.c:1276
+#: ../client/pk-console.c:1292
msgid "A correct role is required"
msgstr "ശരിയായ à´±àµà´³àµâ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
-#. TRANSLATORS: we keep a database updated with the time that an action was last executed
-#: ../client/pk-console.c:2341 ../client/pk-console-test.c:931
-msgid "Failed to get the time since this action was last completed"
-msgstr "à´ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿ à´
വസാനമായി à´ªàµà´°àµâà´¤àµà´¤à´¿à´¯à´¾à´àµà´à´¿à´¯ സമയഠലà´àµà´¯à´®à´¾à´¯à´¿à´²àµà´²"
-
#. TRANSLATORS: The user did not provide a package name
#. TRANSLATORS: This is when the user fails to supply the package name
-#: ../client/pk-console.c:2351 ../client/pk-console.c:2363
-#: ../client/pk-console.c:2372 ../client/pk-console.c:2390
-#: ../client/pk-console.c:2399 ../client/pk-console-test.c:1286
-#: ../client/pk-console-test.c:1301 ../client/pk-console-test.c:1310
-#: ../client/pk-console-test.c:1330 ../client/pk-console-test.c:1339
-#: ../client/pk-generate-pack.c:241 ../client/pk-generate-pack-test.c:285
+#: ../client/pk-console.c:1302 ../client/pk-console.c:1317
+#: ../client/pk-console.c:1326 ../client/pk-console.c:1346
+#: ../client/pk-console.c:1355 ../client/pk-generate-pack.c:285
msgid "A package name is required"
msgstr "പാà´àµà´àµà´à´¿à´¨àµà´±àµ à´ªàµà´°àµàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
#. TRANSLATORS: each package "provides" certain things, e.g. mime(gstreamer-decoder-mp3), the user didn't specify it
-#: ../client/pk-console.c:2381 ../client/pk-console-test.c:1319
+#: ../client/pk-console.c:1335
msgid "A package provide string is required"
msgstr "പാà´àµà´àµà´àµ à´²à´àµà´¯à´®à´¾à´àµà´àµà´¨àµà´¨ à´¸àµà´àµà´°à´¿à´àµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
-#. TRANSLATORS: The user didn't specify a filename to create as a list
-#: ../client/pk-console.c:2408
-msgid "A list file name to create is required"
-msgstr "ലിസàµà´±àµà´±à´¾à´¯à´¿ à´à´£àµà´à´¾à´àµà´àµà´µà´¾à´¨àµà´³àµà´³ ഫയലിനàµà´±àµ നാമഠà´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
-
-#. TRANSLATORS: The user didn't specify a filename to open as a list
-#: ../client/pk-console.c:2418 ../client/pk-console.c:2428
-msgid "A list file to open is required"
-msgstr "ലിസàµà´±àµà´±à´¾à´¯à´¿ à´¤àµà´±à´àµà´àµà´µà´¾à´¨àµà´³àµà´³ ഫയലിനàµà´±àµ നാമഠà´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
-
#. TRANSLATORS: The user tried to use an unsupported option on the command line
-#: ../client/pk-console.c:2482 ../client/pk-console-test.c:1399
+#: ../client/pk-console.c:1415
#, c-format
msgid "Option '%s' is not supported"
msgstr "'%s' à´à´¨àµà´¨ à´à´àµà´à´¿à´à´¤àµà´¤à´¿à´¨àµà´³àµà´³ പിനàµà´¤àµà´£ à´²à´àµà´¯à´®à´²àµà´²"
-#. TRANSLATORS: User does not have permission to do this
-#: ../client/pk-console.c:2495
-msgid "Incorrect privileges for this operation"
-msgstr "à´ à´ªàµà´°à´àµà´°à´¿à´¯ à´¨à´à´ªàµà´ªà´¿à´²à´¾à´àµà´àµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ à´¤àµà´±àµà´±à´¾à´¯ à´
à´¨àµà´®à´¤à´¿à´à´³àµâ"
-
-#. TRANSLATORS: Generic failure of what they asked to do
-#. /* TRANSLATORS: User does not have permission to do this */
-#. g_print ("%s\n", _("Incorrect privileges for this operation"));
#. TRANSLATORS: Generic failure of what they asked to do
-#: ../client/pk-console.c:2498 ../client/pk-console-test.c:1411
+#: ../client/pk-console.c:1425
msgid "Command failed"
msgstr "നിരàµâà´¦àµà´¦àµà´¶à´ പരാà´à´¯à´ªàµà´ªàµà´àµà´àµ"
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console-test.c:568
-#, c-format
-msgid "This tool could not find the 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-test.c:596
-#, 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-test.c:624 ../client/pk-console-test.c:652
-#, c-format
-msgid "This tool could not find the package: %s"
-msgstr "പാà´àµà´àµà´àµ à´à´£àµà´àµà´ªà´¿à´à´¿à´àµà´àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#. 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-test.c:680 ../client/pk-console-test.c:708
-#: ../client/pk-console-test.c:736 ../client/pk-console-test.c:764
-#: ../client/pk-console-test.c:792
-#, c-format
-msgid "This tool could not find all the packages: %s"
-msgstr "à´à´²àµà´²à´¾ പാà´àµà´àµà´àµà´à´³àµà´ à´à´£àµà´àµà´ªà´¿à´à´¿à´àµà´àµà´µà´¾à´¨àµâ à´ à´ªàµà´°à´¯àµà´à´¤àµà´¤à´¿à´¨àµàµ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s"
-
-#. TRANSLATORS: we failed to contact the daemon
-#: ../client/pk-console-test.c:1000
-msgid "Failed to contact PackageKit"
-msgstr "PackageKit-മായി ബനàµà´§à´ªàµà´ªàµà´àµà´µà´¾à´¨àµâ സാധിà´àµà´à´¿à´²àµà´²"
-
-#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console-test.c:1130
-msgid "A package name to install is required"
-msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµà´³àµà´³ പാà´àµà´àµà´à´¿à´¨àµà´±àµ à´ªàµà´°àµàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
-
-#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console-test.c:1139
-msgid "A filename to install is required"
-msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµà´³àµà´³ ഫയലിനàµà´±àµ à´ªàµà´°àµàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
-
-#. TRANSLATORS: This is the state of the transaction
-#: ../client/pk-generate-pack.c:101
-msgid "Downloading"
-msgstr "à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
-
-#. TRANSLATORS: This is when the main packages are being downloaded
-#: ../client/pk-generate-pack.c:121
-msgid "Downloading packages"
-msgstr "പാà´àµà´àµà´àµà´à´³àµâ à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
-
-#. TRANSLATORS: This is when the dependency packages are being downloaded
-#: ../client/pk-generate-pack.c:126
-msgid "Downloading dependencies"
-msgstr "à´¡à´¿à´ªàµà´¨àµâà´¡à´¨àµâസിà´à´³àµâ à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
-
#. TRANSLATORS: we can exclude certain packages (glibc) when we know they'll exist on the target
-#: ../client/pk-generate-pack.c:188 ../client/pk-generate-pack-test.c:225
+#: ../client/pk-generate-pack.c:225
msgid "Set the file name of dependencies to be excluded"
msgstr "à´àµà´°àµâà´àµà´àµà´£àµà´à´¾à´¤àµà´¤ ഡിപനàµâഡസിà´à´³àµà´àµ ഫയലàµâ നാമഠസà´àµà´à´®à´¾à´àµà´àµà´"
#. TRANSLATORS: the output location
-#: ../client/pk-generate-pack.c:191 ../client/pk-generate-pack-test.c:228
+#: ../client/pk-generate-pack.c:228
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:194 ../client/pk-generate-pack-test.c:231
+#: ../client/pk-generate-pack.c:231
msgid "The package to be put into the service pack"
msgstr "സരàµâà´µàµà´¸àµ പാà´àµà´à´¿à´²àµà´àµà´àµ à´àµà´°àµâà´àµà´àµà´£àµà´ പാà´àµà´àµà´àµ"
#. TRANSLATORS: put all pending updates in the pack
-#: ../client/pk-generate-pack.c:197 ../client/pk-generate-pack-test.c:234
+#: ../client/pk-generate-pack.c:234
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:225 ../client/pk-generate-pack-test.c:269
+#: ../client/pk-generate-pack.c:269
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:233 ../client/pk-generate-pack-test.c:277
+#: ../client/pk-generate-pack.c:277
msgid "Both options selected."
msgstr "à´°à´£àµà´àµàµ à´à´àµà´à´¿à´à´àµà´à´³àµà´ à´¤àµà´°à´àµà´àµà´àµà´¤àµà´¤à´¿à´àµà´à´¿à´²àµà´²."
#. TRANSLATORS: This is when the user fails to supply the output
-#: ../client/pk-generate-pack.c:249 ../client/pk-generate-pack-test.c:293
+#: ../client/pk-generate-pack.c:293
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
+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
-#. 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:267 ../client/pk-generate-pack.c:273
-#: ../client/pk-generate-pack-test.c:321 ../client/pk-generate-pack-test.c:327
+#: ../client/pk-generate-pack.c:322 ../client/pk-generate-pack.c:328
msgid "The package manager cannot perform this type of operation."
msgstr "പാà´àµà´àµà´àµ നിരàµà´àµà´·à´à´¨àµàµ ഠതരതàµà´¤à´¿à´²àµà´³àµà´³ à´ªàµà´°à´àµà´°à´¿à´¯ à´¨à´à´¤àµà´¤àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´²àµà´²"
#. TRANSLATORS: This is when the distro didn't include libarchive support into PK
-#: ../client/pk-generate-pack.c:280 ../client/pk-generate-pack-test.c:334
+#: ../client/pk-generate-pack.c:335
msgid ""
"Service packs cannot be created as PackageKit was not built with libarchive "
"support."
msgstr "libarchive പിനàµà´¤àµà´£ à´à´²àµà´²à´¾à´¤àµ PackageKit à´à´£àµà´à´¾à´àµà´à´¿à´¯à´¤à´¿à´¨à´¾à´²àµâ, സരàµâà´µàµà´¸àµ പാà´àµà´àµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´àµà´¨àµà´¨à´¤à´²àµà´²."
#. TRANSLATORS: the user specified an absolute path, but didn't get the extension correct
-#: ../client/pk-generate-pack.c:291 ../client/pk-generate-pack-test.c:345
+#: ../client/pk-generate-pack.c:346
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:307 ../client/pk-generate-pack-test.c:361
+#: ../client/pk-generate-pack.c:362
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:310 ../client/pk-generate-pack-test.c:364
+#: ../client/pk-generate-pack.c:365
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:323 ../client/pk-generate-pack-test.c:377
+#: ../client/pk-generate-pack.c:378
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:333 ../client/pk-generate-pack-test.c:389
+#: ../client/pk-generate-pack.c:390
msgid "Failed to open package list."
msgstr "പാà´àµà´àµà´àµà´à´³àµà´àµ à´ªà´àµà´à´¿à´ à´¤àµà´±à´àµà´àµà´¨àµà´¨à´¤à´¿à´²àµâ പരാà´à´¯à´."
#. TRANSLATORS: The package name is being matched up to available packages
-#: ../client/pk-generate-pack.c:344 ../client/pk-generate-pack-test.c:398
+#: ../client/pk-generate-pack.c:399
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:348 ../client/pk-generate-pack-test.c:402
+#: ../client/pk-generate-pack.c:403
#, 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:365 ../client/pk-generate-pack-test.c:410
+#: ../client/pk-generate-pack.c:411
msgid "Creating service pack..."
msgstr "സരàµâà´µàµà´¸àµ പാà´àµà´àµ à´à´£àµà´à´¾à´àµà´àµà´¨àµà´¨àµ..."
#. TRANSLATORS: we succeeded in making the file
-#: ../client/pk-generate-pack.c:372 ../client/pk-generate-pack-test.c:425
+#: ../client/pk-generate-pack.c:426
#, c-format
msgid "Service pack created '%s'"
msgstr "'%s' സരàµâà´µàµà´¸àµ പാà´àµà´àµ à´à´£àµà´à´¾à´àµà´à´¿à´¯à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ"
#. TRANSLATORS: we failed to make te file
-#: ../client/pk-generate-pack.c:377 ../client/pk-generate-pack-test.c:430
+#: ../client/pk-generate-pack.c:431
#, c-format
msgid "Failed to create '%s': %s"
msgstr "'%s' à´à´£àµà´à´¾à´àµà´àµà´¨àµà´¨à´¤à´¿à´²àµâ പരാà´à´¯à´: %s"
-#. TRANSLATORS: this is a program that monitors PackageKit
-#: ../client/pk-monitor.c:146 ../client/pk-monitor-test.c:299
-msgid "PackageKit Monitor"
-msgstr "പാà´àµà´àµà´àµà´à´¿à´±àµà´±àµ നിരàµà´àµà´·à´à´¨àµâ"
-
-#: ../client/pk-monitor.c:183
-msgid "Cannot show the list of transactions"
-msgstr "à´à´à´ªà´¾à´àµà´à´³àµâ à´à´¾à´£à´¿à´àµà´àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´²àµà´²"
-
-#: ../client/pk-monitor-test.c:204
+#: ../client/pk-monitor.c:204
msgid "Failed to get transaction list"
msgstr "à´à´à´ªà´¾à´àµà´à´³àµà´àµ à´ªà´àµà´à´¿à´ à´²à´àµà´¯à´®à´¾à´àµà´àµà´¨àµà´¨à´¤à´¿à´²àµâ പരാà´à´¯à´"
-#: ../client/pk-monitor-test.c:235
+#: ../client/pk-monitor.c:235
msgid "Failed to get daemon state"
msgstr "à´¡àµà´®à´£àµâ à´
വസàµà´¥ à´²à´àµà´¯à´®à´¾à´àµà´àµà´¨àµà´¨à´¤à´¿à´²àµâ പരാà´à´¯à´"
-#: ../client/pk-tools-common.c:51
-#: ../lib/packagekit-glib2/pk-console-shared.c:53
-#, c-format
-msgid "Please enter a number from 1 to %i: "
-msgstr "ദയവായി 1 à´®àµà´¤à´²àµâ %i വരàµà´¯àµà´³àµà´³ à´à´°àµ à´
à´àµà´à´ നലàµâà´àµà´: "
-
-#. TRANSLATORS: The package was not found in any software sources
-#: ../client/pk-tools-common.c:188
-#, c-format
-msgid "The package could not be found"
-msgstr "പാà´àµà´àµà´àµ à´²à´àµà´¯à´®à´¾à´¯à´¿à´²àµà´²"
-
-#. TRANSLATORS: more than one package could be found that matched, to follow is a list of possible packages
-#: ../client/pk-tools-common.c:200
-#: ../lib/packagekit-glib2/pk-console-shared.c:153
-msgid "More than one package matches:"
-msgstr "à´à´¨àµà´¨à´¿à´²àµâ à´àµà´àµà´¤à´²àµâ à´àµà´°àµà´¨àµà´¨ പാà´àµà´àµà´àµà´à´³àµâ:"
-
-#. TRANSLATORS: This finds out which package in the list to use
-#: ../client/pk-tools-common.c:207
-#: ../lib/packagekit-glib2/pk-console-shared.c:162
-msgid "Please choose the correct package: "
-msgstr "ദയവായി ശരിയായ പാà´àµà´àµà´àµ à´¤àµà´°à´àµà´àµà´àµà´àµà´àµà´: "
+#. TRANSLATORS: this is a program that monitors PackageKit
+#: ../client/pk-monitor.c:299
+msgid "PackageKit Monitor"
+msgstr "പാà´àµà´àµà´àµà´à´¿à´±àµà´±àµ നിരàµà´àµà´·à´à´¨àµâ"
#. TRANSLATORS: when we are getting data from the daemon
-#: ../contrib/browser-plugin/pk-plugin-install.c:466
+#: ../contrib/browser-plugin/pk-plugin-install.c:495
msgid "Getting package information..."
msgstr "പാà´àµà´àµà´àµ à´¸à´à´¬à´¨àµà´§à´¿à´àµà´àµà´³àµà´³ വിവരഠലà´àµà´¯à´®à´¾à´àµà´¨àµà´¨àµ..."
#. TRANSLATORS: run an applicaiton
-#: ../contrib/browser-plugin/pk-plugin-install.c:472
+#: ../contrib/browser-plugin/pk-plugin-install.c:501
#, c-format
msgid "Run %s"
msgstr "%s à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿à´ªàµà´ªà´¿à´àµà´àµà´"
#. TRANSLATORS: show the installed version of a package
-#: ../contrib/browser-plugin/pk-plugin-install.c:478
+#: ../contrib/browser-plugin/pk-plugin-install.c:507
msgid "Installed version"
msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¤à´¿à´°à´¿à´àµà´àµà´¨àµà´¨ പതിപàµà´ªàµ"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/pk-plugin-install.c:486
+#: ../contrib/browser-plugin/pk-plugin-install.c:515
#, c-format
msgid "Run version %s now"
msgstr "%s à´à´¨àµà´¨ പതിപàµà´ªàµ à´à´à´¨àµâ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿à´ªàµà´ªà´¿à´àµà´àµà´"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/pk-plugin-install.c:492
+#: ../contrib/browser-plugin/pk-plugin-install.c:521
msgid "Run now"
msgstr "à´à´à´¨àµâ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿à´ªàµà´ªà´¿à´àµà´àµà´"
#. TRANSLATORS: update to a new version of the package
-#: ../contrib/browser-plugin/pk-plugin-install.c:498
+#: ../contrib/browser-plugin/pk-plugin-install.c:527
#, c-format
msgid "Update to version %s"
msgstr "%s à´à´¨àµà´¨ പതിപàµà´ªà´¿à´²àµà´àµà´àµ പരിഷàµà´à´°à´¿à´àµà´àµà´"
#. TRANSLATORS: To install a package
-#: ../contrib/browser-plugin/pk-plugin-install.c:504
+#: ../contrib/browser-plugin/pk-plugin-install.c:533
#, c-format
msgid "Install %s now"
msgstr "%s à´à´à´¨àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´"
#. TRANSLATORS: the version of the package
-#: ../contrib/browser-plugin/pk-plugin-install.c:507
+#: ../contrib/browser-plugin/pk-plugin-install.c:536
msgid "Version"
msgstr "പതിപàµà´ªàµ"
#. TRANSLATORS: noting found, so can't install
-#: ../contrib/browser-plugin/pk-plugin-install.c:512
+#: ../contrib/browser-plugin/pk-plugin-install.c:541
msgid "No packages found for your system"
msgstr "നിà´àµà´à´³àµà´àµ സിസàµà´±àµà´±à´®à´¿à´²àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ പാà´àµà´àµà´àµà´à´³àµâ à´²à´àµà´¯à´®à´²àµà´²"
#. TRANSLATORS: package is being installed
-#: ../contrib/browser-plugin/pk-plugin-install.c:517
+#: ../contrib/browser-plugin/pk-plugin-install.c:546
msgid "Installing..."
msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ..."
#. TRANSLATORS: downloading repo data so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:349
-#: ../contrib/command-not-found/pk-command-not-found-test.c:358
+#: ../contrib/command-not-found/pk-command-not-found.c:358
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:353
-#: ../contrib/command-not-found/pk-command-not-found-test.c:362
+#: ../contrib/command-not-found/pk-command-not-found.c:362
msgid "Downloading filelists (this may take some time to complete)."
msgstr "ഫയലàµâലിസàµà´±àµà´±àµà´à´³àµâ à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ (à´à´¤à´²àµâപഠസമയമàµà´àµà´àµà´àµà´¨àµà´¨àµ)."
#. TRANSLATORS: waiting for native lock
-#: ../contrib/command-not-found/pk-command-not-found.c:357
-#: ../contrib/command-not-found/pk-command-not-found-test.c:366
+#: ../contrib/command-not-found/pk-command-not-found.c:366
msgid "Waiting for package manager lock."
msgstr "പാà´àµà´àµà´àµ മാനàµà´à´°àµâ à´²àµà´àµà´à´¿à´¨à´¾à´¯à´¿ à´à´¾à´¤àµà´¤à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ."
#. TRANSLATORS: loading package cache so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:361
-#: ../contrib/command-not-found/pk-command-not-found-test.c:370
+#: ../contrib/command-not-found/pk-command-not-found.c:370
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:420
-#: ../contrib/command-not-found/pk-command-not-found-test.c:444
+#: ../contrib/command-not-found/pk-command-not-found.c:444
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:557
-#: ../contrib/command-not-found/pk-command-not-found-test.c:570
+#: ../contrib/command-not-found/pk-command-not-found.c:570
msgid "Failed to launch:"
msgstr "à´²à´àµà´¯à´®à´¾à´àµà´àµà´¨àµà´¨à´¤à´¿à´²àµâ പരാà´à´¯à´ªàµà´ªàµà´àµà´àµ:"
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/command-not-found/pk-command-not-found.c:632
-#: ../contrib/command-not-found/pk-command-not-found-test.c:630
+#: ../contrib/command-not-found/pk-command-not-found.c:630
msgid "PackageKit Command Not Found"
msgstr "പാà´àµà´àµà´àµà´à´¿à´±àµà´±àµ à´à´®à´¾à´¨àµâഡൠലà´àµà´¯à´®à´¾à´¯à´¿à´²àµà´²"
#. 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-test.c:658
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-test.c:665
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-test.c:674
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
-#. 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-test.c:686
-#: ../contrib/command-not-found/pk-command-not-found-test.c:695
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-test.c:702
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-test.c:721
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-test.c:726
#, c-format
msgid "Install package '%s' to provide command '%s'?"
msgstr "'%s' പാà´àµà´àµà´àµ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´, à´à´¤àµàµ '%s' നിരàµâà´¦àµà´¦àµà´¶à´ നലàµâà´àµà´¨àµà´¨àµ?"
#. TRANSLATORS: Show the user a list of packages that provide this command
#: ../contrib/command-not-found/pk-command-not-found.c:747
-#: ../contrib/command-not-found/pk-command-not-found-test.c:747
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-test.c:756
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-test.c:764
msgid "Please choose a package to install"
msgstr "ദയവായി à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´¨àµà´¨à´¤à´¿à´¨à´¾à´¯à´¿ à´à´°àµ പാà´àµà´àµà´àµ à´¤àµà´°à´àµà´àµà´àµà´àµà´àµà´"
#. TRANSLATORS: we are starting to install the packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:187
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:195
msgid "Starting install"
msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ à´à´°à´à´à´¿à´àµà´àµà´¨àµà´¨àµ"
#. TRANSLATORS: we couldn't find the package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:397
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:402
#, 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:552
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:503
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:555
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:506
msgid "Do not install dependencies of the core packages"
msgstr "à´àµà´°àµâ പാà´àµà´àµà´àµà´à´³àµà´àµ ഡിപനàµâà´¡à´¨àµâസിà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯à´°àµà´¤àµàµ"
#. command line argument, do we operate quietly
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:558
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:509
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:576
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:524
msgid "PackageKit Debuginfo Installer"
msgstr "PackageKit Debuginfo Installer"
#. TRANSLATORS: the use needs to specify a list of package names on the command line
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:588
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:536
#, 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:622
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:568
#, c-format
msgid "Getting sources list"
msgstr "റിപàµà´ªàµà´¸à´¿à´±àµà´±à´±à´¿à´à´³àµà´àµ വിവരഠലà´àµà´¯à´®à´¾à´àµà´¨àµà´¨àµ"
+#. TRANSLATORS: operation was not successful
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:578
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:653
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:737
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:781
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:848
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:892
+msgid "FAILED."
+msgstr "FAILED."
+
#. TRANSLATORS: all completed 100%
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:640
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:680
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:715
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:799
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:843
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:910
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:954
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:593
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:633
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:668
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:752
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:796
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:863
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:907
#, c-format
msgid "OK."
msgstr "ശരി."
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:643
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:596
#, c-format
msgid "Found %i enabled and %i disabled sources."
msgstr "%i à´¸à´àµà´à´®à´¾à´àµà´à´¿à´¯à´µà´¯àµà´ %i à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¨ രഹിതവàµà´®à´¾à´¯ à´¸àµà´´àµà´¸àµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´£àµàµ."
#. TRANSLATORS: we're finding repositories that match out pattern
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:650
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:603
#, c-format
msgid "Finding debugging sources"
msgstr "à´¡àµà´¬à´àµà´à´¿à´àµ à´¸àµà´´àµà´¸àµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´àµà´àµà´¨àµà´¨àµ"
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:683
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:636
#, c-format
msgid "Found %i disabled debuginfo repos."
msgstr "à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¨ രഹിതമായ %i debuginfo റിപàµà´ªàµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´àµà´à´¿à´¯à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ."
#. TRANSLATORS: we're now enabling all the debug sources we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:690
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:643
#, c-format
msgid "Enabling debugging sources"
msgstr "à´¡àµà´¬à´àµà´à´¿à´àµ à´¸àµà´´àµà´¸àµà´à´³àµâ à´¸à´àµà´à´®à´¾à´àµà´àµà´¨àµà´¨àµ"
-#. TRANSLATORS: operation was not successful
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:700
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:784
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:828
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:895
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:939
-msgid "FAILED."
-msgstr "FAILED."
-
#. TRANSLATORS: tell the user how many we enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:718
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:671
#, c-format
msgid "Enabled %i debugging sources."
msgstr "%i à´¡àµà´¬à´àµà´à´¿à´àµ à´¸àµà´´àµà´¸àµà´à´³àµâ à´¸à´àµà´à´®à´¾à´àµà´à´¿à´¯à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ."
#. TRANSLATORS: we're now finding packages that match in all the repos
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:725
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:678
#, c-format
msgid "Finding debugging packages"
msgstr "à´à´²àµà´²à´¾ റിപàµà´ªàµà´à´³à´¿à´²àµà´®àµà´³àµà´³ പാà´àµà´àµà´àµà´à´³àµâ (à´¡àµà´¬à´àµà´à´¿à´àµ) à´à´£àµà´àµà´ªà´¿à´à´¿à´àµà´àµà´¨àµà´¨àµ."
#. TRANSLATORS: we couldn't find the package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:737
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:690
#, c-format
msgid "Failed to find the package %s: %s"
msgstr "%s à´à´¨àµà´¨ പാà´àµà´àµà´àµ à´à´£àµà´àµà´ªà´¿à´à´¿à´àµà´àµà´µà´¾à´¨à´¾à´¯à´¿à´²àµà´²: %s"
#. TRANSLATORS: we couldn't find the debuginfo package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:760
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:713
#, c-format
msgid "Failed to find the debuginfo package %s: %s"
msgstr "debuginfo പാà´àµà´àµà´àµ %s à´à´£àµà´àµà´ªà´¿à´à´¿à´àµà´àµà´µà´¾à´¨à´¾à´¯à´¿à´²àµà´²: %s"
#. TRANSLATORS: no debuginfo packages could be found to be installed
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:788
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:741
#, c-format
msgid "Found no packages to install."
msgstr "à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ പാà´àµà´àµà´àµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´¯à´¿à´²àµà´²."
#. TRANSLATORS: tell the user we found some packages, and then list them
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:802
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:755
#, c-format
msgid "Found %i packages:"
msgstr "%i പാà´àµà´àµà´àµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´¯à´¿:"
#. TRANSLATORS: tell the user we are searching for deps
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:818
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:771
#, c-format
msgid "Finding packages that depend on these packages"
msgstr "ഠപാà´àµà´àµà´àµà´à´³àµ à´à´¶àµà´°à´¯à´¿à´àµà´àµà´¨àµà´¨ പാà´àµà´àµà´àµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´àµà´àµà´¨àµà´¨àµ"
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:831
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:784
#, c-format
msgid "Could not find dependant packages: %s"
msgstr "ഡിപനàµâà´¡à´¨àµà´±àµ പാà´àµà´àµà´àµà´à´³àµâ à´à´£àµà´àµà´ªà´¿à´à´¿à´àµà´àµà´µà´¾à´¨à´¾à´¯à´¿à´²àµà´²: %s"
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:847
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:800
#, c-format
msgid "Found %i extra packages."
msgstr "à´
ധിà´à´®à´¾à´¯ %i പാà´àµà´àµà´àµà´à´³àµâ à´²à´àµà´¯à´®à´¾à´¯à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ."
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:851
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:804
#, c-format
msgid "No extra packages required."
msgstr "à´
ധിà´à´®à´¾à´¯ പാà´àµà´àµà´àµà´à´³àµâ à´à´µà´¶àµà´¯à´®à´¿à´²àµà´²."
#. TRANSLATORS: tell the user we found some packages (and deps), and then list them
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:860
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:813
#, c-format
msgid "Found %i packages to install:"
msgstr "%i പാà´àµà´àµà´àµà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµà´£àµà´àµàµ:"
#. TRANSLATORS: simulate mode is a testing mode where we quit before the action
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:873
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:826
#, c-format
msgid "Not installing packages in simulate mode"
msgstr "സിമàµà´²àµà´±àµà´±àµ à´®àµà´¡à´¿à´²àµâ പാà´àµà´àµà´àµà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´¨àµà´¨à´¤à´²àµà´²"
+#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
+#. TRANSLATORS: transaction state, installing packages
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:838
+#: ../lib/packagekit-glib2/pk-console-shared.c:246
+#, c-format
+msgid "Installing packages"
+msgstr "പാà´àµà´àµà´àµà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:898
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:851
#, c-format
msgid "Could not install packages: %s"
msgstr "പാà´àµà´àµà´àµà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´µà´¾à´¨àµâ സാധàµà´¯à´®à´²àµà´²: %s"
#. TRANSLATORS: we are now disabling all debuginfo repos we previously enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:930
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:883
#, c-format
msgid "Disabling sources previously enabled"
msgstr "à´®àµà´®àµà´ªàµ à´¸à´àµà´à´®à´¾à´àµà´à´¿à´¯ à´¸àµà´´àµà´¸àµà´à´³àµâ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¨ രഹിതമാà´àµà´àµà´¨àµà´¨àµ"
#. TRANSLATORS: no debuginfo packages could be found to be installed, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:942
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:895
#, c-format
msgid "Could not disable the debugging sources: %s"
msgstr "à´¡àµà´¬à´àµà´à´¿à´àµ à´¸àµà´´àµà´¸àµà´à´³àµâ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¨ രഹിതമാà´àµà´àµà´µà´¾à´¨àµâ സാധിà´àµà´à´¿à´²àµà´²: %s"
#. TRANSLATORS: we disabled all the debugging repos that we enabled before
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:957
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:910
#, c-format
msgid "Disabled %i debugging sources."
msgstr "%i à´¡àµà´¬à´àµà´à´¿à´àµ à´¸àµà´´àµà´¸àµà´à´³àµâ à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¨ രഹിതമാà´àµà´à´¿à´¯à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ."
@@ -1403,90 +1040,333 @@ msgstr "പാà´àµà´àµà´àµà´à´¿à´±àµà´±à´¿à´¨àµà´³àµà´³ പാà´àµà´
msgid "PackageKit Service Pack"
msgstr "പാà´àµà´àµà´àµà´à´¿à´±àµà´±à´¿à´¨àµà´³àµà´³ സരàµâà´µàµà´¸àµ പാà´àµà´àµ"
-#. ask the user
+#: ../lib/packagekit-glib2/pk-console-shared.c:53
+#, c-format
+msgid "Please enter a number from 1 to %i: "
+msgstr "ദയവായി 1 à´®àµà´¤à´²àµâ %i വരàµà´¯àµà´³àµà´³ à´à´°àµ à´
à´àµà´à´ നലàµâà´àµà´: "
+
+#. 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:153
+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:162
+msgid "Please choose the correct package: "
+msgstr "ദയവായി ശരിയായ പാà´àµà´àµà´àµ à´¤àµà´°à´àµà´àµà´àµà´àµà´àµà´: "
+
+#. TRANSLATORS: This is when the transaction status is not known
+#: ../lib/packagekit-glib2/pk-console-shared.c:214
+msgid "Unknown state"
+msgstr "à´
പരിà´à´¿à´¤à´®à´¾à´¯ à´
വസàµà´¥"
+
+#. TRANSLATORS: transaction state, the daemon is in the process of starting
+#: ../lib/packagekit-glib2/pk-console-shared.c:218
+msgid "Starting"
+msgstr "à´à´°à´à´à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, the transaction is waiting for another to complete
+#: ../lib/packagekit-glib2/pk-console-shared.c:222
+msgid "Waiting in queue"
+msgstr "à´àµà´¯àµà´µà´¿à´²àµâ à´à´¾à´¤àµà´¤à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, just started
+#: ../lib/packagekit-glib2/pk-console-shared.c:226
+msgid "Running"
+msgstr "à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, is querying data
+#: ../lib/packagekit-glib2/pk-console-shared.c:230
+msgid "Querying"
+msgstr "à´àµà´µà´±à´¿ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, getting data from a server
+#: ../lib/packagekit-glib2/pk-console-shared.c:234
+msgid "Getting information"
+msgstr "വിവരഠലà´àµà´¯à´®à´¾à´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, removing packages
+#: ../lib/packagekit-glib2/pk-console-shared.c:238
+msgid "Removing packages"
+msgstr "പാà´àµà´àµà´àµà´à´³àµâ à´¨àµà´àµà´à´ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, downloading package files
+#: ../lib/packagekit-glib2/pk-console-shared.c:242
+msgid "Downloading packages"
+msgstr "പാà´àµà´àµà´àµà´à´³àµâ à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, refreshing internal lists
+#: ../lib/packagekit-glib2/pk-console-shared.c:250
+msgid "Refreshing software list"
+msgstr "à´¸àµà´«àµà´±àµà´±àµâà´µàµà´¯à´°àµâ à´ªà´àµà´à´¿ à´ªàµà´¤àµà´àµà´àµà´¨àµà´¨àµàµ"
+
+#. TRANSLATORS: transaction state, installing updates
+#: ../lib/packagekit-glib2/pk-console-shared.c:254
+msgid "Installing updates"
+msgstr "പരിഷàµà´à´¾à´°à´àµà´à´³àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, removing old packages, and cleaning config files
+#: ../lib/packagekit-glib2/pk-console-shared.c:258
+msgid "Cleaning up packages"
+msgstr "പാà´àµà´àµà´àµà´à´³àµâ à´µàµà´à´¿à´ªàµà´ªà´¾à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, obsoleting old packages
+#: ../lib/packagekit-glib2/pk-console-shared.c:262
+msgid "Obsoleting packages"
+msgstr "പാà´àµà´àµà´àµà´à´³àµâ à´à´²àµà´²à´¾à´¤à´¾à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, checking the transaction before we do it
+#: ../lib/packagekit-glib2/pk-console-shared.c:266
+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:270
+msgid "Checking signatures"
+msgstr "à´à´ªàµà´ªàµà´à´³àµâ പരിശàµà´§à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, when we return to a previous system state
+#: ../lib/packagekit-glib2/pk-console-shared.c:274
+msgid "Rolling back"
+msgstr "à´±àµà´³à´¿à´àµ ബാà´àµà´àµ"
+
+#. TRANSLATORS: transaction state, when we're doing a test transaction
+#: ../lib/packagekit-glib2/pk-console-shared.c:278
+msgid "Testing changes"
+msgstr "മാറàµà´±à´àµà´à´³àµâ പരàµà´àµà´·à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, when we're writing to the system package database
+#: ../lib/packagekit-glib2/pk-console-shared.c:282
+msgid "Committing changes"
+msgstr "മാറàµà´±à´àµà´à´³àµâ സമരàµâà´ªàµà´ªà´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, requesting data from a server
+#: ../lib/packagekit-glib2/pk-console-shared.c:286
+msgid "Requesting data"
+msgstr "à´¡àµà´±àµà´±à´¾ à´à´µà´¶àµà´¯à´ªàµà´ªàµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, all done!
+#: ../lib/packagekit-glib2/pk-console-shared.c:290
+msgid "Finished"
+msgstr "à´ªàµà´°àµâà´¤àµà´¤à´¿à´¯à´¾à´àµà´à´¿"
+
+#. TRANSLATORS: transaction state, in the process of cancelling
+#: ../lib/packagekit-glib2/pk-console-shared.c:294
+msgid "Cancelling"
+msgstr "റദàµà´¦à´¾à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:298
+msgid "Downloading repository information"
+msgstr "റിപàµà´ªàµà´¸à´¿à´±àµà´±à´±à´¿ വിവരഠഡàµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:302
+msgid "Downloading list of packages"
+msgstr "പാà´àµà´àµà´àµà´à´³àµà´àµ à´ªà´àµà´à´¿à´ à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:306
+msgid "Downloading file lists"
+msgstr "ഫയലàµâ à´ªà´àµà´à´¿à´à´à´³àµââ à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:310
+msgid "Downloading lists of changes"
+msgstr "മാറàµà´±à´àµà´à´³àµà´àµ à´ªà´àµà´à´¿à´ à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:314
+msgid "Downloading groups"
+msgstr "à´àµà´°àµà´ªàµà´ªàµà´à´³àµâ à´¡àµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:318
+msgid "Downloading update information"
+msgstr "പരിഷàµà´à´°à´£ വിവരഠഡàµà´£àµâà´²àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, repackaging delta files
+#: ../lib/packagekit-glib2/pk-console-shared.c:322
+msgid "Repackaging files"
+msgstr "ഫയലàµà´à´³àµâ à´µàµà´£àµà´àµà´ പാà´àµà´àµà´àµ à´àµà´¯àµà´¯àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, loading databases
+#: ../lib/packagekit-glib2/pk-console-shared.c:326
+msgid "Loading cache"
+msgstr "à´à´¾à´·àµ à´²à´àµà´¯à´®à´¾à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, scanning for running processes
+#: ../lib/packagekit-glib2/pk-console-shared.c:330
+msgid "Scanning applications"
+msgstr "à´ªàµà´°à´¯àµà´à´àµà´à´³àµâ പരിശàµà´§à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: transaction state, generating a list of packages installed on the system
+#: ../lib/packagekit-glib2/pk-console-shared.c:334
+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:338
+msgid "Waiting for package manager lock"
+msgstr "പാà´àµà´àµà´àµ മാനàµà´à´°àµâ à´²àµà´àµà´à´¿à´¨à´¾à´¯à´¿ à´à´¾à´¤àµà´¤à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: waiting for user to type in a password
+#: ../lib/packagekit-glib2/pk-console-shared.c:342
+msgid "Waiting for authentication"
+msgstr "à´à´§à´¿à´à´¾à´°à´¿à´à´¤à´¯àµà´àµà´à´¾à´¯à´¿ à´à´¾à´¤àµà´¤à´¿à´°à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: we are updating the list of processes
+#: ../lib/packagekit-glib2/pk-console-shared.c:346
+msgid "Updating running applications"
+msgstr "à´ªàµà´°à´µà´°àµâà´¤àµà´¤à´¿à´àµà´àµà´¨àµà´¨ à´ªàµà´°à´¯àµà´à´àµà´à´³àµâ പരിഷàµà´à´°à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: we are checking executable files currently in use
+#: ../lib/packagekit-glib2/pk-console-shared.c:350
+msgid "Checking applications in use"
+msgstr "à´à´ªà´¯àµà´à´¿à´¤àµà´¤à´¿à´²àµà´³àµà´³ à´ªàµà´°à´¯àµà´à´àµà´à´³àµâ പരിശàµà´§à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: we are checking for libraries currently in use
+#: ../lib/packagekit-glib2/pk-console-shared.c:354
+msgid "Checking libraries in use"
+msgstr "à´à´ªà´¯àµà´à´¤àµà´¤à´¿à´²àµà´³àµà´³ à´²àµà´¬àµà´°à´±à´¿à´à´³àµâ പരിശàµà´§à´¿à´àµà´àµà´¨àµà´¨àµ"
+
+#. TRANSLATORS: ask the user if they are comfortable installing insecure packages
#: ../lib/packagekit-glib2/pk-task-text.c:64
msgid "Do you want to allow installing of unsigned software?"
msgstr "à´à´ªàµà´ªà´¿à´²àµà´²à´¾à´¤àµà´¤ à´¸àµà´«àµà´±àµà´±àµâà´µàµà´¯à´°àµâ നിà´àµà´à´³àµâà´àµà´àµàµ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯à´£à´®àµ?"
-#: ../lib/packagekit-glib2/pk-task-text.c:68
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:69
msgid "The unsigned software will not be installed."
msgstr "à´à´ªàµà´ªà´¿à´àµà´à´¿à´àµà´à´¿à´²àµà´²à´¾à´¤àµà´¤ à´¸àµà´«àµà´±àµà´±àµâà´µàµà´¯à´°àµâ à´à´¨àµâà´¸àµà´±àµà´±àµà´³àµâ à´àµà´¯àµà´¯àµà´¨àµà´¨à´¤à´²àµà´²."
-#: ../lib/packagekit-glib2/pk-task-text.c:100
+#. TRANSLATORS: the package repository is signed by a key that is not recognised
+#: ../lib/packagekit-glib2/pk-task-text.c:102
msgid "Software source signature required"
msgstr "à´¸àµà´«àµà´±àµà´±àµâà´µàµà´¯à´°àµâ à´¸àµà´´àµà´¸àµ à´à´ªàµà´ªàµàµ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
-#: ../lib/packagekit-glib2/pk-task-text.c:102
+#. TRANSLATORS: the package repository name
+#: ../lib/packagekit-glib2/pk-task-text.c:108
msgid "Software source name"
msgstr "à´¸àµà´«àµà´±àµà´±àµâà´µàµà´¯à´°àµâ à´¸àµà´´àµà´¸à´¿à´¨àµà´±àµ à´ªàµà´°àµàµ"
-#: ../lib/packagekit-glib2/pk-task-text.c:103
+#. TRANSLATORS: the key URL
+#: ../lib/packagekit-glib2/pk-task-text.c:111
msgid "Key URL"
msgstr "à´àµ à´¯àµà´à´°àµâà´à´²àµâ"
-#: ../lib/packagekit-glib2/pk-task-text.c:104
+#. TRANSLATORS: the username of the key
+#: ../lib/packagekit-glib2/pk-task-text.c:114
msgid "Key user"
msgstr "à´àµ à´à´ªà´¯àµà´àµà´¤à´¾à´µàµàµ"
-#: ../lib/packagekit-glib2/pk-task-text.c:105
+#. TRANSLATORS: the key ID, usually a few hex digits
+#: ../lib/packagekit-glib2/pk-task-text.c:117
msgid "Key ID"
msgstr "à´àµ ID"
-#: ../lib/packagekit-glib2/pk-task-text.c:106
+#. TRANSLATORS: the key fingerprint, again, yet more hex
+#: ../lib/packagekit-glib2/pk-task-text.c:120
msgid "Key fingerprint"
msgstr "à´àµ വിരലà´à´¯à´¾à´³à´"
-#: ../lib/packagekit-glib2/pk-task-text.c:107
+#. TRANSLATORS: the timestamp (a bit like a machine readable time)
+#: ../lib/packagekit-glib2/pk-task-text.c:123
msgid "Key Timestamp"
msgstr "à´àµ à´àµà´à´¸àµà´à´¾à´®àµà´ªàµ"
-#: ../lib/packagekit-glib2/pk-task-text.c:151
+#. TRANSLATORS: ask the user if they want to import
+#: ../lib/packagekit-glib2/pk-task-text.c:129
+msgid "Do you accept this signature?"
+msgstr "à´ à´à´ªàµà´ªàµ നിà´àµà´à´³àµâ à´
à´à´àµà´à´°à´¿à´àµà´àµà´¨àµà´¨àµà´µàµ?"
+
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:134
+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
msgid "End user licence agreement required"
msgstr "à´à´ªà´¯àµà´àµà´¤à´¾à´µà´¿à´¨àµà´³àµà´³ à´²àµà´¸à´¨àµâസൠസമàµà´®à´¤à´ªàµà´ªà´¤àµà´°à´ à´à´µà´¶àµà´¯à´®àµà´£àµà´àµàµ"
-#: ../lib/packagekit-glib2/pk-task-text.c:152
-msgid "EULA ID"
-msgstr "EULA ID"
-
-#: ../lib/packagekit-glib2/pk-task-text.c:155
+#. TRANSLATORS: the EULA text itself (long and boring)
+#: ../lib/packagekit-glib2/pk-task-text.c:178
msgid "Agreement"
msgstr "സമàµà´®à´¤à´ªàµà´ªà´¤àµà´°à´"
-#. ask the user
-#: ../lib/packagekit-glib2/pk-task-text.c:161
+#. TRANSLATORS: ask the user if they've read and accepted the EULA
+#: ../lib/packagekit-glib2/pk-task-text.c:184
msgid "Do you accept this agreement?"
msgstr "ഠസമàµà´®à´¤à´ªàµà´ªà´¤àµà´°à´ നിà´àµà´à´³àµâ à´
à´à´àµà´à´°à´¿à´àµà´àµà´¨àµà´¨àµà´µàµ?"
-#: ../lib/packagekit-glib2/pk-task-text.c:165
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:189
msgid "The agreement was not accepted."
msgstr "സമàµà´®à´¤à´ªàµà´ªà´¤àµà´°à´ à´¸àµà´µàµà´à´°à´¿à´àµà´àµà´¨àµà´¨à´¿à´²àµà´²."
-#: ../lib/packagekit-glib2/pk-task-text.c:194
+#. TRANSLATORS: the user needs to change media inserted into the computer
+#: ../lib/packagekit-glib2/pk-task-text.c:219
msgid "Media change required"
msgstr "à´®àµà´¡à´¿à´¯à´¾ മാറàµà´±àµà´£àµà´à´¤àµà´£àµà´àµàµ"
-#: ../lib/packagekit-glib2/pk-task-text.c:195
+#. TRANSLATORS: the type, e.g. DVD, CD, etc
+#: ../lib/packagekit-glib2/pk-task-text.c:222
msgid "Media type"
msgstr "à´®àµà´¡à´¿à´¯à´¾ തരà´"
-#: ../lib/packagekit-glib2/pk-task-text.c:196
-msgid "Media ID"
-msgstr "à´®àµà´¡à´¿à´¯à´¾ ID "
+#. TRANSLATORS: the media label, usually like 'disk-1of3'
+#: ../lib/packagekit-glib2/pk-task-text.c:225
+msgid "Media label"
+msgstr "à´®àµà´¡à´¿à´¯à´¾ à´²àµà´¬à´²àµâ"
-#: ../lib/packagekit-glib2/pk-task-text.c:197
+#. TRANSLATORS: the media description, usually like 'Fedora 12 disk 5'
+#: ../lib/packagekit-glib2/pk-task-text.c:228
msgid "Text"
msgstr "വാà´àµà´¯à´"
-#. ask the user
-#: ../lib/packagekit-glib2/pk-task-text.c:201
+#. TRANSLATORS: ask the user to insert the media
+#: ../lib/packagekit-glib2/pk-task-text.c:232
msgid "Please insert the correct media"
msgstr "ദയവായി ശരിയായ à´®àµà´¡à´¿à´¯à´¾ à´¤àµà´°à´àµà´àµà´àµà´àµà´àµà´"
-#: ../lib/packagekit-glib2/pk-task-text.c:205
+#. TRANSLATORS: tell the user we've not done anything as they are lazy
+#: ../lib/packagekit-glib2/pk-task-text.c:237
msgid "The correct media was not inserted."
msgstr "ശരിയായ à´®àµà´¡à´¿à´¯à´¾ നലàµâà´à´¿à´¯à´¿à´àµà´à´¿à´²àµà´²."
-#: ../lib/packagekit-glib2/pk-task-text.c:303
+#. TRANSLATORS: When processing, we might have to remove other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:252
+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
+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
+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
+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
+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
+msgid "Proceed with changes?"
+msgstr "മാറàµà´±à´àµà´à´³àµà´®à´¾à´¯à´¿ à´®àµà´®àµà´ªàµà´àµà´àµ à´ªàµà´à´£à´®àµ?"
+
+#. TRANSLATORS: tell the user we didn't do anything
+#: ../lib/packagekit-glib2/pk-task-text.c:336
msgid "The transaction did not proceed."
msgstr "à´à´à´ªà´¾à´àµàµ à´¤àµà´à´°àµâà´¨àµà´¨à´¿à´²àµà´²."
commit a9790bad49e33d0e2112bb005815468bbd65420f
Author: raven <raven at fedoraproject.org>
Date: Wed Sep 9 16:14:48 2009 +0000
Sending translation for Polish
diff --git a/po/pl.po b/po/pl.po
index 62a3c9f..e668f01 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,8 +5,8 @@ msgid ""
msgstr ""
"Project-Id-Version: pl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-08 14:35+0000\n"
-"PO-Revision-Date: 2009-09-08 18:17+0200\n"
+"POT-Creation-Date: 2009-09-09 15:38+0000\n"
+"PO-Revision-Date: 2009-09-09 18:14+0200\n"
"Last-Translator: Piotr DrÄ
g <piotrdrag at gmail.com>\n"
"Language-Team: Polish <fedora-trans-pl at redhat.com>\n"
"MIME-Version: 1.0\n"
@@ -16,153 +16,124 @@ msgstr ""
"|| n%100>=20) ? 1 : 2);\n"
#. TRANSLATORS: this is an atomic transaction
-#: ../client/pk-console.c:237 ../client/pk-console-test.c:143
+#: ../client/pk-console.c:143
msgid "Transaction"
msgstr "Transakcja"
#. TRANSLATORS: this is the time the transaction was started in system timezone
-#: ../client/pk-console.c:239 ../client/pk-console-test.c:145
+#: ../client/pk-console.c:145
msgid "System time"
msgstr "Czas systemowy"
#. TRANSLATORS: this is if the transaction succeeded or not
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:147
+#: ../client/pk-console.c:147
msgid "Succeeded"
msgstr "Powodzenie"
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:147
+#: ../client/pk-console.c:147
msgid "True"
msgstr "Prawda"
-#: ../client/pk-console.c:241 ../client/pk-console-test.c:147
+#: ../client/pk-console.c:147
msgid "False"
msgstr "FaÅsz"
#. TRANSLATORS: this is the transactions role, e.g. "update-system"
#. TRANSLATORS: the trasaction role, e.g. update-system
-#: ../client/pk-console.c:243 ../client/pk-console-test.c:149
-#: ../src/pk-polkit-action-lookup.c:327
+#: ../client/pk-console.c:149 ../src/pk-polkit-action-lookup.c:327
msgid "Role"
msgstr "Rola"
#. TRANSLATORS: this is The duration of the transaction
-#: ../client/pk-console.c:248 ../client/pk-console-test.c:154
+#: ../client/pk-console.c:154
msgid "Duration"
msgstr "Czas trwania"
-#: ../client/pk-console.c:248 ../client/pk-console-test.c:154
+#: ../client/pk-console.c:154
msgid "(seconds)"
msgstr "(sekundy)"
#. 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:252 ../client/pk-console-test.c:158
-#: ../src/pk-polkit-action-lookup.c:341
+#: ../client/pk-console.c:158 ../src/pk-polkit-action-lookup.c:341
msgid "Command line"
msgstr "Wiersz poleceÅ"
#. TRANSLATORS: this is the user ID of the user that started the action
-#: ../client/pk-console.c:254 ../client/pk-console-test.c:160
+#: ../client/pk-console.c:160
msgid "User ID"
msgstr "Identyfikator użytkownika"
#. TRANSLATORS: this is the username, e.g. hughsie
-#: ../client/pk-console.c:261 ../client/pk-console-test.c:167
+#: ../client/pk-console.c:167
msgid "Username"
msgstr "Nazwa użytkownika"
#. TRANSLATORS: this is the users real name, e.g. "Richard Hughes"
-#: ../client/pk-console.c:265 ../client/pk-console-test.c:171
+#: ../client/pk-console.c:171
msgid "Real name"
msgstr "ImiÄ i nazwisko"
-#: ../client/pk-console.c:273 ../client/pk-console-test.c:179
+#: ../client/pk-console.c:179
msgid "Affected packages:"
msgstr "Dotyczy pakietów:"
-#: ../client/pk-console.c:275 ../client/pk-console-test.c:181
+#: ../client/pk-console.c:181
msgid "Affected packages: None"
msgstr "Dotyczy pakietów: żadnych"
-#. TRANSLATORS: When processing, we might have to remove other dependencies
-#: ../client/pk-console.c:336 ../lib/packagekit-glib2/pk-task-text.c:220
-msgid "The following packages have to be removed:"
-msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ usuniÄte:"
-
-#. TRANSLATORS: When processing, we might have to install other dependencies
-#: ../client/pk-console.c:339 ../lib/packagekit-glib2/pk-task-text.c:225
-msgid "The following packages have to be installed:"
-msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ zainstalowane:"
-
-#. TRANSLATORS: When processing, we might have to update other dependencies
-#: ../client/pk-console.c:342 ../lib/packagekit-glib2/pk-task-text.c:230
-msgid "The following packages have to be updated:"
-msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ zaktualizowane:"
-
-#. TRANSLATORS: When processing, we might have to reinstall other dependencies
-#: ../client/pk-console.c:345 ../lib/packagekit-glib2/pk-task-text.c:235
-msgid "The following packages have to be reinstalled:"
-msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ ponownie zainstalowane:"
-
-#. TRANSLATORS: When processing, we might have to downgrade other dependencies
-#: ../client/pk-console.c:348 ../lib/packagekit-glib2/pk-task-text.c:240
-msgid "The following packages have to be downgraded:"
-msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ zainstalowane w starszych wersjach:"
-
#. TRANSLATORS: this is the distro, e.g. Fedora 10
-#: ../client/pk-console.c:362 ../client/pk-console-test.c:201
+#: ../client/pk-console.c:201
msgid "Distribution"
msgstr "Dystrybucja"
#. TRANSLATORS: this is type of update, stable or testing
-#: ../client/pk-console.c:364 ../client/pk-console-test.c:203
+#: ../client/pk-console.c:203
msgid "Type"
msgstr "Typ"
#. TRANSLATORS: this is any summary text describing the upgrade
#. TRANSLATORS: this is the summary of the group
-#. TRANSLATORS: this is any summary text describing the upgrade
-#. TRANSLATORS: this is the summary of the group
-#: ../client/pk-console.c:366 ../client/pk-console.c:389
-#: ../client/pk-console-test.c:205 ../client/pk-console-test.c:226
+#: ../client/pk-console.c:205 ../client/pk-console.c:226
msgid "Summary"
msgstr "Podsumowanie"
#. TRANSLATORS: this is the group category name
-#: ../client/pk-console.c:378 ../client/pk-console-test.c:215
+#: ../client/pk-console.c:215
msgid "Category"
msgstr "Kategoria"
#. TRANSLATORS: this is group identifier
-#: ../client/pk-console.c:380 ../client/pk-console-test.c:217
+#: ../client/pk-console.c:217
msgid "ID"
msgstr "Identyfikator"
#. TRANSLATORS: this is the parent group
-#: ../client/pk-console.c:383 ../client/pk-console-test.c:220
+#: ../client/pk-console.c:220
msgid "Parent"
msgstr "NadrzÄdna"
#. TRANSLATORS: this is the name of the parent group
-#: ../client/pk-console.c:386 ../client/pk-console-test.c:223
+#: ../client/pk-console.c:223
msgid "Name"
msgstr "Nazwa"
#. TRANSLATORS: this is preferred icon for the group
-#: ../client/pk-console.c:392 ../client/pk-console-test.c:229
+#: ../client/pk-console.c:229
msgid "Icon"
msgstr "Ikona"
#. TRANSLATORS: this is a header for the package that can be updated
-#: ../client/pk-console.c:407 ../client/pk-console-test.c:243
+#: ../client/pk-console.c:243
msgid "Details about the update:"
msgstr "SzczegóÅy aktualizacji:"
#. TRANSLATORS: details about the update, package name and version
+#. 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:409 ../client/pk-console-test.c:249
-#: ../lib/packagekit-glib2/pk-task-text.c:101
-#: ../lib/packagekit-glib2/pk-task-text.c:153
+#: ../client/pk-console.c:249 ../lib/packagekit-glib2/pk-task-text.c:105
+#: ../lib/packagekit-glib2/pk-task-text.c:172
#: ../src/pk-polkit-action-lookup.c:352
msgid "Package"
msgid_plural "Packages"
@@ -171,121 +142,143 @@ msgstr[1] "Pakiety"
msgstr[2] "Pakietów"
#. TRANSLATORS: details about the update, any packages that this update updates
-#: ../client/pk-console.c:412 ../client/pk-console-test.c:252
+#: ../client/pk-console.c:252
msgid "Updates"
msgstr "Aktualizuje"
#. TRANSLATORS: details about the update, any packages that this update obsoletes
-#: ../client/pk-console.c:416 ../client/pk-console-test.c:256
+#: ../client/pk-console.c:256
msgid "Obsoletes"
msgstr "ZastÄpuje"
#. TRANSLATORS: details about the update, the vendor URLs
-#: ../client/pk-console.c:420 ../client/pk-console-test.c:260
-#: ../lib/packagekit-glib2/pk-task-text.c:154
+#. TRANSLATORS: the vendor (e.g. vmware) that is providing the EULA
+#: ../client/pk-console.c:260 ../lib/packagekit-glib2/pk-task-text.c:175
msgid "Vendor"
msgstr "Producent"
#. TRANSLATORS: details about the update, the bugzilla URLs
-#: ../client/pk-console.c:424 ../client/pk-console-test.c:264
+#: ../client/pk-console.c:264
msgid "Bugzilla"
msgstr "Bugzilla"
#. TRANSLATORS: details about the update, the CVE URLs
-#: ../client/pk-console.c:428 ../client/pk-console-test.c:268
+#: ../client/pk-console.c:268
msgid "CVE"
msgstr "CVE"
#. TRANSLATORS: details about the update, if the package requires a restart
-#: ../client/pk-console.c:432 ../client/pk-console-test.c:272
+#: ../client/pk-console.c:272
msgid "Restart"
msgstr "Uruchom ponownie"
#. TRANSLATORS: details about the update, any description of the update
-#: ../client/pk-console.c:436 ../client/pk-console-test.c:276
+#: ../client/pk-console.c:276
msgid "Update text"
msgstr "Tekst aktualizacji"
#. TRANSLATORS: details about the update, the changelog for the package
-#: ../client/pk-console.c:440 ../client/pk-console-test.c:280
+#: ../client/pk-console.c:280
msgid "Changes"
msgstr "Zmiany"
#. TRANSLATORS: details about the update, the ongoing state of the update
-#: ../client/pk-console.c:444 ../client/pk-console-test.c:284
+#: ../client/pk-console.c:284
msgid "State"
msgstr "Stan"
#. TRANSLATORS: details about the update, date the update was issued
-#: ../client/pk-console.c:449 ../client/pk-console-test.c:289
+#: ../client/pk-console.c:289
msgid "Issued"
msgstr "Wydano"
#. TRANSLATORS: details about the update, date the update was updated
-#: ../client/pk-console.c:454 ../client/pk-console-test.c:294
+#: ../client/pk-console.c:294
msgid "Updated"
msgstr "Zaktualizowano"
#. TRANSLATORS: if the repo is enabled
-#: ../client/pk-console.c:474 ../client/pk-console-test.c:312
+#: ../client/pk-console.c:312
msgid "Enabled"
msgstr "WÅÄ
czone"
#. TRANSLATORS: if the repo is disabled
-#: ../client/pk-console.c:477 ../client/pk-console-test.c:315
+#: ../client/pk-console.c:315
msgid "Disabled"
msgstr "WyÅÄ
czone"
-#: ../client/pk-console.c:554 ../client/pk-console.c:556
-msgid "Percentage"
-msgstr "Procentowo"
-
-#: ../client/pk-console.c:556
-msgid "Unknown"
-msgstr "Nieznane"
-
#. TRANSLATORS: a package requires the system to be restarted
-#: ../client/pk-console.c:598 ../client/pk-console-test.c:337
+#: ../client/pk-console.c:337
msgid "System restart required by:"
msgstr "Ponowne uruchomienie systemu jest wymagane przez:"
#. TRANSLATORS: a package requires the session to be restarted
-#: ../client/pk-console.c:601 ../client/pk-console-test.c:340
+#: ../client/pk-console.c:340
msgid "Session restart required:"
msgstr "Wymagane jest ponowne uruchomienie sesji:"
#. TRANSLATORS: a package requires the system to be restarted due to a security update
-#: ../client/pk-console.c:604 ../client/pk-console-test.c:343
+#: ../client/pk-console.c:343
msgid "System restart (security) required by:"
msgstr "Ponowne uruchomienie systemu jest wymagane przez:"
#. TRANSLATORS: a package requires the session to be restarted due to a security update
-#: ../client/pk-console.c:607 ../client/pk-console-test.c:346
+#: ../client/pk-console.c:346
msgid "Session restart (security) required:"
msgstr "Wymagane jest ponowne uruchomienie sesji (z powodu bezpieczeÅstwa):"
#. TRANSLATORS: a package requires the application to be restarted
-#: ../client/pk-console.c:610 ../client/pk-console-test.c:349
+#: ../client/pk-console.c:349
msgid "Application restart required by:"
msgstr "Ponowne uruchomienie programu jest wymagane przez:"
+#. TRANSLATORS: This a list of details about the package
+#: ../client/pk-console.c:366
+msgid "Package description"
+msgstr "Opis pakietu"
+
+#. TRANSLATORS: This a message (like a little note that may be of interest) from the transaction
+#: ../client/pk-console.c:384
+msgid "Message:"
+msgstr "Komunikat:"
+
+#. TRANSLATORS: This where the package has no files
+#: ../client/pk-console.c:398
+msgid "No files"
+msgstr "Brak plików"
+
+#. TRANSLATORS: This a list files contained in the package
+#: ../client/pk-console.c:403
+msgid "Package files"
+msgstr "Pliki pakietu"
+
+#. TRANSLATORS: we failed to get any results, which is pretty fatal in my book
+#: ../client/pk-console.c:462
+msgid "Fatal error"
+msgstr "Krytyczny bÅÄ
d"
+
+#. TRANSLATORS: we failed, but there was no error set
+#: ../client/pk-console.c:475
+msgid "Transaction failed with no error"
+msgstr "Transakcja nie powiodÅa siÄ, ale nie wystÄ
piÅ bÅÄ
d"
+
+#. TRANSLATORS: the transaction failed in a way we could not expect
+#: ../client/pk-console.c:480
+msgid "The transaction failed"
+msgstr "Transakcja nie powiodÅa siÄ"
+
#. TRANSLATORS: a package needs to restart their system
-#: ../client/pk-console.c:665 ../client/pk-console-test.c:538
+#: ../client/pk-console.c:554
msgid "Please restart the computer to complete the update."
msgstr "ProszÄ uruchomiÄ ponownie komputer, aby zakoÅczyÄ aktualizacjÄ."
#. TRANSLATORS: a package needs to restart the session
-#: ../client/pk-console.c:668 ../client/pk-console-test.c:541
+#: ../client/pk-console.c:557
msgid "Please logout and login to complete the update."
msgstr "ProszÄ wylogowaÄ siÄ i zalogowaÄ, aby zakoÅczyÄ aktualizacjÄ."
-#. TRANSLATORS: a package needs to restart the application
-#: ../client/pk-console.c:671
-msgid "Please restart the application as it is being used."
-msgstr "ProszÄ uruchomiÄ program ponownie, ponieważ jest używany."
-
#. TRANSLATORS: a package needs to restart their system (due to security)
-#: ../client/pk-console.c:674 ../client/pk-console-test.c:544
+#: ../client/pk-console.c:560
msgid ""
"Please restart the computer to complete the update as important security "
"updates have been installed."
@@ -294,7 +287,7 @@ msgstr ""
"zainstalowano aktualizacje bezpieczeÅstwa."
#. TRANSLATORS: a package needs to restart the session (due to security)
-#: ../client/pk-console.c:677 ../client/pk-console-test.c:547
+#: ../client/pk-console.c:563
msgid ""
"Please logout and login to complete the update as important security updates "
"have been installed."
@@ -302,522 +295,203 @@ msgstr ""
"ProszÄ wylogowaÄ siÄ i zalogowaÄ, aby zakoÅczyÄ aktualizacjÄ, ponieważ "
"zainstalowano aktualizacje bezpieczeÅstwa."
-#. TRANSLATORS: The package is already installed on the system
-#: ../client/pk-console.c:809
-#, c-format
-msgid "The package %s is already installed"
-msgstr "Pakiet %s jest już zainstalowany"
-
-#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:817
-#, c-format
-msgid "The package %s could not be installed: %s"
-msgstr "Nie można zainstalowaÄ pakietu %s: %s"
-
-#. TRANSLATORS: There was a programming error that shouldn't happen. The detailed error follows
-#: ../client/pk-console.c:843 ../client/pk-console.c:891
-#: ../client/pk-console.c:915 ../client/pk-console.c:963
-#: ../client/pk-console.c:1059 ../client/pk-console.c:1172
-#: ../client/pk-console.c:1233 ../client/pk-tools-common.c:132
-#: ../client/pk-tools-common.c:151 ../client/pk-tools-common.c:159
-#, c-format
-msgid "Internal error: %s"
-msgstr "WewnÄtrzny bÅÄ
d: %s"
-
-#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#. ask the user
-#: ../client/pk-console.c:875 ../client/pk-console.c:947
-#: ../client/pk-console.c:1265 ../lib/packagekit-glib2/pk-task-text.c:299
-msgid "Proceed with changes?"
-msgstr "KontynuowaÄ wprowadzanie zmian?"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:880 ../client/pk-console.c:952
-msgid "The package install was canceled!"
-msgstr "Anulowano instalacjÄ pakietu!"
-
-#. TRANSLATORS: There was an error installing the packages. The detailed error follows
-#: ../client/pk-console.c:899 ../client/pk-console.c:1633
-#, c-format
-msgid "This tool could not install the packages: %s"
-msgstr "Te narzÄdzie nie może zainstalowaÄ pakietów: %s"
-
-#. TRANSLATORS: There was an error installing the files. The detailed error follows
-#: ../client/pk-console.c:971
-#, c-format
-msgid "This tool could not install the files: %s"
-msgstr "Te narzÄdzie nie może zainstalowaÄ plików: %s"
-
-#. TRANSLATORS: The package name was not found in the installed list. The detailed error follows
-#: ../client/pk-console.c:1027
-#, c-format
-msgid "This tool could not remove %s: %s"
-msgstr "Te narzÄdzie nie może usunÄ
Ä %s: %s"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1050 ../client/pk-console.c:1088
-#: ../client/pk-console.c:1117
-#, c-format
-msgid "This tool could not remove the packages: %s"
-msgstr "Te narzÄdzie nie może usunÄ
Ä pakietów: %s"
-
-#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#: ../client/pk-console.c:1103
-msgid "Proceed with additional packages?"
-msgstr "KontynuowaÄ usuwanie dodatkowych pakietów?"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1108
-msgid "The package removal was canceled!"
-msgstr "Anulowano usuniÄcie pakietu!"
-
-#. TRANSLATORS: The package name was not found in any software sources
-#: ../client/pk-console.c:1149
-#, c-format
-msgid "This tool could not download the package %s as it could not be found"
-msgstr "Te narzÄdzie nie może pobraÄ pakietu %s, ponieważ nie można go znaleźÄ"
-
-#. TRANSLATORS: Could not download the packages for some reason. The detailed error follows
-#: ../client/pk-console.c:1180
+#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
+#: ../client/pk-console.c:584
#, c-format
-msgid "This tool could not download the packages: %s"
-msgstr "Te narzÄdzie nie może pobraÄ pakietów: %s"
+msgid "This tool could not find any available package: %s"
+msgstr "Te narzÄdzie nie może znaleÅºÄ dostÄpnych pakietów: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1212 ../client/pk-console.c:1224
-#: ../client/pk-console.c:1279
+#: ../client/pk-console.c:612
#, c-format
-msgid "This tool could not update %s: %s"
-msgstr "Te narzÄdzie nie może zaktualizowaÄ %s: %s"
-
-#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1270
-msgid "The package update was canceled!"
-msgstr "Anulowano aktualizacjÄ pakietu!"
+msgid "This tool could not find the installed package: %s"
+msgstr "Te narzÄdzie nie może znaleÅºÄ zainstalowanego pakietu: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1303 ../client/pk-console.c:1311
+#: ../client/pk-console.c:640 ../client/pk-console.c:668
#, c-format
-msgid "This tool could not get the requirements for %s: %s"
-msgstr "Te narzÄdzie nie może uzyskaÄ wymagaÅ dla %s: %s"
+msgid "This tool could not find the package: %s"
+msgstr "Te narzÄdzie nie może znaleÅºÄ pakietu: %s"
+#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
#. TRANSLATORS: There was an error getting the dependencies for the package. The detailed error follows
-#: ../client/pk-console.c:1333 ../client/pk-console.c:1341
-#, c-format
-msgid "This tool could not get the dependencies for %s: %s"
-msgstr "Te narzÄdzie nie może uzyskaÄ zależnoÅci dla %s: %s"
-
#. TRANSLATORS: There was an error getting the details about the package. The detailed error follows
-#: ../client/pk-console.c:1363 ../client/pk-console.c:1371
-#, c-format
-msgid "This tool could not get package details for %s: %s"
-msgstr "Te narzÄdzie nie może uzyskaÄ szczegóÅów pakietu %s: %s"
-
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1393
+#: ../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 the files for %s: %s"
-msgstr "Te narzÄdzie nie może znaleÅºÄ plików dla %s: %s"
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1401
-#, c-format
-msgid "This tool could not get the file list for %s: %s"
-msgstr "Te narzÄdzie nie może uzyskaÄ listy plików dla %s: %s"
-
-#. TRANSLATORS: There was an error getting the list of packages. The filename follows
-#: ../client/pk-console.c:1423
-#, c-format
-msgid "File already exists: %s"
-msgstr "Plik już istnieje: %s"
-
-#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1428 ../client/pk-console.c:1484
-#: ../client/pk-console.c:1559
-msgid "Getting package list"
-msgstr "Pobieranie listy pakietów"
-
-#. TRANSLATORS: There was an error getting the list of packages. The detailed error follows
-#: ../client/pk-console.c:1434 ../client/pk-console.c:1490
-#: ../client/pk-console.c:1565
-#, c-format
-msgid "This tool could not get package list: %s"
-msgstr "Te narzÄdzie nie może pobraÄ listy pakietów: %s"
-
-#. TRANSLATORS: There was an error saving the list
-#: ../client/pk-console.c:1445
-#, c-format
-msgid "Failed to save to disk"
-msgstr "Zapisanie na dysku nie powiodÅo siÄ"
-
-#. TRANSLATORS: There was an error getting the list. The filename follows
-#: ../client/pk-console.c:1479 ../client/pk-console.c:1554
-#, c-format
-msgid "File does not exist: %s"
-msgstr "Plik nie istnieje: %s"
-
-#. TRANSLATORS: header to a list of packages newly added
-#: ../client/pk-console.c:1511
-msgid "Packages to add"
-msgstr "Pakiety do dodania"
-
-#. TRANSLATORS: header to a list of packages removed
-#: ../client/pk-console.c:1519
-msgid "Packages to remove"
-msgstr "Pakiety do usuniÄcia"
-
-#. TRANSLATORS: We didn't find any differences
-#: ../client/pk-console.c:1587
-#, c-format
-msgid "No new packages need to be installed"
-msgstr "Nie trzeba instalowaÄ nowych pakietów"
-
-#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1593
-msgid "To install"
-msgstr "Do zainstalowania"
-
-#. TRANSLATORS: searching takes some time....
-#: ../client/pk-console.c:1605
-msgid "Searching for package: "
-msgstr "Wyszukiwanie pakietu: "
-
-#. TRANSLATORS: package was not found -- this is the end of a string ended in ...
-#: ../client/pk-console.c:1609
-msgid "not found."
-msgstr "nie znaleziono."
-
-#. TRANSLATORS: We didn't find any packages to install
-#: ../client/pk-console.c:1620
-#, c-format
-msgid "No packages can be found to install"
-msgstr "Nie można znaleÅºÄ pakietów do zainstalowania"
-
-#. TRANSLATORS: installing new packages from package list
-#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
-#: ../client/pk-console.c:1626
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:885
-#, c-format
-msgid "Installing packages"
-msgstr "Instalowanie pakietów"
-
-#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1662
-#, c-format
-msgid "This tool could not find the update details for %s: %s"
-msgstr "Te narzÄdzie nie może znaleÅºÄ szczegóÅów aktualizacji dla %s: %s"
-
-#. TRANSLATORS: There was an error getting the details about the update for the package. The detailed error follows
-#: ../client/pk-console.c:1670
-#, c-format
-msgid "This tool could not get the update details for %s: %s"
-msgstr "Te narzÄdzie nie może uzyskaÄ szczegóÅów aktualizacji dla %s: %s"
-
-#. TRANSLATORS: This was an unhandled error, and we don't have _any_ context
-#: ../client/pk-console.c:1701
-msgid "Error:"
-msgstr "BÅÄ
d:"
-
-#. TRANSLATORS: This a list of details about the package
-#: ../client/pk-console.c:1715 ../client/pk-console-test.c:366
-msgid "Package description"
-msgstr "Opis pakietu"
-
-#. TRANSLATORS: This a message (like a little note that may be of interest) from the transaction
-#: ../client/pk-console.c:1731 ../client/pk-console-test.c:384
-msgid "Message:"
-msgstr "Komunikat:"
-
-#. TRANSLATORS: This a list files contained in the package
-#: ../client/pk-console.c:1759 ../client/pk-console-test.c:403
-msgid "Package files"
-msgstr "Pliki pakietu"
-
-#. TRANSLATORS: This where the package has no files
-#: ../client/pk-console.c:1767 ../client/pk-console-test.c:398
-msgid "No files"
-msgstr "Brak plików"
-
-#. TRANSLATORS: This a request for a GPG key signature from the backend, which the client will prompt for later
-#: ../client/pk-console.c:1790
-msgid "Repository signature required"
-msgstr "Wymagany jest podpis repozytorium"
-
-#. TRANSLATORS: This a prompt asking the user to import the security key
-#. ask the user
-#: ../client/pk-console.c:1800 ../lib/packagekit-glib2/pk-task-text.c:113
-msgid "Do you accept this signature?"
-msgstr "ZaakceptowaÄ ten podpis?"
-
-#. TRANSLATORS: This is where the user declined the security key
-#: ../client/pk-console.c:1804 ../lib/packagekit-glib2/pk-task-text.c:117
-msgid "The signature was not accepted."
-msgstr "Podpis nie zostaÅ zaakceptowany."
-
-#. TRANSLATORS: This a request for a EULA
-#: ../client/pk-console.c:1838
-msgid "End user license agreement required"
-msgstr "Licencja jest wymagana"
-
-#. TRANSLATORS: This a prompt asking the user to agree to the license
-#: ../client/pk-console.c:1845
-msgid "Do you agree to this license?"
-msgstr "ZaakceptowaÄ tÄ licencjÄ?"
-
-#. TRANSLATORS: This is where the user declined the license
-#: ../client/pk-console.c:1849
-msgid "The license was refused."
-msgstr "Odrzucono licencjÄ."
+msgid "This tool could not find all the packages: %s"
+msgstr "Te narzÄdzie nie może znaleÅºÄ wszystkich pakietów: %s"
#. TRANSLATORS: This is when the daemon crashed, and we are up shit creek without a paddle
-#: ../client/pk-console.c:1878 ../client/pk-console-test.c:816
+#: ../client/pk-console.c:832
msgid "The daemon crashed mid-transaction!"
msgstr "Demon zawiesiÅ siÄ w poÅowie transakcji!"
#. TRANSLATORS: This is the header to the --help menu
-#: ../client/pk-console.c:1931 ../client/pk-console-test.c:850
+#: ../client/pk-console.c:866
msgid "PackageKit Console Interface"
msgstr "Interfejs konsoli PackageKit"
#. these are commands we can use with pkcon
-#: ../client/pk-console.c:1933 ../client/pk-console-test.c:852
+#: ../client/pk-console.c:868
msgid "Subcommands:"
msgstr "Podpolecenia:"
+#. TRANSLATORS: we keep a database updated with the time that an action was last executed
+#: ../client/pk-console.c:947
+msgid "Failed to get the time since this action was last completed"
+msgstr ""
+"Uzyskanie czasu od ostatniego zakoÅczenia tego dziaÅania nie powiodÅo siÄ"
+
#. TRANSLATORS: command line argument, if we should show debugging information
#. TRANSLATORS: if we should show debugging data
-#: ../client/pk-console.c:2026 ../client/pk-console-test.c:966
-#: ../client/pk-generate-pack.c:185 ../client/pk-generate-pack-test.c:222
-#: ../client/pk-monitor.c:128 ../client/pk-monitor-test.c:282
-#: ../contrib/command-not-found/pk-command-not-found.c:616
-#: ../contrib/command-not-found/pk-command-not-found-test.c:614
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:549
+#: ../client/pk-console.c:982 ../client/pk-generate-pack.c:222
+#: ../client/pk-monitor.c:282
+#: ../contrib/command-not-found/pk-command-not-found.c:614
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:500
#: ../contrib/device-rebind/pk-device-rebind.c:293 ../src/pk-main.c:211
msgid "Show extra debugging information"
msgstr "WyÅwietla dodatkowe informacje o debugowaniu"
#. TRANSLATORS: command line argument, just show the version string
-#: ../client/pk-console.c:2029 ../client/pk-console-test.c:969
-#: ../client/pk-monitor.c:130 ../client/pk-monitor-test.c:284
+#: ../client/pk-console.c:985 ../client/pk-monitor.c:284
msgid "Show the program version and exit"
msgstr "WyÅwietla wersjÄ programu i wyÅÄ
cza"
#. TRANSLATORS: command line argument, use a filter to narrow down results
-#: ../client/pk-console.c:2032 ../client/pk-console-test.c:972
+#: ../client/pk-console.c:988
msgid "Set the filter, e.g. installed"
msgstr "Ustawia filtr, np. zainstalowane"
#. TRANSLATORS: command line argument, work asynchronously
-#: ../client/pk-console.c:2035 ../client/pk-console-test.c:975
+#: ../client/pk-console.c:991
msgid "Exit without waiting for actions to complete"
msgstr "WyÅÄ
cza bez oczekiwania na zakoÅczenie dziaÅaÅ"
-#. TRANSLATORS: This is when we could not connect to the system bus, and is fatal
-#: ../client/pk-console.c:2062
-msgid "This tool could not connect to system DBUS."
-msgstr "Te narzÄdzie nie może poÅÄ
czyÄ siÄ z systemowym D-Bus."
+#. TRANSLATORS: we failed to contact the daemon
+#: ../client/pk-console.c:1016
+msgid "Failed to contact PackageKit"
+msgstr "Skontaktowanie siÄ z PackageKit nie powiodÅo siÄ"
#. TRANSLATORS: The user specified an incorrect filter
-#: ../client/pk-console.c:2152 ../client/pk-console-test.c:1052
+#: ../client/pk-console.c:1068
msgid "The filter specified was invalid"
msgstr "Podany filtr jest nieprawidÅowy"
#. TRANSLATORS: a search type can be name, details, file, etc
-#: ../client/pk-console.c:2171 ../client/pk-console-test.c:1071
+#: ../client/pk-console.c:1087
msgid "A search type is required, e.g. name"
msgstr "Wymagany jest typ wyszukiwania, np. nazwa"
#. TRANSLATORS: the user needs to provide a search term
-#: ../client/pk-console.c:2178 ../client/pk-console.c:2187
-#: ../client/pk-console.c:2196 ../client/pk-console.c:2205
-#: ../client/pk-console-test.c:1078 ../client/pk-console-test.c:1090
-#: ../client/pk-console-test.c:1102 ../client/pk-console-test.c:1114
+#: ../client/pk-console.c:1094 ../client/pk-console.c:1106
+#: ../client/pk-console.c:1118 ../client/pk-console.c:1130
msgid "A search term is required"
msgstr "Wymagany jest wyszukiwany termin"
#. TRANSLATORS: the search type was provided, but invalid
-#: ../client/pk-console.c:2212 ../client/pk-console-test.c:1124
+#: ../client/pk-console.c:1140
msgid "Invalid search type"
msgstr "NieprawidÅowy typ wyszukiwania"
#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console.c:2218
-msgid "A package name or filename to install is required"
-msgstr "Wymagana jest nazwa pakietu lub pliku do zainstalowania"
+#: ../client/pk-console.c:1146
+msgid "A package name to install is required"
+msgstr "Wymagana jest nazwa pakietu do zainstalowania"
+
+#. TRANSLATORS: the user did not specify what they wanted to install
+#: ../client/pk-console.c:1155
+msgid "A filename to install is required"
+msgstr "Wymagana jest nazwa pliku do zainstalowania"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2227 ../client/pk-console-test.c:1151
+#: ../client/pk-console.c:1167
msgid "A type, key_id and package_id are required"
msgstr "Wymagany jest typ, key_id i package_id"
#. TRANSLATORS: the user did not specify what they wanted to remove
-#: ../client/pk-console.c:2236 ../client/pk-console-test.c:1162
+#: ../client/pk-console.c:1178
msgid "A package name to remove is required"
msgstr "Wymagana jest nazwa pakietu do usuniÄcia"
#. TRANSLATORS: the user did not specify anything about what to download or where
-#: ../client/pk-console.c:2244 ../client/pk-console-test.c:1171
+#: ../client/pk-console.c:1187
msgid "A destination directory and the package names to download are required"
msgstr "Wymagany jest katalog docelowy i nazwy pakietów do pobrania"
#. TRANSLATORS: the directory does not exist, so we can't continue
-#: ../client/pk-console.c:2251 ../client/pk-console-test.c:1178
+#: ../client/pk-console.c:1194
msgid "Directory not found"
msgstr "Nie znaleziono katalogu"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2259 ../client/pk-console-test.c:1187
+#: ../client/pk-console.c:1203
msgid "A licence identifier (eula-id) is required"
msgstr "Wymagany jest identyfikator licencji (eula-id)"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2269 ../client/pk-console-test.c:1198
+#: ../client/pk-console.c:1214
msgid "A transaction identifier (tid) is required"
msgstr "Wymagany jest identyfikator transakcji (tid)"
#. TRANSLATORS: The user did not specify a package name
-#: ../client/pk-console.c:2286 ../client/pk-console-test.c:1219
+#: ../client/pk-console.c:1235
msgid "A package name to resolve is required"
msgstr "Wymagana jest nazwa pakietu do rozwiÄ
zania"
#. TRANSLATORS: The user did not specify a repository (software source) name
-#: ../client/pk-console.c:2295 ../client/pk-console.c:2304
-#: ../client/pk-console-test.c:1230 ../client/pk-console-test.c:1241
+#: ../client/pk-console.c:1246 ../client/pk-console.c:1257
msgid "A repository name is required"
msgstr "Wymagana jest nazwa repozytorium"
#. TRANSLATORS: The user didn't provide any data
-#: ../client/pk-console.c:2313 ../client/pk-console-test.c:1252
+#: ../client/pk-console.c:1268
msgid "A repo name, parameter and value are required"
msgstr "Wymagana jest nazwa, parametr i wartoÅÄ repozytorium"
#. TRANSLATORS: The user didn't specify what action to use
-#: ../client/pk-console.c:2327 ../client/pk-console-test.c:1269
+#: ../client/pk-console.c:1285
msgid "An action, e.g. 'update-system' is required"
msgstr "Wymagane jest dziaÅanie, np. \"update-system\""
#. TRANSLATORS: The user specified an invalid action
-#: ../client/pk-console.c:2334 ../client/pk-console-test.c:1276
+#: ../client/pk-console.c:1292
msgid "A correct role is required"
msgstr "Wymagana jest bieżÄ
ca rola"
-#. TRANSLATORS: we keep a database updated with the time that an action was last executed
-#: ../client/pk-console.c:2341 ../client/pk-console-test.c:931
-msgid "Failed to get the time since this action was last completed"
-msgstr ""
-"Uzyskanie czasu od ostatniego zakoÅczenia tego dziaÅania nie powiodÅo siÄ"
-
#. TRANSLATORS: The user did not provide a package name
#. TRANSLATORS: This is when the user fails to supply the package name
-#: ../client/pk-console.c:2351 ../client/pk-console.c:2363
-#: ../client/pk-console.c:2372 ../client/pk-console.c:2390
-#: ../client/pk-console.c:2399 ../client/pk-console-test.c:1286
-#: ../client/pk-console-test.c:1301 ../client/pk-console-test.c:1310
-#: ../client/pk-console-test.c:1330 ../client/pk-console-test.c:1339
-#: ../client/pk-generate-pack.c:241 ../client/pk-generate-pack-test.c:285
+#: ../client/pk-console.c:1302 ../client/pk-console.c:1317
+#: ../client/pk-console.c:1326 ../client/pk-console.c:1346
+#: ../client/pk-console.c:1355 ../client/pk-generate-pack.c:285
msgid "A package name is required"
msgstr "Wymagana jest nazwa pakietu"
#. TRANSLATORS: each package "provides" certain things, e.g. mime(gstreamer-decoder-mp3), the user didn't specify it
-#: ../client/pk-console.c:2381 ../client/pk-console-test.c:1319
+#: ../client/pk-console.c:1335
msgid "A package provide string is required"
msgstr "Wymagany jest ÅaÅcuch dostarczania pakietu"
-#. TRANSLATORS: The user didn't specify a filename to create as a list
-#: ../client/pk-console.c:2408
-msgid "A list file name to create is required"
-msgstr "Wymagana jest lista nazw plików do utworzenia"
-
-#. TRANSLATORS: The user didn't specify a filename to open as a list
-#: ../client/pk-console.c:2418 ../client/pk-console.c:2428
-msgid "A list file to open is required"
-msgstr "Wymagana jest lista plików do otwarcia"
-
#. TRANSLATORS: The user tried to use an unsupported option on the command line
-#: ../client/pk-console.c:2482 ../client/pk-console-test.c:1399
+#: ../client/pk-console.c:1415
#, c-format
msgid "Option '%s' is not supported"
msgstr "Opcja \"%s\" nie jest obsÅugiwana"
-#. TRANSLATORS: User does not have permission to do this
-#: ../client/pk-console.c:2495
-msgid "Incorrect privileges for this operation"
-msgstr "Niepoprawne uprawnienia dla tego dziaÅania"
-
#. TRANSLATORS: Generic failure of what they asked to do
-#. /* TRANSLATORS: User does not have permission to do this */
-#. g_print ("%s\n", _("Incorrect privileges for this operation"));
-#. TRANSLATORS: Generic failure of what they asked to do
-#: ../client/pk-console.c:2498 ../client/pk-console-test.c:1411
+#: ../client/pk-console.c:1425
msgid "Command failed"
msgstr "Polecenie nie powiodÅo siÄ"
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console-test.c:568
-#, c-format
-msgid "This tool could not find the available package: %s"
-msgstr "Te narzÄdzie nie może znaleÅºÄ dostÄpnego pakietu: %s"
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console-test.c:596
-#, c-format
-msgid "This tool could not find the installed package: %s"
-msgstr "Te narzÄdzie nie może znaleÅºÄ zainstalowanego pakietu: %s"
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console-test.c:624 ../client/pk-console-test.c:652
-#, c-format
-msgid "This tool could not find the package: %s"
-msgstr "Te narzÄdzie nie może znaleÅºÄ pakietu: %s"
-
-#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#. 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-test.c:680 ../client/pk-console-test.c:708
-#: ../client/pk-console-test.c:736 ../client/pk-console-test.c:764
-#: ../client/pk-console-test.c:792
-#, c-format
-msgid "This tool could not find all the packages: %s"
-msgstr "Te narzÄdzie nie może znaleÅºÄ wszystkich pakietów: %s"
-
-#. TRANSLATORS: we failed to contact the daemon
-#: ../client/pk-console-test.c:1000
-msgid "Failed to contact PackageKit"
-msgstr "Skontaktowanie siÄ z PackageKit nie powiodÅo siÄ"
-
-#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console-test.c:1130
-msgid "A package name to install is required"
-msgstr "Wymagana jest nazwa pakietu do zainstalowania"
-
-#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console-test.c:1139
-msgid "A filename to install is required"
-msgstr "Wymagana jest nazwa pliku do zainstalowania"
-
-#. TRANSLATORS: This is the state of the transaction
-#: ../client/pk-generate-pack.c:101
-msgid "Downloading"
-msgstr "Pobieranie"
-
-#. TRANSLATORS: This is when the main packages are being downloaded
-#: ../client/pk-generate-pack.c:121
-msgid "Downloading packages"
-msgstr "Pobieranie pakietów"
-
-#. TRANSLATORS: This is when the dependency packages are being downloaded
-#: ../client/pk-generate-pack.c:126
-msgid "Downloading dependencies"
-msgstr "Pobieranie zależnoÅci"
-
#. TRANSLATORS: we can exclude certain packages (glibc) when we know they'll exist on the target
-#: ../client/pk-generate-pack.c:188 ../client/pk-generate-pack-test.c:225
+#: ../client/pk-generate-pack.c:225
msgid "Set the file name of dependencies to be excluded"
msgstr "ProszÄ ustawiÄ nazwy plików zależnoÅci do wykluczenia"
#. TRANSLATORS: the output location
-#: ../client/pk-generate-pack.c:191 ../client/pk-generate-pack-test.c:228
+#: ../client/pk-generate-pack.c:228
msgid ""
"The output file or directory (the current directory is used if ommitted)"
msgstr ""
@@ -825,41 +499,43 @@ msgstr ""
"pominiÄte)"
#. TRANSLATORS: put a list of packages in the pack
-#: ../client/pk-generate-pack.c:194 ../client/pk-generate-pack-test.c:231
+#: ../client/pk-generate-pack.c:231
msgid "The package to be put into the service pack"
msgstr "Pakiet do umieszczenia w pakiecie serwisowym"
#. TRANSLATORS: put all pending updates in the pack
-#: ../client/pk-generate-pack.c:197 ../client/pk-generate-pack-test.c:234
+#: ../client/pk-generate-pack.c:234
msgid "Put all updates available in the service pack"
msgstr "Wszystkie dostÄpne aktualizacje w pakiecie serwisowym"
#. TRANSLATORS: This is when the user fails to supply the correct arguments
-#: ../client/pk-generate-pack.c:225 ../client/pk-generate-pack-test.c:269
+#: ../client/pk-generate-pack.c:269
msgid "Neither --package or --updates option selected."
msgstr "Nie wybrano żadnej z opcji --package lub --updates."
#. TRANSLATORS: This is when the user fails to supply just one argument
-#: ../client/pk-generate-pack.c:233 ../client/pk-generate-pack-test.c:277
+#: ../client/pk-generate-pack.c:277
msgid "Both options selected."
msgstr "Wybrano obie opcje."
#. TRANSLATORS: This is when the user fails to supply the output
-#: ../client/pk-generate-pack.c:249 ../client/pk-generate-pack-test.c:293
+#: ../client/pk-generate-pack.c:293
msgid "A output directory or file name is required"
msgstr "Wymagany jest katalog lub nazwa pliku wyjÅcia"
+#. TRANSLATORS: This is when the dameon is not-installed/broken and fails to startup
+#: ../client/pk-generate-pack.c:311
+msgid "The dameon failed to startup"
+msgstr "Uruchomienie demona nie powiodÅo siÄ"
+
#. 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
-#. 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:267 ../client/pk-generate-pack.c:273
-#: ../client/pk-generate-pack-test.c:321 ../client/pk-generate-pack-test.c:327
+#: ../client/pk-generate-pack.c:322 ../client/pk-generate-pack.c:328
msgid "The package manager cannot perform this type of operation."
msgstr "Menedżer pakietów nie może wykonaÄ tego typu dziaÅania."
#. TRANSLATORS: This is when the distro didn't include libarchive support into PK
-#: ../client/pk-generate-pack.c:280 ../client/pk-generate-pack-test.c:334
+#: ../client/pk-generate-pack.c:335
msgid ""
"Service packs cannot be created as PackageKit was not built with libarchive "
"support."
@@ -868,443 +544,404 @@ msgstr ""
"obsÅugi libarchive."
#. TRANSLATORS: the user specified an absolute path, but didn't get the extension correct
-#: ../client/pk-generate-pack.c:291 ../client/pk-generate-pack-test.c:345
+#: ../client/pk-generate-pack.c:346
msgid "If specifying a file, the service pack name must end with"
msgstr "JeÅli podano plik, nazwa pakietu serwisowego musi koÅczyÄ siÄ"
#. TRANSLATORS: This is when file already exists
-#: ../client/pk-generate-pack.c:307 ../client/pk-generate-pack-test.c:361
+#: ../client/pk-generate-pack.c:362
msgid "A pack with the same name already exists, do you want to overwrite it?"
msgstr "Pakiet serwisowy o tej samej nazwie już istnieje, zastÄ
piÄ go?"
#. TRANSLATORS: This is when the pack was not overwritten
-#: ../client/pk-generate-pack.c:310 ../client/pk-generate-pack-test.c:364
+#: ../client/pk-generate-pack.c:365
msgid "The pack was not overwritten."
msgstr "Pakiet nie zostaÅ zastÄ
piony."
#. TRANSLATORS: This is when the temporary directory cannot be created, the directory name follows
-#: ../client/pk-generate-pack.c:323 ../client/pk-generate-pack-test.c:377
+#: ../client/pk-generate-pack.c:378
msgid "Failed to create directory:"
msgstr "Utworzenie katalogu nie powiodÅo siÄ:"
#. TRANSLATORS: This is when the list of packages from the remote computer cannot be opened
-#: ../client/pk-generate-pack.c:333 ../client/pk-generate-pack-test.c:389
+#: ../client/pk-generate-pack.c:390
msgid "Failed to open package list."
msgstr "Otwarcie listy pakietów nie powiodÅo siÄ."
#. TRANSLATORS: The package name is being matched up to available packages
-#: ../client/pk-generate-pack.c:344 ../client/pk-generate-pack-test.c:398
+#: ../client/pk-generate-pack.c:399
msgid "Finding package name."
msgstr "Wyszukiwanie nazwy pakietu."
#. TRANSLATORS: This is when the package cannot be found in any software source. The detailed error follows
-#: ../client/pk-generate-pack.c:348 ../client/pk-generate-pack-test.c:402
+#: ../client/pk-generate-pack.c:403
#, c-format
msgid "Failed to find package '%s': %s"
msgstr "Nie można znaleÅºÄ pakietu \"%s\": %s"
#. TRANSLATORS: This is telling the user we are in the process of making the pack
-#: ../client/pk-generate-pack.c:365 ../client/pk-generate-pack-test.c:410
+#: ../client/pk-generate-pack.c:411
msgid "Creating service pack..."
msgstr "Tworzenie pakietu serwisowego..."
#. TRANSLATORS: we succeeded in making the file
-#: ../client/pk-generate-pack.c:372 ../client/pk-generate-pack-test.c:425
+#: ../client/pk-generate-pack.c:426
#, c-format
msgid "Service pack created '%s'"
msgstr "Utworzono pakiet serwisowy \"%s\""
#. TRANSLATORS: we failed to make te file
-#: ../client/pk-generate-pack.c:377 ../client/pk-generate-pack-test.c:430
+#: ../client/pk-generate-pack.c:431
#, c-format
msgid "Failed to create '%s': %s"
msgstr "Utworzenie \"%s\" nie powiodÅo siÄ: %s"
-#. TRANSLATORS: this is a program that monitors PackageKit
-#: ../client/pk-monitor.c:146 ../client/pk-monitor-test.c:299
-msgid "PackageKit Monitor"
-msgstr "Monitor PackageKit"
-
-#: ../client/pk-monitor.c:183
-msgid "Cannot show the list of transactions"
-msgstr "Nie można wyÅwietliÄ listy transakcji"
-
-#: ../client/pk-monitor-test.c:204
+#: ../client/pk-monitor.c:204
msgid "Failed to get transaction list"
msgstr "Uzyskanie listy transakcji nie powiodÅo siÄ"
-#: ../client/pk-monitor-test.c:235
+#: ../client/pk-monitor.c:235
msgid "Failed to get daemon state"
msgstr "Uzyskanie stanu demona nie powiodÅo siÄ"
-#: ../client/pk-tools-common.c:51
-#: ../lib/packagekit-glib2/pk-console-shared.c:53
-#, c-format
-msgid "Please enter a number from 1 to %i: "
-msgstr "ProszÄ podaÄ numer od 1 do %i: "
-
-#. TRANSLATORS: The package was not found in any software sources
-#: ../client/pk-tools-common.c:188
-#, c-format
-msgid "The package could not be found"
-msgstr "Nie można znaleÅºÄ pakietu"
-
-#. TRANSLATORS: more than one package could be found that matched, to follow is a list of possible packages
-#: ../client/pk-tools-common.c:200
-#: ../lib/packagekit-glib2/pk-console-shared.c:153
-msgid "More than one package matches:"
-msgstr "Pasuje wiÄcej niż jeden pakiet:"
-
-#. TRANSLATORS: This finds out which package in the list to use
-#: ../client/pk-tools-common.c:207
-#: ../lib/packagekit-glib2/pk-console-shared.c:162
-msgid "Please choose the correct package: "
-msgstr "ProszÄ wybraÄ poprawny pakiet: "
+#. TRANSLATORS: this is a program that monitors PackageKit
+#: ../client/pk-monitor.c:299
+msgid "PackageKit Monitor"
+msgstr "Monitor PackageKit"
#. TRANSLATORS: when we are getting data from the daemon
-#: ../contrib/browser-plugin/pk-plugin-install.c:466
+#: ../contrib/browser-plugin/pk-plugin-install.c:495
msgid "Getting package information..."
msgstr "Pobieranie informacji o pakiecie..."
#. TRANSLATORS: run an applicaiton
-#: ../contrib/browser-plugin/pk-plugin-install.c:472
+#: ../contrib/browser-plugin/pk-plugin-install.c:501
#, c-format
msgid "Run %s"
msgstr "Uruchom %s"
#. TRANSLATORS: show the installed version of a package
-#: ../contrib/browser-plugin/pk-plugin-install.c:478
+#: ../contrib/browser-plugin/pk-plugin-install.c:507
msgid "Installed version"
msgstr "Zainstalowana wersja"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/pk-plugin-install.c:486
+#: ../contrib/browser-plugin/pk-plugin-install.c:515
#, c-format
msgid "Run version %s now"
msgstr "Uruchom wersjÄ %s"
#. TRANSLATORS: run the application now
-#: ../contrib/browser-plugin/pk-plugin-install.c:492
+#: ../contrib/browser-plugin/pk-plugin-install.c:521
msgid "Run now"
msgstr "Uruchom teraz"
#. TRANSLATORS: update to a new version of the package
-#: ../contrib/browser-plugin/pk-plugin-install.c:498
+#: ../contrib/browser-plugin/pk-plugin-install.c:527
#, c-format
msgid "Update to version %s"
msgstr "Zaktualizuj do wersji %s"
#. TRANSLATORS: To install a package
-#: ../contrib/browser-plugin/pk-plugin-install.c:504
+#: ../contrib/browser-plugin/pk-plugin-install.c:533
#, c-format
msgid "Install %s now"
msgstr "Zainstaluj %s"
#. TRANSLATORS: the version of the package
-#: ../contrib/browser-plugin/pk-plugin-install.c:507
+#: ../contrib/browser-plugin/pk-plugin-install.c:536
msgid "Version"
msgstr "Wersja"
#. TRANSLATORS: noting found, so can't install
-#: ../contrib/browser-plugin/pk-plugin-install.c:512
+#: ../contrib/browser-plugin/pk-plugin-install.c:541
msgid "No packages found for your system"
msgstr "Nie znaleziono pakietów dla systemu"
#. TRANSLATORS: package is being installed
-#: ../contrib/browser-plugin/pk-plugin-install.c:517
+#: ../contrib/browser-plugin/pk-plugin-install.c:546
msgid "Installing..."
msgstr "Instalowanie..."
#. TRANSLATORS: downloading repo data so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:349
-#: ../contrib/command-not-found/pk-command-not-found-test.c:358
+#: ../contrib/command-not-found/pk-command-not-found.c:358
msgid "Downloading details about the software sources."
msgstr "Pobieranie szczegóÅów o źródÅach oprogramowania."
#. TRANSLATORS: downloading file lists so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:353
-#: ../contrib/command-not-found/pk-command-not-found-test.c:362
+#: ../contrib/command-not-found/pk-command-not-found.c:362
msgid "Downloading filelists (this may take some time to complete)."
msgstr "Pobieranie list plików (może to zajÄ
Ä trochÄ czasu)."
#. TRANSLATORS: waiting for native lock
-#: ../contrib/command-not-found/pk-command-not-found.c:357
-#: ../contrib/command-not-found/pk-command-not-found-test.c:366
+#: ../contrib/command-not-found/pk-command-not-found.c:366
msgid "Waiting for package manager lock."
msgstr "Oczekiwanie na blokadÄ menedżera pakietów."
#. TRANSLATORS: loading package cache so we can search
-#: ../contrib/command-not-found/pk-command-not-found.c:361
-#: ../contrib/command-not-found/pk-command-not-found-test.c:370
+#: ../contrib/command-not-found/pk-command-not-found.c:370
msgid "Loading list of packages."
msgstr "Wczytywanie listy pakietów."
#. TRANSLATORS: we failed to find the package, this shouldn't happen
-#: ../contrib/command-not-found/pk-command-not-found.c:420
-#: ../contrib/command-not-found/pk-command-not-found-test.c:444
+#: ../contrib/command-not-found/pk-command-not-found.c:444
msgid "Failed to search for file"
msgstr "Znalezienie pliku nie powiodÅo siÄ"
#. TRANSLATORS: we failed to launch the executable, the error follows
-#: ../contrib/command-not-found/pk-command-not-found.c:557
-#: ../contrib/command-not-found/pk-command-not-found-test.c:570
+#: ../contrib/command-not-found/pk-command-not-found.c:570
msgid "Failed to launch:"
msgstr "Uruchomienie nie powiodÅo siÄ:"
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/command-not-found/pk-command-not-found.c:632
-#: ../contrib/command-not-found/pk-command-not-found-test.c:630
+#: ../contrib/command-not-found/pk-command-not-found.c:630
msgid "PackageKit Command Not Found"
msgstr "Nie znaleziono polecenia PackageKit"
#. TRANSLATORS: the prefix of all the output telling the user why it's not executing
#: ../contrib/command-not-found/pk-command-not-found.c:658
-#: ../contrib/command-not-found/pk-command-not-found-test.c:658
msgid "Command not found."
msgstr "Nie znaleziono polecenia."
#. TRANSLATORS: tell the user what we think the command is
#: ../contrib/command-not-found/pk-command-not-found.c:665
-#: ../contrib/command-not-found/pk-command-not-found-test.c:665
msgid "Similar command is:"
msgstr "Podobne polecenie:"
#. TRANSLATORS: Ask the user if we should run the similar command
#: ../contrib/command-not-found/pk-command-not-found.c:674
-#: ../contrib/command-not-found/pk-command-not-found-test.c:674
msgid "Run similar command:"
msgstr "Wykonaj podobne polecenie:"
#. TRANSLATORS: show the user a list of commands that they could have meant
#. TRANSLATORS: show the user a list of commands we could run
-#. 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-test.c:686
-#: ../contrib/command-not-found/pk-command-not-found-test.c:695
msgid "Similar commands are:"
msgstr "Podobne polecenia:"
#. TRANSLATORS: ask the user to choose a file to run
#: ../contrib/command-not-found/pk-command-not-found.c:702
-#: ../contrib/command-not-found/pk-command-not-found-test.c:702
msgid "Please choose a command to run"
msgstr "ProszÄ wybraÄ polecenie do wykonania"
#. TRANSLATORS: tell the user what package provides the command
#: ../contrib/command-not-found/pk-command-not-found.c:721
-#: ../contrib/command-not-found/pk-command-not-found-test.c:721
msgid "The package providing this file is:"
msgstr "Pakiet dostarczajÄ
cy ten plik:"
#. TRANSLATORS: as the user if we want to install a package to provide the command
#: ../contrib/command-not-found/pk-command-not-found.c:726
-#: ../contrib/command-not-found/pk-command-not-found-test.c:726
#, c-format
msgid "Install package '%s' to provide command '%s'?"
msgstr "ZainstalowaÄ pakiet \"%s\", aby dostarczyÄ polecenie \"%s\"?"
#. TRANSLATORS: Show the user a list of packages that provide this command
#: ../contrib/command-not-found/pk-command-not-found.c:747
-#: ../contrib/command-not-found/pk-command-not-found-test.c:747
msgid "Packages providing this file are:"
msgstr "Pakiety dostarczajÄ
ce ten plik:"
#. TRANSLATORS: Show the user a list of packages that they can install to provide this command
#: ../contrib/command-not-found/pk-command-not-found.c:756
-#: ../contrib/command-not-found/pk-command-not-found-test.c:756
msgid "Suitable packages are:"
msgstr "Odpowiednie pakiety:"
#. get selection
#. TRANSLATORS: ask the user to choose a file to install
#: ../contrib/command-not-found/pk-command-not-found.c:764
-#: ../contrib/command-not-found/pk-command-not-found-test.c:764
msgid "Please choose a package to install"
msgstr "ProszÄ wybraÄ pakiet do zainstalowania"
#. TRANSLATORS: we are starting to install the packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:187
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:195
msgid "Starting install"
msgstr "Rozpoczynanie instalacji"
#. TRANSLATORS: we couldn't find the package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:397
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:402
#, c-format
msgid "Failed to find the package %s, or already installed: %s"
msgstr "Znalezienie pakietu %s nie powiodÅo siÄ lub jest już zainstalowany: %s"
#. command line argument, simulate what would be done, but don't actually do it
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:552
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:503
msgid ""
"Don't actually install any packages, only simulate what would be installed"
msgstr "Nie instaluje żadnych pakietów, tylko symuluje instalacjÄ"
#. command line argument, do we skip packages that depend on the ones specified
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:555
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:506
msgid "Do not install dependencies of the core packages"
msgstr "Nie instaluje zależnoÅci podstawowych pakietów"
#. command line argument, do we operate quietly
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:558
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:509
msgid "Do not display information or progress"
msgstr "Nie wyÅwietla informacji lub postÄpu"
#. TRANSLATORS: tool that gets called when the command is not found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:576
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:524
msgid "PackageKit Debuginfo Installer"
msgstr "Instalator pakietów debugowania PackageKit"
#. TRANSLATORS: the use needs to specify a list of package names on the command line
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:588
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:536
#, c-format
msgid "ERROR: Specify package names to install."
msgstr "BÅÄD: proszÄ podaÄ nazwy pakietów do zainstalowania."
#. TRANSLATORS: we are getting the list of repositories
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:622
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:568
#, c-format
msgid "Getting sources list"
msgstr "Pobieranie listy źródeÅ"
+#. TRANSLATORS: operation was not successful
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:578
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:653
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:737
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:781
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:848
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:892
+msgid "FAILED."
+msgstr "NIEUDANE."
+
#. TRANSLATORS: all completed 100%
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:640
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:680
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:715
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:799
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:843
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:910
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:954
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:593
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:633
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:668
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:752
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:796
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:863
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:907
#, c-format
msgid "OK."
msgstr "OK."
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:643
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:596
#, c-format
msgid "Found %i enabled and %i disabled sources."
msgstr "Znaleziono %i wÅÄ
czone i %i wyÅÄ
czone źródÅa."
#. TRANSLATORS: we're finding repositories that match out pattern
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:650
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:603
#, c-format
msgid "Finding debugging sources"
msgstr "Wyszukiwanie źródeŠpakietów debugowania"
#. TRANSLATORS: tell the user what we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:683
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:636
#, c-format
msgid "Found %i disabled debuginfo repos."
msgstr "Znaleziono %i wyÅÄ
czone repozytoria pakietów debugowania."
#. TRANSLATORS: we're now enabling all the debug sources we found
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:690
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:643
#, c-format
msgid "Enabling debugging sources"
msgstr "WÅÄ
czanie źródeŠpakietów debugowania"
-#. TRANSLATORS: operation was not successful
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:700
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:784
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:828
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:895
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:939
-msgid "FAILED."
-msgstr "NIEUDANE."
-
#. TRANSLATORS: tell the user how many we enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:718
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:671
#, c-format
msgid "Enabled %i debugging sources."
msgstr "WÅÄ
czono %i źródÅa pakietów debugowania."
#. TRANSLATORS: we're now finding packages that match in all the repos
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:725
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:678
#, c-format
msgid "Finding debugging packages"
msgstr "Wyszukiwanie źródeŠpakietów debugowania"
#. TRANSLATORS: we couldn't find the package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:737
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:690
#, c-format
msgid "Failed to find the package %s: %s"
msgstr "Znalezienie pakietu %s nie powiodÅo siÄ: %s"
#. TRANSLATORS: we couldn't find the debuginfo package name, non-fatal
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:760
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:713
#, c-format
msgid "Failed to find the debuginfo package %s: %s"
msgstr "Znalezienie pakietu debugowania %s nie powiodÅo siÄ: %s"
#. TRANSLATORS: no debuginfo packages could be found to be installed
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:788
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:741
#, c-format
msgid "Found no packages to install."
msgstr "Nie znaleziono pakietów do zainstalowania."
#. TRANSLATORS: tell the user we found some packages, and then list them
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:802
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:755
#, c-format
msgid "Found %i packages:"
msgstr "Znaleziono %i pakiety:"
#. TRANSLATORS: tell the user we are searching for deps
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:818
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:771
#, c-format
msgid "Finding packages that depend on these packages"
msgstr "Wyszukiwanie pakietów zależnych od tych pakietów"
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:831
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:784
#, c-format
msgid "Could not find dependant packages: %s"
msgstr "Nie można znaleÅºÄ zależnych pakietów: %s"
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:847
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:800
#, c-format
msgid "Found %i extra packages."
msgstr "Znaleziono %i dodatkowe pakiety."
#. TRANSLATORS: tell the user we found some more packages
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:851
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:804
#, c-format
msgid "No extra packages required."
msgstr "Dodatkowe pakiety nie sÄ
wymagane."
#. TRANSLATORS: tell the user we found some packages (and deps), and then list them
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:860
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:813
#, c-format
msgid "Found %i packages to install:"
msgstr "Znaleziono %i pakiety do zainstalowania:"
#. TRANSLATORS: simulate mode is a testing mode where we quit before the action
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:873
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:826
#, c-format
msgid "Not installing packages in simulate mode"
msgstr "Pakiety nie zostanÄ
zainstalowane w trybie symulacji"
+#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
+#. TRANSLATORS: transaction state, installing packages
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:838
+#: ../lib/packagekit-glib2/pk-console-shared.c:246
+#, c-format
+msgid "Installing packages"
+msgstr "Instalowanie pakietów"
+
#. TRANSLATORS: could not install, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:898
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:851
#, c-format
msgid "Could not install packages: %s"
msgstr "Nie można zainstalowaÄ pakietów: %s"
#. TRANSLATORS: we are now disabling all debuginfo repos we previously enabled
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:930
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:883
#, c-format
msgid "Disabling sources previously enabled"
msgstr "WyÅÄ
czanie źródeÅ poprzednio wÅÄ
czonych"
#. TRANSLATORS: no debuginfo packages could be found to be installed, detailed error follows
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:942
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:895
#, c-format
msgid "Could not disable the debugging sources: %s"
msgstr "Nie można wyÅÄ
czyÄ ÅºródeÅ pakietów debugowania: %s"
#. TRANSLATORS: we disabled all the debugging repos that we enabled before
-#: ../contrib/debuginfo-install/pk-debuginfo-install.c:957
+#: ../contrib/debuginfo-install/pk-debuginfo-install.c:910
#, c-format
msgid "Disabled %i debugging sources."
msgstr "WyÅÄ
czono %i źródÅa pakietów debugowania."
@@ -1407,90 +1044,333 @@ msgstr "Lista pakietów PackageKit"
msgid "PackageKit Service Pack"
msgstr "Pakiet serwisowy PackageKit"
-#. ask the user
+#: ../lib/packagekit-glib2/pk-console-shared.c:53
+#, c-format
+msgid "Please enter a number from 1 to %i: "
+msgstr "ProszÄ podaÄ numer od 1 do %i: "
+
+#. 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:153
+msgid "More than one package matches:"
+msgstr "Pasuje wiÄcej niż jeden pakiet:"
+
+#. TRANSLATORS: This finds out which package in the list to use
+#: ../lib/packagekit-glib2/pk-console-shared.c:162
+msgid "Please choose the correct package: "
+msgstr "ProszÄ wybraÄ poprawny pakiet: "
+
+#. TRANSLATORS: This is when the transaction status is not known
+#: ../lib/packagekit-glib2/pk-console-shared.c:214
+msgid "Unknown state"
+msgstr "Nieznany stan"
+
+#. TRANSLATORS: transaction state, the daemon is in the process of starting
+#: ../lib/packagekit-glib2/pk-console-shared.c:218
+msgid "Starting"
+msgstr "Rozpoczynanie"
+
+#. TRANSLATORS: transaction state, the transaction is waiting for another to complete
+#: ../lib/packagekit-glib2/pk-console-shared.c:222
+msgid "Waiting in queue"
+msgstr "Oczekiwanie w kolejce"
+
+#. TRANSLATORS: transaction state, just started
+#: ../lib/packagekit-glib2/pk-console-shared.c:226
+msgid "Running"
+msgstr "Wykonywanie"
+
+#. TRANSLATORS: transaction state, is querying data
+#: ../lib/packagekit-glib2/pk-console-shared.c:230
+msgid "Querying"
+msgstr "Odpytywanie"
+
+#. TRANSLATORS: transaction state, getting data from a server
+#: ../lib/packagekit-glib2/pk-console-shared.c:234
+msgid "Getting information"
+msgstr "Uzyskiwanie informacji"
+
+#. TRANSLATORS: transaction state, removing packages
+#: ../lib/packagekit-glib2/pk-console-shared.c:238
+msgid "Removing packages"
+msgstr "Usuwanie pakietu"
+
+#. TRANSLATORS: transaction state, downloading package files
+#: ../lib/packagekit-glib2/pk-console-shared.c:242
+msgid "Downloading packages"
+msgstr "Pobieranie pakietów"
+
+#. TRANSLATORS: transaction state, refreshing internal lists
+#: ../lib/packagekit-glib2/pk-console-shared.c:250
+msgid "Refreshing software list"
+msgstr "OdÅwieżanie listy oprogramowania"
+
+#. TRANSLATORS: transaction state, installing updates
+#: ../lib/packagekit-glib2/pk-console-shared.c:254
+msgid "Installing updates"
+msgstr "Instalowanie aktualizacji"
+
+#. TRANSLATORS: transaction state, removing old packages, and cleaning config files
+#: ../lib/packagekit-glib2/pk-console-shared.c:258
+msgid "Cleaning up packages"
+msgstr "Czyszczenie pakietów"
+
+#. TRANSLATORS: transaction state, obsoleting old packages
+#: ../lib/packagekit-glib2/pk-console-shared.c:262
+msgid "Obsoleting packages"
+msgstr "ZastÄpowanie pakietów"
+
+#. TRANSLATORS: transaction state, checking the transaction before we do it
+#: ../lib/packagekit-glib2/pk-console-shared.c:266
+msgid "Resolving dependencies"
+msgstr "RozwiÄ
zywanie zależnoÅci"
+
+#. TRANSLATORS: transaction state, checking if we have all the security keys for the operation
+#: ../lib/packagekit-glib2/pk-console-shared.c:270
+msgid "Checking signatures"
+msgstr "Sprawdzanie podpisów"
+
+#. TRANSLATORS: transaction state, when we return to a previous system state
+#: ../lib/packagekit-glib2/pk-console-shared.c:274
+msgid "Rolling back"
+msgstr "Przywracanie"
+
+#. TRANSLATORS: transaction state, when we're doing a test transaction
+#: ../lib/packagekit-glib2/pk-console-shared.c:278
+msgid "Testing changes"
+msgstr "Testowanie zmian"
+
+#. TRANSLATORS: transaction state, when we're writing to the system package database
+#: ../lib/packagekit-glib2/pk-console-shared.c:282
+msgid "Committing changes"
+msgstr "Wprowadzanie zmian"
+
+#. TRANSLATORS: transaction state, requesting data from a server
+#: ../lib/packagekit-glib2/pk-console-shared.c:286
+msgid "Requesting data"
+msgstr "Å»Ä
danie danych"
+
+#. TRANSLATORS: transaction state, all done!
+#: ../lib/packagekit-glib2/pk-console-shared.c:290
+msgid "Finished"
+msgstr "UkoÅczono"
+
+#. TRANSLATORS: transaction state, in the process of cancelling
+#: ../lib/packagekit-glib2/pk-console-shared.c:294
+msgid "Cancelling"
+msgstr "Anulowanie"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:298
+msgid "Downloading repository information"
+msgstr "Pobieranie informacji o repozytorium"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:302
+msgid "Downloading list of packages"
+msgstr "Pobieranie listy pakietów"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:306
+msgid "Downloading file lists"
+msgstr "Pobieranie list plików"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:310
+msgid "Downloading lists of changes"
+msgstr "Pobieranie listy zmian"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:314
+msgid "Downloading groups"
+msgstr "Pobieranie grup"
+
+#. TRANSLATORS: transaction state, downloading metadata
+#: ../lib/packagekit-glib2/pk-console-shared.c:318
+msgid "Downloading update information"
+msgstr "Pobieranie informacji o aktualizacji"
+
+#. TRANSLATORS: transaction state, repackaging delta files
+#: ../lib/packagekit-glib2/pk-console-shared.c:322
+msgid "Repackaging files"
+msgstr "Ponowne umieszczanie plików w pakietach"
+
+#. TRANSLATORS: transaction state, loading databases
+#: ../lib/packagekit-glib2/pk-console-shared.c:326
+msgid "Loading cache"
+msgstr "Wczytywanie pamiÄci podrÄcznej"
+
+#. TRANSLATORS: transaction state, scanning for running processes
+#: ../lib/packagekit-glib2/pk-console-shared.c:330
+msgid "Scanning applications"
+msgstr "Skanowanie programów"
+
+#. TRANSLATORS: transaction state, generating a list of packages installed on the system
+#: ../lib/packagekit-glib2/pk-console-shared.c:334
+msgid "Generating package lists"
+msgstr "Tworzenie list pakietów"
+
+#. TRANSLATORS: transaction state, when we're waiting for the native tools to exit
+#: ../lib/packagekit-glib2/pk-console-shared.c:338
+msgid "Waiting for package manager lock"
+msgstr "Oczekiwanie na blokadÄ menedżera pakietów"
+
+#. TRANSLATORS: waiting for user to type in a password
+#: ../lib/packagekit-glib2/pk-console-shared.c:342
+msgid "Waiting for authentication"
+msgstr "Oczekiwanie na uwierzytelnienie"
+
+#. TRANSLATORS: we are updating the list of processes
+#: ../lib/packagekit-glib2/pk-console-shared.c:346
+msgid "Updating running applications"
+msgstr "Aktualizowanie uruchomionych programów"
+
+#. TRANSLATORS: we are checking executable files currently in use
+#: ../lib/packagekit-glib2/pk-console-shared.c:350
+msgid "Checking applications in use"
+msgstr "Sprawdzanie używanych programów"
+
+#. TRANSLATORS: we are checking for libraries currently in use
+#: ../lib/packagekit-glib2/pk-console-shared.c:354
+msgid "Checking libraries in use"
+msgstr "Sprawdzanie używanych bibliotek"
+
+#. TRANSLATORS: ask the user if they are comfortable installing insecure packages
#: ../lib/packagekit-glib2/pk-task-text.c:64
msgid "Do you want to allow installing of unsigned software?"
msgstr "PozwoliÄ na instalowanie niepodpisanego oprogramowania?"
-#: ../lib/packagekit-glib2/pk-task-text.c:68
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:69
msgid "The unsigned software will not be installed."
msgstr "Niepodpisane oprogramowanie nie zostanie zainstalowane."
-#: ../lib/packagekit-glib2/pk-task-text.c:100
+#. TRANSLATORS: the package repository is signed by a key that is not recognised
+#: ../lib/packagekit-glib2/pk-task-text.c:102
msgid "Software source signature required"
msgstr "Wymagany jest podpis źródÅa oprogramowania"
-#: ../lib/packagekit-glib2/pk-task-text.c:102
+#. TRANSLATORS: the package repository name
+#: ../lib/packagekit-glib2/pk-task-text.c:108
msgid "Software source name"
msgstr "Nazwa źródÅa oprogramowania"
-#: ../lib/packagekit-glib2/pk-task-text.c:103
+#. TRANSLATORS: the key URL
+#: ../lib/packagekit-glib2/pk-task-text.c:111
msgid "Key URL"
msgstr "Adres URL klucza"
-#: ../lib/packagekit-glib2/pk-task-text.c:104
+#. TRANSLATORS: the username of the key
+#: ../lib/packagekit-glib2/pk-task-text.c:114
msgid "Key user"
msgstr "Użytkownika klucza"
-#: ../lib/packagekit-glib2/pk-task-text.c:105
+#. TRANSLATORS: the key ID, usually a few hex digits
+#: ../lib/packagekit-glib2/pk-task-text.c:117
msgid "Key ID"
msgstr "Identyfikator klucza"
-#: ../lib/packagekit-glib2/pk-task-text.c:106
+#. TRANSLATORS: the key fingerprint, again, yet more hex
+#: ../lib/packagekit-glib2/pk-task-text.c:120
msgid "Key fingerprint"
msgstr "Odcisk klucza"
-#: ../lib/packagekit-glib2/pk-task-text.c:107
+#. TRANSLATORS: the timestamp (a bit like a machine readable time)
+#: ../lib/packagekit-glib2/pk-task-text.c:123
msgid "Key Timestamp"
msgstr "Czas klucza"
-#: ../lib/packagekit-glib2/pk-task-text.c:151
+#. TRANSLATORS: ask the user if they want to import
+#: ../lib/packagekit-glib2/pk-task-text.c:129
+msgid "Do you accept this signature?"
+msgstr "ZaakceptowaÄ ten podpis?"
+
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:134
+msgid "The signature was not accepted."
+msgstr "Podpis nie zostaÅ zaakceptowany."
+
+#. TRANSLATORS: this is another name for a software licence that has to be read before installing
+#: ../lib/packagekit-glib2/pk-task-text.c:169
msgid "End user licence agreement required"
msgstr "Wymagana jest umowa licencyjna użytkownika koÅcowego"
-#: ../lib/packagekit-glib2/pk-task-text.c:152
-msgid "EULA ID"
-msgstr "Identyfikator licencji"
-
-#: ../lib/packagekit-glib2/pk-task-text.c:155
+#. TRANSLATORS: the EULA text itself (long and boring)
+#: ../lib/packagekit-glib2/pk-task-text.c:178
msgid "Agreement"
msgstr "Umowa"
-#. ask the user
-#: ../lib/packagekit-glib2/pk-task-text.c:161
+#. TRANSLATORS: ask the user if they've read and accepted the EULA
+#: ../lib/packagekit-glib2/pk-task-text.c:184
msgid "Do you accept this agreement?"
msgstr "ZaakceptowaÄ tÄ umowÄ?"
-#: ../lib/packagekit-glib2/pk-task-text.c:165
+#. TRANSLATORS: tell the user we've not done anything
+#: ../lib/packagekit-glib2/pk-task-text.c:189
msgid "The agreement was not accepted."
msgstr "Umowa nie zostaÅa zaakceptowana."
-#: ../lib/packagekit-glib2/pk-task-text.c:194
+#. TRANSLATORS: the user needs to change media inserted into the computer
+#: ../lib/packagekit-glib2/pk-task-text.c:219
msgid "Media change required"
msgstr "Wymagana jest zmiana noÅnika"
-#: ../lib/packagekit-glib2/pk-task-text.c:195
+#. TRANSLATORS: the type, e.g. DVD, CD, etc
+#: ../lib/packagekit-glib2/pk-task-text.c:222
msgid "Media type"
msgstr "Typ noÅnika"
-#: ../lib/packagekit-glib2/pk-task-text.c:196
-msgid "Media ID"
-msgstr "Identyfikator noÅnika"
+#. TRANSLATORS: the media label, usually like 'disk-1of3'
+#: ../lib/packagekit-glib2/pk-task-text.c:225
+msgid "Media label"
+msgstr "Etykieta noÅnika"
-#: ../lib/packagekit-glib2/pk-task-text.c:197
+#. TRANSLATORS: the media description, usually like 'Fedora 12 disk 5'
+#: ../lib/packagekit-glib2/pk-task-text.c:228
msgid "Text"
msgstr "Tekst"
-#. ask the user
-#: ../lib/packagekit-glib2/pk-task-text.c:201
+#. TRANSLATORS: ask the user to insert the media
+#: ../lib/packagekit-glib2/pk-task-text.c:232
msgid "Please insert the correct media"
msgstr "ProszÄ wÅożyÄ poprawny noÅnik"
-#: ../lib/packagekit-glib2/pk-task-text.c:205
+#. TRANSLATORS: tell the user we've not done anything as they are lazy
+#: ../lib/packagekit-glib2/pk-task-text.c:237
msgid "The correct media was not inserted."
msgstr "Nie wÅożono poprawnego noÅnika."
-#: ../lib/packagekit-glib2/pk-task-text.c:303
+#. TRANSLATORS: When processing, we might have to remove other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:252
+msgid "The following packages have to be removed:"
+msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ usuniÄte:"
+
+#. TRANSLATORS: When processing, we might have to install other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:257
+msgid "The following packages have to be installed:"
+msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ zainstalowane:"
+
+#. TRANSLATORS: When processing, we might have to update other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:262
+msgid "The following packages have to be updated:"
+msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ zaktualizowane:"
+
+#. TRANSLATORS: When processing, we might have to reinstall other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:267
+msgid "The following packages have to be reinstalled:"
+msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ ponownie zainstalowane:"
+
+#. TRANSLATORS: When processing, we might have to downgrade other dependencies
+#: ../lib/packagekit-glib2/pk-task-text.c:272
+msgid "The following packages have to be downgraded:"
+msgstr "NastÄpujÄ
ce pakiety muszÄ
zostaÄ zainstalowane w starszych wersjach:"
+
+#. TRANSLATORS: ask the user if the proposed changes are okay
+#: ../lib/packagekit-glib2/pk-task-text.c:331
+msgid "Proceed with changes?"
+msgstr "KontynuowaÄ wprowadzanie zmian?"
+
+#. TRANSLATORS: tell the user we didn't do anything
+#: ../lib/packagekit-glib2/pk-task-text.c:336
msgid "The transaction did not proceed."
msgstr "Transakcja nie bÄdzie kontynuowana."
commit 31f880c91cf1804c0ac9ad6cd20ad29893b63fd4
Merge: 294cbb9... 4de3349...
Author: Richard Hughes <richard at hughsie.com>
Date: Wed Sep 9 17:13:11 2009 +0100
Merge branch 'master' of git+ssh://git.packagekit.org/srv/git/PackageKit
commit 4de33493aa4f920b5d6062bdd4fe33aafe067dc3
Author: mgiri <mgiri at fedoraproject.org>
Date: Wed Sep 9 15:40:18 2009 +0000
Sending translation for Oriya
diff --git a/po/or.po b/po/or.po
index bff4e28..e769538 100644
--- a/po/or.po
+++ b/po/or.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: packagekit.master.or\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-07 08:27+0000\n"
-"PO-Revision-Date: 2009-09-07 14:53+0530\n"
+"POT-Creation-Date: 2009-09-09 02:41+0000\n"
+"PO-Revision-Date: 2009-09-09 12:00+0530\n"
"Last-Translator: Manoj Kumar Giri <mgiri at redhat.com>\n"
"Language-Team: Oriya <oriya-it at googlegroups.com>\n"
"MIME-Version: 1.0\n"
@@ -24,108 +24,110 @@ msgstr ""
"\n"
"\n"
"\n"
+"\n"
+"\n"
#. TRANSLATORS: this is an atomic transaction
-#: ../client/pk-console.c:238 ../client/pk-console-test.c:147
+#: ../client/pk-console.c:237 ../client/pk-console-test.c:143
msgid "Transaction"
msgstr "à¬à¬¾à¬°à¬¬à¬¾à¬°"
#. TRANSLATORS: this is the time the transaction was started in system timezone
-#: ../client/pk-console.c:240 ../client/pk-console-test.c:149
+#: ../client/pk-console.c:239 ../client/pk-console-test.c:145
msgid "System time"
msgstr "ତନàତàର ସମà"
#. TRANSLATORS: this is if the transaction succeeded or not
-#: ../client/pk-console.c:242 ../client/pk-console-test.c:151
+#: ../client/pk-console.c:241 ../client/pk-console-test.c:147
msgid "Succeeded"
msgstr "ସଫଳ ହàà¬à¬à¬¿"
-#: ../client/pk-console.c:242 ../client/pk-console-test.c:151
+#: ../client/pk-console.c:241 ../client/pk-console-test.c:147
msgid "True"
msgstr "True (ସତàà)"
-#: ../client/pk-console.c:242 ../client/pk-console-test.c:151
+#: ../client/pk-console.c:241 ../client/pk-console-test.c:147
msgid "False"
msgstr "False (ମିଥààା)"
#. TRANSLATORS: this is the transactions role, e.g. "update-system"
#. TRANSLATORS: the trasaction role, e.g. update-system
-#: ../client/pk-console.c:244 ../client/pk-console-test.c:153
+#: ../client/pk-console.c:243 ../client/pk-console-test.c:149
#: ../src/pk-polkit-action-lookup.c:327
msgid "Role"
msgstr "à¬àମିà¬à¬¾"
#. TRANSLATORS: this is The duration of the transaction
-#: ../client/pk-console.c:249 ../client/pk-console-test.c:158
+#: ../client/pk-console.c:248 ../client/pk-console-test.c:154
msgid "Duration"
msgstr "à¬
ବଧି"
-#: ../client/pk-console.c:249 ../client/pk-console-test.c:158
+#: ../client/pk-console.c:248 ../client/pk-console-test.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:253 ../client/pk-console-test.c:162
+#: ../client/pk-console.c:252 ../client/pk-console-test.c:158
#: ../src/pk-polkit-action-lookup.c:341
msgid "Command line"
msgstr "ପାଠàà ନିରàଦàଦàଶ"
#. TRANSLATORS: this is the user ID of the user that started the action
-#: ../client/pk-console.c:255 ../client/pk-console-test.c:164
+#: ../client/pk-console.c:254 ../client/pk-console-test.c:160
msgid "User ID"
msgstr "à¬à¬¾à¬³à¬ ID"
#. TRANSLATORS: this is the username, e.g. hughsie
-#: ../client/pk-console.c:262 ../client/pk-console-test.c:171
+#: ../client/pk-console.c:261 ../client/pk-console-test.c:167
msgid "Username"
msgstr "à¬à¬¾à¬³à¬ ନାମ"
#. TRANSLATORS: this is the users real name, e.g. "Richard Hughes"
-#: ../client/pk-console.c:266 ../client/pk-console-test.c:175
+#: ../client/pk-console.c:265 ../client/pk-console-test.c:171
msgid "Real name"
msgstr "ପàରà¬àତ ନାମ"
-#: ../client/pk-console.c:274 ../client/pk-console-test.c:183
+#: ../client/pk-console.c:273 ../client/pk-console-test.c:179
msgid "Affected packages:"
msgstr "ପàରà¬à¬¾à¬¬à¬¿à¬¤ ପààାà¬àà¬à¬àଡ଼ିà¬:"
-#: ../client/pk-console.c:276 ../client/pk-console-test.c:185
+#: ../client/pk-console.c:275 ../client/pk-console-test.c:181
msgid "Affected packages: None"
msgstr "ପàରà¬à¬¾à¬¬à¬¿à¬¤ ପààାà¬àà¬à¬àଡ଼ିà¬: à¬à¬¿à¬à¬¿à¬¨àହà¬"
#. TRANSLATORS: When processing, we might have to remove other dependencies
-#: ../client/pk-console.c:337 ../client/pk-task-text.c:220
+#: ../client/pk-console.c:336 ../lib/packagekit-glib2/pk-task-text.c:220
msgid "The following packages have to be removed:"
msgstr "ନିମàନଲିà¬à¬¿à¬¤ ପààାà¬àà¬à¬àଡ଼ିà¬à à¬à¬¾à¬¢à¬¼à¬¿à¬¬à¬¾à¬à ହàବ:"
#. TRANSLATORS: When processing, we might have to install other dependencies
-#: ../client/pk-console.c:340 ../client/pk-task-text.c:225
+#: ../client/pk-console.c:339 ../lib/packagekit-glib2/pk-task-text.c:225
msgid "The following packages have to be installed:"
msgstr "ନିମàନଲିà¬à¬¿à¬¤ ପààାà¬àà¬à¬àଡ଼ିà¬à ସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾à¬à ହàବ:"
#. TRANSLATORS: When processing, we might have to update other dependencies
-#: ../client/pk-console.c:343 ../client/pk-task-text.c:230
+#: ../client/pk-console.c:342 ../lib/packagekit-glib2/pk-task-text.c:230
msgid "The following packages have to be updated:"
msgstr "ନିମàନଲିà¬à¬¿à¬¤ ପààାà¬àà¬à¬àଡ଼ିà¬à à¬
ଦààତନ à¬à¬°à¬¿à¬¬à¬¾à¬à ହàବ:"
#. TRANSLATORS: When processing, we might have to reinstall other dependencies
-#: ../client/pk-console.c:346 ../client/pk-task-text.c:235
+#: ../client/pk-console.c:345 ../lib/packagekit-glib2/pk-task-text.c:235
msgid "The following packages have to be reinstalled:"
msgstr "ନିମàନଲିà¬à¬¿à¬¤ ପààାà¬àà¬à¬àଡ଼ିà¬à ପàନଠସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾à¬à ହàବ:"
#. TRANSLATORS: When processing, we might have to downgrade other dependencies
-#: ../client/pk-console.c:349 ../client/pk-task-text.c:240
+#: ../client/pk-console.c:348 ../lib/packagekit-glib2/pk-task-text.c:240
msgid "The following packages have to be downgraded:"
msgstr "ନିମàନଲିà¬à¬¿à¬¤ ପààାà¬àà¬à¬àଡ଼ିà¬à ପଦ à¬
ବନତି à¬à¬°à¬¿à¬¬à¬¾à¬à ହàବ:"
#. TRANSLATORS: this is the distro, e.g. Fedora 10
-#: ../client/pk-console.c:363 ../client/pk-console-test.c:205
+#: ../client/pk-console.c:362 ../client/pk-console-test.c:201
msgid "Distribution"
msgstr "ବଣàà¬à¬¨"
#. TRANSLATORS: this is type of update, stable or testing
-#: ../client/pk-console.c:365 ../client/pk-console-test.c:207
+#: ../client/pk-console.c:364 ../client/pk-console-test.c:203
msgid "Type"
msgstr "ପàରà¬à¬¾à¬°"
@@ -133,45 +135,46 @@ msgstr "ପàରà¬à¬¾à¬°"
#. TRANSLATORS: this is the summary of the group
#. TRANSLATORS: this is any summary text describing the upgrade
#. TRANSLATORS: this is the summary of the group
-#: ../client/pk-console.c:367 ../client/pk-console.c:390
-#: ../client/pk-console-test.c:209 ../client/pk-console-test.c:230
+#: ../client/pk-console.c:366 ../client/pk-console.c:389
+#: ../client/pk-console-test.c:205 ../client/pk-console-test.c:226
msgid "Summary"
msgstr "ସାରାà¬à¬¶"
#. TRANSLATORS: this is the group category name
-#: ../client/pk-console.c:379 ../client/pk-console-test.c:219
+#: ../client/pk-console.c:378 ../client/pk-console-test.c:215
msgid "Category"
msgstr "ବିà¬à¬¾à¬"
#. TRANSLATORS: this is group identifier
-#: ../client/pk-console.c:381 ../client/pk-console-test.c:221
+#: ../client/pk-console.c:380 ../client/pk-console-test.c:217
msgid "ID"
msgstr "ID"
#. TRANSLATORS: this is the parent group
-#: ../client/pk-console.c:384 ../client/pk-console-test.c:224
+#: ../client/pk-console.c:383 ../client/pk-console-test.c:220
msgid "Parent"
msgstr "ମàà¬àà"
#. TRANSLATORS: this is the name of the parent group
-#: ../client/pk-console.c:387 ../client/pk-console-test.c:227
+#: ../client/pk-console.c:386 ../client/pk-console-test.c:223
msgid "Name"
msgstr "ନାମ"
#. TRANSLATORS: this is preferred icon for the group
-#: ../client/pk-console.c:393 ../client/pk-console-test.c:233
+#: ../client/pk-console.c:392 ../client/pk-console-test.c:229
msgid "Icon"
msgstr "à¬à¬¿à¬¤àରସà¬à¬àତ"
#. TRANSLATORS: this is a header for the package that can be updated
-#: ../client/pk-console.c:408 ../client/pk-console-test.c:247
+#: ../client/pk-console.c:407 ../client/pk-console-test.c:243
msgid "Details about the update:"
msgstr "à¬
ଦààତନ ବିଷàରà ବିସàତàତ ବିବରଣà:"
#. TRANSLATORS: details about the update, package name and version
#. TRANSLATORS: title, the names of the packages that the method is processing
-#: ../client/pk-console.c:410 ../client/pk-console-test.c:253
-#: ../client/pk-task-text.c:101 ../client/pk-task-text.c:153
+#: ../client/pk-console.c:409 ../client/pk-console-test.c:249
+#: ../lib/packagekit-glib2/pk-task-text.c:101
+#: ../lib/packagekit-glib2/pk-task-text.c:153
#: ../src/pk-polkit-action-lookup.c:352
msgid "Package"
msgid_plural "Packages"
@@ -179,121 +182,121 @@ msgstr[0] "ପààାà¬àà¬"
msgstr[1] "ପààାà¬àà¬à¬àଡ଼ିà¬"
#. TRANSLATORS: details about the update, any packages that this update updates
-#: ../client/pk-console.c:413 ../client/pk-console-test.c:256
+#: ../client/pk-console.c:412 ../client/pk-console-test.c:252
msgid "Updates"
msgstr "à¬
ଦààତନà¬àଡ଼ିà¬"
#. TRANSLATORS: details about the update, any packages that this update obsoletes
-#: ../client/pk-console.c:417 ../client/pk-console-test.c:260
+#: ../client/pk-console.c:416 ../client/pk-console-test.c:256
msgid "Obsoletes"
msgstr "à¬
à¬à¬³à¬àଡ଼ିà¬"
#. TRANSLATORS: details about the update, the vendor URLs
-#: ../client/pk-console.c:421 ../client/pk-console-test.c:264
-#: ../client/pk-task-text.c:154
+#: ../client/pk-console.c:420 ../client/pk-console-test.c:260
+#: ../lib/packagekit-glib2/pk-task-text.c:154
msgid "Vendor"
msgstr "ବିà¬àରàତା"
#. TRANSLATORS: details about the update, the bugzilla URLs
-#: ../client/pk-console.c:425 ../client/pk-console-test.c:268
+#: ../client/pk-console.c:424 ../client/pk-console-test.c:264
msgid "Bugzilla"
msgstr "Bugzilla"
#. TRANSLATORS: details about the update, the CVE URLs
-#: ../client/pk-console.c:429 ../client/pk-console-test.c:272
+#: ../client/pk-console.c:428 ../client/pk-console-test.c:268
msgid "CVE"
msgstr "CVE"
#. TRANSLATORS: details about the update, if the package requires a restart
-#: ../client/pk-console.c:433 ../client/pk-console-test.c:276
+#: ../client/pk-console.c:432 ../client/pk-console-test.c:272
msgid "Restart"
msgstr "ପàନà¬à¬à¬¾à¬³à¬¨"
#. TRANSLATORS: details about the update, any description of the update
-#: ../client/pk-console.c:437 ../client/pk-console-test.c:280
+#: ../client/pk-console.c:436 ../client/pk-console-test.c:276
msgid "Update text"
msgstr "ପାଠàà à¬
ଦààତନ à¬à¬°à¬¨àତà"
#. TRANSLATORS: details about the update, the changelog for the package
-#: ../client/pk-console.c:441 ../client/pk-console-test.c:284
+#: ../client/pk-console.c:440 ../client/pk-console-test.c:280
msgid "Changes"
msgstr "ପରିବରàତàତନà¬àଡ଼ିà¬"
#. TRANSLATORS: details about the update, the ongoing state of the update
-#: ../client/pk-console.c:445 ../client/pk-console-test.c:288
+#: ../client/pk-console.c:444 ../client/pk-console-test.c:284
msgid "State"
msgstr "à¬
ବସàଥା"
#. TRANSLATORS: details about the update, date the update was issued
-#: ../client/pk-console.c:450 ../client/pk-console-test.c:293
+#: ../client/pk-console.c:449 ../client/pk-console-test.c:289
msgid "Issued"
msgstr "ପàରଦତàତ"
#. TRANSLATORS: details about the update, date the update was updated
-#: ../client/pk-console.c:455 ../client/pk-console-test.c:298
+#: ../client/pk-console.c:454 ../client/pk-console-test.c:294
msgid "Updated"
msgstr "à¬
ଦààତିତ"
#. TRANSLATORS: if the repo is enabled
-#: ../client/pk-console.c:475 ../client/pk-console-test.c:316
+#: ../client/pk-console.c:474 ../client/pk-console-test.c:312
msgid "Enabled"
msgstr "ସà¬àରିà"
#. TRANSLATORS: if the repo is disabled
-#: ../client/pk-console.c:478 ../client/pk-console-test.c:319
+#: ../client/pk-console.c:477 ../client/pk-console-test.c:315
msgid "Disabled"
msgstr "ନିଷàà¬àରିà"
-#: ../client/pk-console.c:555 ../client/pk-console.c:557
+#: ../client/pk-console.c:554 ../client/pk-console.c:556
msgid "Percentage"
msgstr "ଶତà¬à¬¡à¬¼à¬¾"
-#: ../client/pk-console.c:557
+#: ../client/pk-console.c:556
msgid "Unknown"
msgstr "à¬
à¬à¬£à¬¾"
#. TRANSLATORS: a package requires the system to be restarted
-#: ../client/pk-console.c:599 ../client/pk-console-test.c:341
+#: ../client/pk-console.c:598 ../client/pk-console-test.c:337
msgid "System restart required by:"
msgstr "ପାà¬à¬ ତନàତàର ପàନà¬à¬à¬¾à¬³à¬¨ à¬à¬¬à¬¶ààà¬:"
#. TRANSLATORS: a package requires the session to be restarted
-#: ../client/pk-console.c:602 ../client/pk-console-test.c:344
+#: ../client/pk-console.c:601 ../client/pk-console-test.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:605 ../client/pk-console-test.c:347
+#: ../client/pk-console.c:604 ../client/pk-console-test.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:608 ../client/pk-console-test.c:350
+#: ../client/pk-console.c:607 ../client/pk-console-test.c:346
msgid "Session restart (security) required:"
msgstr "à¬
ଧିବàଶନ ପàନà¬à¬à¬¾à¬³à¬¨ (ସàରà¬àଷା) à¬à¬¬à¬¶ààà¬:"
#. TRANSLATORS: a package requires the application to be restarted
-#: ../client/pk-console.c:611 ../client/pk-console-test.c:353
+#: ../client/pk-console.c:610 ../client/pk-console-test.c:349
msgid "Application restart required by:"
msgstr "ପାà¬à¬ ପàରààଠପàନà¬à¬à¬¾à¬³à¬¨ à¬à¬¬à¬¶ààà¬:"
#. TRANSLATORS: a package needs to restart their system
-#: ../client/pk-console.c:666 ../client/pk-console-test.c:704
+#: ../client/pk-console.c:665 ../client/pk-console-test.c:538
msgid "Please restart the computer to complete the update."
msgstr "à¬
ଦààତନà¬à ସମàପàରàଣàଣ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ à¬à¬®àପàà¬à¬°à¬à ପàନà¬à¬à¬¾à¬³à¬¨ à¬à¬°à¬¨àତà।"
#. TRANSLATORS: a package needs to restart the session
-#: ../client/pk-console.c:669 ../client/pk-console-test.c:707
+#: ../client/pk-console.c:668 ../client/pk-console-test.c:541
msgid "Please logout and login to complete the update."
msgstr "à¬
ଦààତନà¬à ସମàପàରàଣàଣ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ ଦàାà¬à¬°à¬¿ ଲà¬à¬à¬à¬ à¬à¬°à¬¿à¬¸à¬¾à¬°à¬¿ ପàଣି ଲà¬à¬à¬¨ à¬à¬°à¬¨àତà।"
#. TRANSLATORS: a package needs to restart the application
-#: ../client/pk-console.c:672
+#: ../client/pk-console.c:671
msgid "Please restart the application as it is being used."
msgstr "ପàରààà¬à¬à¬¿ ବààବହàତ ହàà¬à¬¥à¬¿à¬¬à¬¾ ପରି ଦàାà¬à¬°à¬¿ ପàନà¬à¬à¬¾à¬³à¬¨ à¬à¬°à¬¨àତà।"
#. TRANSLATORS: a package needs to restart their system (due to security)
-#: ../client/pk-console.c:675 ../client/pk-console-test.c:710
+#: ../client/pk-console.c:674 ../client/pk-console-test.c:544
msgid ""
"Please restart the computer to complete the update as important security "
"updates have been installed."
@@ -302,7 +305,7 @@ msgstr ""
"ସàଥାପିତ ହàà¬à¬¸à¬¾à¬°à¬¿à¬à¬¿à¥¤"
#. TRANSLATORS: a package needs to restart the session (due to security)
-#: ../client/pk-console.c:678 ../client/pk-console-test.c:713
+#: ../client/pk-console.c:677 ../client/pk-console-test.c:547
msgid ""
"Please logout and login to complete the update as important security updates "
"have been installed."
@@ -311,442 +314,443 @@ msgstr ""
"à¬
ଦààତନà¬àଡ଼ିଠସàଥାପିତ ହàà¬à¬¸à¬¾à¬°à¬¿à¬à¬¿à¥¤"
#. TRANSLATORS: The package is already installed on the system
-#: ../client/pk-console.c:810
+#: ../client/pk-console.c:809
#, c-format
msgid "The package %s is already installed"
msgstr "ପààାà¬àଠ%s ପàରàବରà ସàଥାପିତ ହàà¬à¬à¬¿"
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:818
+#: ../client/pk-console.c:817
#, c-format
msgid "The package %s could not be installed: %s"
msgstr "ପààାà¬àଠ%s à¬à ସàଥାପନ à¬à¬°à¬¿à¬¹àଲା ନାହିà¬: %s"
#. TRANSLATORS: There was a programming error that shouldn't happen. The detailed error follows
-#: ../client/pk-console.c:844 ../client/pk-console.c:892
-#: ../client/pk-console.c:916 ../client/pk-console.c:964
-#: ../client/pk-console.c:1060 ../client/pk-console.c:1173
-#: ../client/pk-console.c:1234 ../client/pk-tools-common.c:63
-#: ../client/pk-tools-common.c:82 ../client/pk-tools-common.c:90
+#: ../client/pk-console.c:843 ../client/pk-console.c:891
+#: ../client/pk-console.c:915 ../client/pk-console.c:963
+#: ../client/pk-console.c:1059 ../client/pk-console.c:1172
+#: ../client/pk-console.c:1233 ../client/pk-tools-common.c:132
+#: ../client/pk-tools-common.c:151 ../client/pk-tools-common.c:159
#, c-format
msgid "Internal error: %s"
msgstr "à¬à¬ààନàତରିଣ ତàରàà¬à¬¿: %s"
#. TRANSLATORS: We are checking if it's okay to remove a list of packages
#. ask the user
-#: ../client/pk-console.c:876 ../client/pk-console.c:948
-#: ../client/pk-console.c:1266 ../client/pk-task-text.c:299
+#: ../client/pk-console.c:875 ../client/pk-console.c:947
+#: ../client/pk-console.c:1265 ../lib/packagekit-glib2/pk-task-text.c:299
msgid "Proceed with changes?"
msgstr "ପରିବରàତàତନà¬àଡ଼ିଠସହିତ à¬
à¬àରସର ହàବà à¬à¬¿?"
#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:881 ../client/pk-console.c:953
+#: ../client/pk-console.c:880 ../client/pk-console.c:952
msgid "The package install was canceled!"
msgstr "ପààାà¬àଠସàଥାପନà¬à ବାତିଲ à¬à¬°à¬¾à¬¯à¬¾à¬à¬¥à¬¿à¬²à¬¾!"
#. TRANSLATORS: There was an error installing the packages. The detailed error follows
-#: ../client/pk-console.c:900 ../client/pk-console.c:1634
+#: ../client/pk-console.c:899 ../client/pk-console.c:1633
#, c-format
msgid "This tool could not install the packages: %s"
msgstr "à¬à¬¹à¬¾ ମଧàà ପààାà¬àà¬à¬àଡ଼ିà¬à ସàଥାପନ à¬à¬°à¬¿à¬ªà¬¾à¬°à¬¿à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: There was an error installing the files. The detailed error follows
-#: ../client/pk-console.c:972
+#: ../client/pk-console.c:971
#, c-format
msgid "This tool could not install the files: %s"
msgstr "à¬à¬¹à¬¾ ମଧàà ଫାà¬à¬²à¬àଡ଼ିà¬à ସàଥାପନ à¬à¬°à¬¿à¬ªà¬¾à¬°à¬¿à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: The package name was not found in the installed list. The detailed error follows
-#: ../client/pk-console.c:1028
+#: ../client/pk-console.c:1027
#, c-format
msgid "This tool could not remove %s: %s"
msgstr "à¬à¬¹à¬¾ ମଧàଯ %sà¬à à¬à¬¾à¬¢à¬¼à¬¿à¬ªà¬¾à¬°à¬¿à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1051 ../client/pk-console.c:1089
-#: ../client/pk-console.c:1118
+#: ../client/pk-console.c:1050 ../client/pk-console.c:1088
+#: ../client/pk-console.c:1117
#, c-format
msgid "This tool could not remove the packages: %s"
msgstr "à¬à¬¹à¬¾ ମଧàଯ ପààାà¬àà¬à¬àଡ଼ିà¬à à¬à¬¾à¬¢à¬¼à¬¿à¬ªà¬¾à¬°à¬¿à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: We are checking if it's okay to remove a list of packages
-#: ../client/pk-console.c:1104
+#: ../client/pk-console.c:1103
msgid "Proceed with additional packages?"
msgstr "à¬
ତିରିà¬àତ ପààାà¬àà¬à¬àଡ଼ିଠସହିତ à¬
à¬àରସର ହàବà à¬à¬¿?"
#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1109
+#: ../client/pk-console.c:1108
msgid "The package removal was canceled!"
msgstr "ପààାà¬àଠà¬à¬¾à¬¢à¬¼à¬¿à¬¬à¬¾à¬à ବାତିଲ à¬à¬°à¬¾à¬¯à¬¾à¬à¬¥à¬¿à¬²à¬¾!"
#. TRANSLATORS: The package name was not found in any software sources
-#: ../client/pk-console.c:1150
+#: ../client/pk-console.c:1149
#, c-format
msgid "This tool could not download the package %s as it could not be found"
msgstr "à¬à¬¹à¬¾ ମଧàଯ ପààାà¬àଠ%sà¬à à¬à¬¹à¬°à¬£ à¬à¬°à¬¿à¬ªà¬¾à¬°à¬¿à¬²à¬¾ ନାହିଠà¬à¬¾à¬°à¬£ à¬à¬¹à¬¾ ମିଳିଲା ନାହିà¬"
#. TRANSLATORS: Could not download the packages for some reason. The detailed error follows
-#: ../client/pk-console.c:1181
+#: ../client/pk-console.c:1180
#, c-format
msgid "This tool could not download the packages: %s"
msgstr "à¬à¬¹à¬¾ ମଧàଯ ପààାà¬àà¬à¬àଡ଼ିà¬à à¬à¬¹à¬°à¬£ à¬à¬°à¬¿à¬ªà¬¾à¬°à¬¿à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1213 ../client/pk-console.c:1225
-#: ../client/pk-console.c:1280
+#: ../client/pk-console.c:1212 ../client/pk-console.c:1224
+#: ../client/pk-console.c:1279
#, c-format
msgid "This tool could not update %s: %s"
msgstr "à¬à¬¹à¬¾ ମଧàଯ %sà¬à à¬
ଦààତନ à¬à¬°à¬¿à¬ªà¬¾à¬°à¬¿à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: There was an error removing the packages. The detailed error follows
-#: ../client/pk-console.c:1271
+#: ../client/pk-console.c:1270
msgid "The package update was canceled!"
msgstr "ପààାà¬àଠà¬
ଦààତନà¬à ବାତିଲ à¬à¬°à¬¾à¬¯à¬¾à¬à¬¥à¬¿à¬²à¬¾!"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1304 ../client/pk-console.c:1312
+#: ../client/pk-console.c:1303 ../client/pk-console.c:1311
#, c-format
msgid "This tool could not get the requirements for %s: %s"
msgstr "à¬à¬¹à¬¾ ମଧàଯ %s ପାà¬à¬ à¬à¬¬à¬¶ààà¬à¬¤à¬¾à¬àଡ଼ିà¬à ପାà¬à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: There was an error getting the dependencies for the package. The detailed error follows
-#: ../client/pk-console.c:1334 ../client/pk-console.c:1342
+#: ../client/pk-console.c:1333 ../client/pk-console.c:1341
#, c-format
msgid "This tool could not get the dependencies for %s: %s"
msgstr "à¬à¬¹à¬¾ ମଧàଯ %s ପାà¬à¬ ନିରàà¬à¬°à¬¤à¬¾à¬àଡ଼ିà¬à ପାà¬à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: There was an error getting the details about the package. The detailed error follows
-#: ../client/pk-console.c:1364 ../client/pk-console.c:1372
+#: ../client/pk-console.c:1363 ../client/pk-console.c:1371
#, c-format
msgid "This tool could not get package details for %s: %s"
msgstr "à¬à¬¹à¬¾ ମଧàଯ %s ପାà¬à¬ ପààାà¬àଠବିବରଣà ପାà¬à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1394
+#: ../client/pk-console.c:1393
#, c-format
msgid "This tool could not find the files for %s: %s"
msgstr "à¬à¬¹à¬¾ ମଧàଯ %s ପାà¬à¬ ଫାà¬à¬²à¬àଡ଼ିà¬à ପାà¬à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console.c:1402
+#: ../client/pk-console.c:1401
#, c-format
msgid "This tool could not get the file list for %s: %s"
msgstr "à¬à¬¹à¬¾ ମଧàଯ %s ପାà¬à¬ ଫାà¬à¬² ତାଲିà¬à¬¾ ପାà¬à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: There was an error getting the list of packages. The filename follows
-#: ../client/pk-console.c:1424
+#: ../client/pk-console.c:1423
#, c-format
msgid "File already exists: %s"
msgstr "ଫାà¬à¬² ପàରàବରà à¬
ବସàଥିତ: %s"
#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1429 ../client/pk-console.c:1485
-#: ../client/pk-console.c:1560
+#: ../client/pk-console.c:1428 ../client/pk-console.c:1484
+#: ../client/pk-console.c:1559
msgid "Getting package list"
msgstr "ପààାà¬àଠତାଲିà¬à¬¾ à¬àରହଣ à¬à¬°àà¬
à¬à¬¿"
#. TRANSLATORS: There was an error getting the list of packages. The detailed error follows
-#: ../client/pk-console.c:1435 ../client/pk-console.c:1491
-#: ../client/pk-console.c:1566
+#: ../client/pk-console.c:1434 ../client/pk-console.c:1490
+#: ../client/pk-console.c:1565
#, c-format
msgid "This tool could not get package list: %s"
msgstr "à¬à¬¹à¬¾ ମଧàଯ ପààାà¬àଠତାଲିà¬à¬¾ ପାà¬à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: There was an error saving the list
-#: ../client/pk-console.c:1446
+#: ../client/pk-console.c:1445
#, c-format
msgid "Failed to save to disk"
msgstr "ଡିସàà¬à¬°à ସà¬à¬°à¬àଷଣ à¬à¬°à¬¿à¬¬à¬¾à¬°à ବିଫଳ"
#. TRANSLATORS: There was an error getting the list. The filename follows
-#: ../client/pk-console.c:1480 ../client/pk-console.c:1555
+#: ../client/pk-console.c:1479 ../client/pk-console.c:1554
#, c-format
msgid "File does not exist: %s"
msgstr "ଫାà¬à¬² à¬
ବସàଥିତ ନାହିà¬: %s"
#. TRANSLATORS: header to a list of packages newly added
-#: ../client/pk-console.c:1512
+#: ../client/pk-console.c:1511
msgid "Packages to add"
msgstr "ଯàଠà¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ ପààାà¬àà¬à¬àଡ଼ିà¬"
#. TRANSLATORS: header to a list of packages removed
-#: ../client/pk-console.c:1520
+#: ../client/pk-console.c:1519
msgid "Packages to remove"
msgstr "à¬à¬¾à¬¢à¬¼à¬¾à¬¯à¬¿à¬¬à¬¾ ପାà¬à¬ ପààାà¬àà¬à¬àଡ଼ିà¬"
#. TRANSLATORS: We didn't find any differences
-#: ../client/pk-console.c:1588
+#: ../client/pk-console.c:1587
#, c-format
msgid "No new packages need to be installed"
msgstr "à¬àଣସି ନàତନ ପààାà¬àଠସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾ à¬à¬¬à¬¶ààଠନାହିà¬"
#. TRANSLATORS: follows a list of packages to install
-#: ../client/pk-console.c:1594
+#: ../client/pk-console.c:1593
msgid "To install"
msgstr "ସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾à¬à"
#. TRANSLATORS: searching takes some time....
-#: ../client/pk-console.c:1606
+#: ../client/pk-console.c:1605
msgid "Searching for package: "
msgstr "ପààାà¬àଠପାà¬à¬ ସନàଧାନ à¬à¬°àà¬
à¬à¬¿: "
#. TRANSLATORS: package was not found -- this is the end of a string ended in ...
-#: ../client/pk-console.c:1610
+#: ../client/pk-console.c:1609
msgid "not found."
msgstr "ମିଳିଲା ନାହିà¬à¥¤"
#. TRANSLATORS: We didn't find any packages to install
-#: ../client/pk-console.c:1621
+#: ../client/pk-console.c:1620
#, c-format
msgid "No packages can be found to install"
msgstr "ସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ à¬àଣସି ପààାà¬àଠମିଳିଲା ନାହିà¬"
#. TRANSLATORS: installing new packages from package list
#. TRANSLATORS: we are now installing the debuginfo packages we found earlier
-#: ../client/pk-console.c:1627
+#: ../client/pk-console.c:1626
#: ../contrib/debuginfo-install/pk-debuginfo-install.c:885
#, c-format
msgid "Installing packages"
msgstr "ପààାà¬àà¬à¬àଡ଼ିà¬à ସàଥାପନ à¬à¬°àà¬
à¬à¬¿"
#. TRANSLATORS: The package name was not found in any software sources. The detailed error follows
-#: ../client/pk-console.c:1663
+#: ../client/pk-console.c:1662
#, c-format
msgid "This tool could not find the update details for %s: %s"
msgstr "à¬à¬¹à¬¿ à¬à¬ªà¬à¬°à¬£à¬à¬¿ %s ପାà¬à¬ à¬
ଦààତନ ବିବରଣà à¬àà¬à¬¿ ପାà¬à¬¨à¬¾à¬¹à¬¿à¬: %s"
#. TRANSLATORS: There was an error getting the details about the update for the package. The detailed error follows
-#: ../client/pk-console.c:1671
+#: ../client/pk-console.c:1670
#, c-format
msgid "This tool could not get the update details for %s: %s"
msgstr "à¬à¬¹à¬¿ à¬à¬ªà¬à¬°à¬£à¬à¬¿ %s ପାà¬à¬ à¬
ଦààତନ ବିବରଣà ପାà¬à¬²à¬¾ ନାହିà¬: %s"
#. TRANSLATORS: This was an unhandled error, and we don't have _any_ context
-#: ../client/pk-console.c:1702
+#: ../client/pk-console.c:1701
msgid "Error:"
msgstr "ତàରàà¬à¬¿:"
#. TRANSLATORS: This a list of details about the package
-#: ../client/pk-console.c:1716 ../client/pk-console-test.c:370
+#: ../client/pk-console.c:1715 ../client/pk-console-test.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:1732 ../client/pk-console-test.c:388
+#: ../client/pk-console.c:1731 ../client/pk-console-test.c:384
msgid "Message:"
msgstr "ସନàଦàଶ:"
#. TRANSLATORS: This a list files contained in the package
-#: ../client/pk-console.c:1760 ../client/pk-console-test.c:407
+#: ../client/pk-console.c:1759 ../client/pk-console-test.c:403
msgid "Package files"
msgstr "ପààାà¬àଠଫାà¬à¬²à¬àଡ଼ିà¬"
#. TRANSLATORS: This where the package has no files
-#: ../client/pk-console.c:1768 ../client/pk-console-test.c:402
+#: ../client/pk-console.c:1767 ../client/pk-console-test.c:398
msgid "No files"
msgstr "à¬àଣସି ଫାà¬à¬² ନାହିà¬"
#. TRANSLATORS: This a request for a GPG key signature from the backend, which the client will prompt for later
-#: ../client/pk-console.c:1791
+#: ../client/pk-console.c:1790
msgid "Repository signature required"
msgstr "ସà¬à¬àରହାଳà ହସàତାà¬àଷର à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: This a prompt asking the user to import the security key
#. ask the user
-#: ../client/pk-console.c:1801 ../client/pk-task-text.c:113
+#: ../client/pk-console.c:1800 ../lib/packagekit-glib2/pk-task-text.c:113
msgid "Do you accept this signature?"
msgstr "à¬à¬ªà¬£ à¬à¬¹à¬¿ ହସàତାà¬àଷରà¬à à¬àରହଣ à¬à¬°à¬¿à¬¬à à¬à¬¿?"
#. TRANSLATORS: This is where the user declined the security key
-#: ../client/pk-console.c:1805 ../client/pk-task-text.c:117
+#: ../client/pk-console.c:1804 ../lib/packagekit-glib2/pk-task-text.c:117
msgid "The signature was not accepted."
msgstr "à¬à¬¹à¬¿ ହସàତାà¬àଷରà¬à à¬àରହଣ à¬à¬°à¬¾à¬¯à¬¾à¬à¬¨à¬¾à¬¹à¬¿à¬à¥¤"
#. TRANSLATORS: This a request for a EULA
-#: ../client/pk-console.c:1839
+#: ../client/pk-console.c:1838
msgid "End user license agreement required"
msgstr "à¬à¬¾à¬³à¬ à¬
ନàମତି ପତàର à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: This a prompt asking the user to agree to the license
-#: ../client/pk-console.c:1846
+#: ../client/pk-console.c:1845
msgid "Do you agree to this license?"
msgstr "à¬à¬ªà¬£ à¬à¬¹à¬¿ à¬
ନàମତି ପତàର ସହିତ ସହମତ à¬à¬¿?"
#. TRANSLATORS: This is where the user declined the license
-#: ../client/pk-console.c:1850
+#: ../client/pk-console.c:1849
msgid "The license was refused."
msgstr "à¬
ନàମତି ପତàରà¬à ବାରଣ à¬à¬°à¬¾à¬¯à¬¾à¬à¬à¬¿à¥¤"
#. TRANSLATORS: This is when the daemon crashed, and we are up shit creek without a paddle
-#: ../client/pk-console.c:1879 ../client/pk-console-test.c:972
+#: ../client/pk-console.c:1878 ../client/pk-console-test.c:816
msgid "The daemon crashed mid-transaction!"
msgstr "ଡàମନ ମଧàଯ-à¬à¬¾à¬°à¬¬à¬¾à¬°à¬à ନଷàଠà¬à¬°à¬¿à¬à¬¿!"
#. TRANSLATORS: This is the header to the --help menu
-#: ../client/pk-console.c:1932 ../client/pk-console-test.c:1006
+#: ../client/pk-console.c:1931 ../client/pk-console-test.c:850
msgid "PackageKit Console Interface"
msgstr "PackageKit à¬àନସàଲ à¬
ନàତରାପàଷàଠ"
#. these are commands we can use with pkcon
-#: ../client/pk-console.c:1934 ../client/pk-console-test.c:1008
+#: ../client/pk-console.c:1933 ../client/pk-console-test.c:852
msgid "Subcommands:"
msgstr "à¬à¬ª ନିରàଦàଦàଶà¬àଡ଼ିà¬:"
#. TRANSLATORS: command line argument, if we should show debugging information
#. TRANSLATORS: if we should show debugging data
-#: ../client/pk-console.c:2027 ../client/pk-console-test.c:1099
-#: ../client/pk-generate-pack.c:187 ../client/pk-monitor.c:128
-#: ../client/pk-monitor-test.c:282
+#: ../client/pk-console.c:2026 ../client/pk-console-test.c:966
+#: ../client/pk-generate-pack.c:185 ../client/pk-generate-pack-test.c:222
+#: ../client/pk-monitor.c:128 ../client/pk-monitor-test.c:282
#: ../contrib/command-not-found/pk-command-not-found.c:616
+#: ../contrib/command-not-found/pk-command-not-found-test.c:614
#: ../contrib/debuginfo-install/pk-debuginfo-install.c:549
#: ../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:2030 ../client/pk-console-test.c:1102
+#: ../client/pk-console.c:2029 ../client/pk-console-test.c:969
#: ../client/pk-monitor.c:130 ../client/pk-monitor-test.c:284
msgid "Show the program version and exit"
msgstr "ପàରà¬àରାମ ସà¬à¬¸àà¬à¬°à¬£ ଦରàଶାନàତà à¬à¬¬à¬ ପàରସàଥାନ à¬à¬°à¬¨àତà"
#. TRANSLATORS: command line argument, use a filter to narrow down results
-#: ../client/pk-console.c:2033 ../client/pk-console-test.c:1105
+#: ../client/pk-console.c:2032 ../client/pk-console-test.c:972
msgid "Set the filter, e.g. installed"
msgstr "à¬à¬¾à¬£à¬ ସàଠà¬à¬°à¬¨àତà, ଯàପରିà¬à¬¿ ସàଥାପିତ"
#. TRANSLATORS: command line argument, work asynchronously
-#: ../client/pk-console.c:2036 ../client/pk-console-test.c:1108
+#: ../client/pk-console.c:2035 ../client/pk-console-test.c:975
msgid "Exit without waiting for actions to complete"
msgstr "à¬à¬¾à¬°àଯàà ସମàପàରàଣàଣ ହàବା ପରàଯààନàତ à¬
ପàà¬àଷା ନà¬à¬°à¬¿ ପàରସàଥାନ à¬à¬°à¬¨àତà"
#. TRANSLATORS: This is when we could not connect to the system bus, and is fatal
-#: ../client/pk-console.c:2063
+#: ../client/pk-console.c:2062
msgid "This tool could not connect to system DBUS."
msgstr "à¬à¬¹à¬¿ à¬à¬ªà¬à¬°à¬£ ତନàତàର DBUS ସହିତ ସà¬à¬¯àà¬àତ ହàà¬à¬ªà¬¾à¬°à¬¿à¬²à¬¾ ନାହିà¬à¥¤"
#. TRANSLATORS: The user specified an incorrect filter
-#: ../client/pk-console.c:2153 ../client/pk-console-test.c:1183
+#: ../client/pk-console.c:2152 ../client/pk-console-test.c:1052
msgid "The filter specified was invalid"
msgstr "à¬à¬²àଲିà¬à¬¿à¬¤ à¬à¬¾à¬£à¬à¬à¬¿ à¬
ବàଧ à¬
à¬à"
#. TRANSLATORS: a search type can be name, details, file, etc
-#: ../client/pk-console.c:2172 ../client/pk-console-test.c:1202
+#: ../client/pk-console.c:2171 ../client/pk-console-test.c:1071
msgid "A search type is required, e.g. name"
msgstr "à¬àà¬à¬¿à¬ ସନàଧାନ ପàରà¬à¬¾à¬° à¬à¬¬à¬¶ààà¬, ଯàପରିà¬à¬¿ ନାମ"
#. TRANSLATORS: the user needs to provide a search term
-#: ../client/pk-console.c:2179 ../client/pk-console.c:2188
-#: ../client/pk-console.c:2197 ../client/pk-console.c:2206
-#: ../client/pk-console-test.c:1209 ../client/pk-console-test.c:1221
-#: ../client/pk-console-test.c:1233 ../client/pk-console-test.c:1245
+#: ../client/pk-console.c:2178 ../client/pk-console.c:2187
+#: ../client/pk-console.c:2196 ../client/pk-console.c:2205
+#: ../client/pk-console-test.c:1078 ../client/pk-console-test.c:1090
+#: ../client/pk-console-test.c:1102 ../client/pk-console-test.c:1114
msgid "A search term is required"
msgstr "à¬àà¬à¬¿à¬ ସନàଧାନ ନିତି à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: the search type was provided, but invalid
-#: ../client/pk-console.c:2213 ../client/pk-console-test.c:1255
+#: ../client/pk-console.c:2212 ../client/pk-console-test.c:1124
msgid "Invalid search type"
msgstr "à¬
ବàଧ ସନàଧାନ ପàରà¬à¬¾à¬°"
#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console.c:2219
+#: ../client/pk-console.c:2218
msgid "A package name or filename to install is required"
msgstr "ସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ à¬àà¬à¬¿à¬ ପààାà¬àଠନାମ à¬à¬¿à¬®àବା ଫାà¬à¬²à¬¨à¬¾à¬® à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2228 ../client/pk-console-test.c:1282
+#: ../client/pk-console.c:2227 ../client/pk-console-test.c:1151
msgid "A type, key_id and package_id are required"
msgstr "à¬àà¬à¬¿à¬ ପàରà¬à¬¾à¬°, key_id à¬à¬¬à¬ package_id à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: the user did not specify what they wanted to remove
-#: ../client/pk-console.c:2237 ../client/pk-console-test.c:1293
+#: ../client/pk-console.c:2236 ../client/pk-console-test.c:1162
msgid "A package name to remove is required"
msgstr "à¬à¬¾à¬¢à¬¼à¬¿à¬¬à¬¾ ପାà¬à¬ à¬àà¬à¬¿à¬ ପààାà¬àଠନାମ à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: the user did not specify anything about what to download or where
-#: ../client/pk-console.c:2245 ../client/pk-console-test.c:1302
+#: ../client/pk-console.c:2244 ../client/pk-console-test.c:1171
msgid "A destination directory and the package names to download are required"
msgstr "à¬àà¬à¬¿à¬ ଲà¬àଷàଯସàଥଳ ଡିରàà¬àà¬àରà à¬à¬¬à¬ à¬à¬¹à¬°à¬£ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ ପààାà¬àଠନାମà¬àଡ଼ିଠà¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: the directory does not exist, so we can't continue
-#: ../client/pk-console.c:2252 ../client/pk-console-test.c:1309
+#: ../client/pk-console.c:2251 ../client/pk-console-test.c:1178
msgid "Directory not found"
msgstr "ଡିରàà¬àà¬àରà ମିଳàନାହିà¬"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2260 ../client/pk-console-test.c:1318
+#: ../client/pk-console.c:2259 ../client/pk-console-test.c:1187
msgid "A licence identifier (eula-id) is required"
msgstr "à¬àà¬à¬¿à¬ à¬
ନàମତିପତàର ପରିà¬à¬¾àଠ(eula-id) à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: geeky error, 99.9999% of users won't see this
-#: ../client/pk-console.c:2270 ../client/pk-console-test.c:1329
+#: ../client/pk-console.c:2269 ../client/pk-console-test.c:1198
msgid "A transaction identifier (tid) is required"
msgstr "à¬àà¬à¬¿à¬ à¬à¬¾à¬°à¬¬à¬¾à¬° ପରିà¬à¬¾àଠ(tid) à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: The user did not specify a package name
-#: ../client/pk-console.c:2287 ../client/pk-console-test.c:1350
+#: ../client/pk-console.c:2286 ../client/pk-console-test.c:1219
msgid "A package name to resolve is required"
msgstr "ସମାଧାନ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ à¬àà¬à¬¿à¬ ପààାà¬àଠନାମ à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: The user did not specify a repository (software source) name
-#: ../client/pk-console.c:2296 ../client/pk-console.c:2305
-#: ../client/pk-console-test.c:1361 ../client/pk-console-test.c:1372
+#: ../client/pk-console.c:2295 ../client/pk-console.c:2304
+#: ../client/pk-console-test.c:1230 ../client/pk-console-test.c:1241
msgid "A repository name is required"
msgstr "à¬àà¬à¬¿à¬ ସà¬à¬àରହାଳà ନାମ à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: The user didn't provide any data
-#: ../client/pk-console.c:2314 ../client/pk-console-test.c:1383
+#: ../client/pk-console.c:2313 ../client/pk-console-test.c:1252
msgid "A repo name, parameter and value are required"
msgstr "à¬àà¬à¬¿à¬ ସà¬à¬àରହାଳà, ପàରାà¬à¬³ à¬à¬¬à¬ ମàଲàà à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: The user didn't specify what action to use
-#: ../client/pk-console.c:2328 ../client/pk-console-test.c:1401
+#: ../client/pk-console.c:2327 ../client/pk-console-test.c:1269
msgid "An action, e.g. 'update-system' is required"
msgstr "à¬àà¬à¬¿à¬ à¬à¬¾à¬°àଯàà, à¬à¬¦à¬¾à¬¹à¬°à¬£ ସàà±à¬°àପ 'update-system' à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: The user specified an invalid action
-#: ../client/pk-console.c:2335 ../client/pk-console-test.c:1408
+#: ../client/pk-console.c:2334 ../client/pk-console-test.c:1276
msgid "A correct role is required"
msgstr "à¬àà¬à¬¿à¬ ସଠିଠà¬àମିà¬à¬¾ à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: we keep a database updated with the time that an action was last executed
-#: ../client/pk-console.c:2342 ../client/pk-console-test.c:1415
+#: ../client/pk-console.c:2341 ../client/pk-console-test.c:931
msgid "Failed to get the time since this action was last completed"
msgstr "à¬à¬¹à¬¿ à¬à¬¾à¬°àଯààà¬à¬¿ ଶàଷରà ସମàପàରàଣàଣ ହàà¬à¬¥à¬¿à¬¬à¬¾ ହàତà ସମà ପାà¬à¬¬à¬¾à¬°à ବିଫଳ"
#. TRANSLATORS: The user did not provide a package name
#. TRANSLATORS: This is when the user fails to supply the package name
-#: ../client/pk-console.c:2352 ../client/pk-console.c:2364
-#: ../client/pk-console.c:2373 ../client/pk-console.c:2391
-#: ../client/pk-console.c:2400 ../client/pk-console-test.c:1425
-#: ../client/pk-console-test.c:1440 ../client/pk-console-test.c:1449
-#: ../client/pk-console-test.c:1469 ../client/pk-console-test.c:1478
-#: ../client/pk-generate-pack.c:243
+#: ../client/pk-console.c:2351 ../client/pk-console.c:2363
+#: ../client/pk-console.c:2372 ../client/pk-console.c:2390
+#: ../client/pk-console.c:2399 ../client/pk-console-test.c:1286
+#: ../client/pk-console-test.c:1301 ../client/pk-console-test.c:1310
+#: ../client/pk-console-test.c:1330 ../client/pk-console-test.c:1339
+#: ../client/pk-generate-pack.c:241 ../client/pk-generate-pack-test.c:285
msgid "A package name is required"
msgstr "à¬àà¬à¬¿à¬ ପààାà¬àଠନାମ à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: each package "provides" certain things, e.g. mime(gstreamer-decoder-mp3), the user didn't specify it
-#: ../client/pk-console.c:2382 ../client/pk-console-test.c:1458
+#: ../client/pk-console.c:2381 ../client/pk-console-test.c:1319
msgid "A package provide string is required"
msgstr "à¬àà¬à¬¿à¬ ପààାà¬àଠପàରଦତàତ ବାà¬ààà¬à¬£àଡ à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: The user didn't specify a filename to create as a list
-#: ../client/pk-console.c:2409
+#: ../client/pk-console.c:2408
msgid "A list file name to create is required"
msgstr "ନିରàମାଣ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ à¬àà¬à¬¿à¬ ତାଲିà¬à¬¾ ଫାà¬à¬² ନାମ à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: The user didn't specify a filename to open as a list
-#: ../client/pk-console.c:2419 ../client/pk-console.c:2429
+#: ../client/pk-console.c:2418 ../client/pk-console.c:2428
msgid "A list file to open is required"
msgstr "à¬àଲିବା ପାà¬à¬ à¬àà¬à¬¿à¬ ତାଲିà¬à¬¾ ଫାà¬à¬² à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: The user tried to use an unsupported option on the command line
-#: ../client/pk-console.c:2483 ../client/pk-console-test.c:1538
+#: ../client/pk-console.c:2482 ../client/pk-console-test.c:1399
#, c-format
msgid "Option '%s' is not supported"
msgstr "ବିà¬à¬³àପ '%s' à¬à¬¿ ସମରàଥିତ ନàହà¬"
#. TRANSLATORS: User does not have permission to do this
-#: ../client/pk-console.c:2496
+#: ../client/pk-console.c:2495
msgid "Incorrect privileges for this operation"
msgstr "à¬à¬¹à¬¿ ପàରààଠପାà¬à¬ à¬àଲ à¬
ଧିà¬à¬¾à¬°"
@@ -754,34 +758,24 @@ msgstr "à¬à¬¹à¬¿ ପàରààଠପାà¬à¬ à¬àଲ à¬
ଧିà¬à¬¾à¬°"
#. /* TRANSLATORS: User does not have permission to do this */
#. g_print ("%s\n", _("Incorrect privileges for this operation"));
#. TRANSLATORS: Generic failure of what they asked to do
-#: ../client/pk-console.c:2499 ../client/pk-console-test.c:1550
+#: ../client/pk-console.c:2498 ../client/pk-console-test.c:1411
msgid "Command failed"
msgstr "ନିରàଦàଦàଶ ବିଫଳ ହàà¬à¬à¬¿"
-#. TRANSLATORS: more than one package could be found that matched, to follow is a list of possible packages
-#: ../client/pk-console-test.c:523 ../client/pk-tools-common.c:131
-msgid "More than one package matches:"
-msgstr "à¬àà¬à¬¿à¬à¬°à à¬
ଧିଠପààାà¬àଠମàଳ à¬à¬¾à¬à¬à¬¿:"
-
-#. TRANSLATORS: This finds out which package in the list to use
-#: ../client/pk-console-test.c:532 ../client/pk-tools-common.c:138
-msgid "Please choose the correct package: "
-msgstr "ଦàାà¬à¬°à¬¿ ସଠିଠପààାà¬àଠବାà¬à¬¨àତà: "
-
#. TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows
-#: ../client/pk-console-test.c:734
+#: ../client/pk-console-test.c:568
#, c-format
msgid "This tool could not find the 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-test.c:762
+#: ../client/pk-console-test.c:596
#, 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-test.c:790 ../client/pk-console-test.c:818
+#: ../client/pk-console-test.c:624 ../client/pk-console-test.c:652
#, c-format
msgid "This tool could not find the package: %s"
msgstr "à¬à¬¹à¬¿ ସାଧନ ପààାà¬àà¬à¬àଡ଼ିà¬à à¬àà¬à¬¿ ପାà¬à¬²à¬¾ ନାହିà¬: %s"
@@ -790,81 +784,89 @@ msgstr "à¬à¬¹à¬¿ ସାଧନ ପààାà¬àà¬à¬àଡ଼ିà¬à à¬à
#. 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-test.c:846 ../client/pk-console-test.c:872
-#: ../client/pk-console-test.c:898 ../client/pk-console-test.c:924
-#: ../client/pk-console-test.c:950
+#: ../client/pk-console-test.c:680 ../client/pk-console-test.c:708
+#: ../client/pk-console-test.c:736 ../client/pk-console-test.c:764
+#: ../client/pk-console-test.c:792
#, c-format
msgid "This tool could not find all the packages: %s"
msgstr "à¬à¬¹à¬¿ ସାଧନ ସମସàତ ପààାà¬àà¬à¬àଡ଼ିà¬à à¬àà¬à¬¿ ପାà¬à¬²à¬¾ ନାହିà¬: %s"
+#. TRANSLATORS: we failed to contact the daemon
+#: ../client/pk-console-test.c:1000
+msgid "Failed to contact PackageKit"
+msgstr "PackageKit ସହିତ ଯàà¬à¬¾à¬¯àଠà¬à¬°à¬¿à¬¬à¬¾à¬°à ବିଫଳ"
+
#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console-test.c:1261
+#: ../client/pk-console-test.c:1130
msgid "A package name to install is required"
msgstr "ସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ à¬àà¬à¬¿à¬ ପààାà¬àଠନାମ à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: the user did not specify what they wanted to install
-#: ../client/pk-console-test.c:1270
+#: ../client/pk-console-test.c:1139
msgid "A filename to install is required"
msgstr "ସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ à¬àà¬à¬¿à¬ ଫାà¬à¬² ନାମ à¬à¬¬à¬¶ààà¬"
#. TRANSLATORS: This is the state of the transaction
-#: ../client/pk-generate-pack.c:103
+#: ../client/pk-generate-pack.c:101
msgid "Downloading"
msgstr "à¬à¬¹à¬°à¬£ à¬à¬°àà¬
à¬à¬¿"
#. TRANSLATORS: This is when the main packages are being downloaded
-#: ../client/pk-generate-pack.c:123
+#: ../client/pk-generate-pack.c:121
msgid "Downloading packages"
msgstr "ପààାà¬àଠà¬à¬¹à¬°à¬£ à¬à¬°àà¬
à¬à¬¿"
#. TRANSLATORS: This is when the dependency packages are being downloaded
-#: ../client/pk-generate-pack.c:128
+#: ../client/pk-generate-pack.c:126
msgid "Downloading dependencies"
msgstr "ନିରàà¬à¬°à¬¤à¬¾à¬àଡ଼ିà¬à à¬à¬¹à¬°à¬£ à¬à¬°àà¬
à¬à¬¿"
#. TRANSLATORS: we can exclude certain packages (glibc) when we know they'll exist on the target
-#: ../client/pk-generate-pack.c:190
+#: ../client/pk-generate-pack.c:188 ../client/pk-generate-pack-test.c:225
msgid "Set the file name of dependencies to be excluded"
msgstr "ବାହାର à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ ନିରàà¬à¬°à¬¤à¬¾à¬àଡ଼ିà¬à¬° ଫାà¬à¬² ନାମà¬à ସàଠà¬à¬°à¬¨àତà"
#. TRANSLATORS: the output location
-#: ../client/pk-generate-pack.c:193
+#: ../client/pk-generate-pack.c:191 ../client/pk-generate-pack-test.c:228
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:196
+#: ../client/pk-generate-pack.c:194 ../client/pk-generate-pack-test.c:231
msgid "The package to be put into the service pack"
msgstr "ସରàà¬à¬¿à¬¸ ପààାଠମଧàଯରà ରà¬à¬¿à¬¬à¬¾à¬à ଥିବା ପààାà¬àà¬"
#. TRANSLATORS: put all pending updates in the pack
-#: ../client/pk-generate-pack.c:199
+#: ../client/pk-generate-pack.c:197 ../client/pk-generate-pack-test.c:234
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:227
+#: ../client/pk-generate-pack.c:225 ../client/pk-generate-pack-test.c:269
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:235
+#: ../client/pk-generate-pack.c:233 ../client/pk-generate-pack-test.c:277
msgid "Both options selected."
msgstr "à¬à¬à ବିà¬à¬³àପà¬àଡ଼ିà¬à ବà¬à¬¾à¬¹àà¬à¬à¬¿à¥¤"
#. TRANSLATORS: This is when the user fails to supply the output
-#: ../client/pk-generate-pack.c:251
+#: ../client/pk-generate-pack.c:249 ../client/pk-generate-pack-test.c:293
msgid "A output directory or file name is required"
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:269 ../client/pk-generate-pack.c:275
+#. 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:267 ../client/pk-generate-pack.c:273
+#: ../client/pk-generate-pack-test.c:321 ../client/pk-generate-pack-test.c:327
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:282
+#: ../client/pk-generate-pack.c:280 ../client/pk-generate-pack-test.c:334
msgid ""
"Service packs cannot be created as PackageKit was not built with libarchive "
"support."
@@ -873,54 +875,54 @@ msgstr ""
"ହàà¬à¬¨à¬¾à¬¹à¬¿à¬à¥¤"
#. TRANSLATORS: the user specified an absolute path, but didn't get the extension correct
-#: ../client/pk-generate-pack.c:293
+#: ../client/pk-generate-pack.c:291 ../client/pk-generate-pack-test.c:345
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:309
+#: ../client/pk-generate-pack.c:307 ../client/pk-generate-pack-test.c:361
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:312
+#: ../client/pk-generate-pack.c:310 ../client/pk-generate-pack-test.c:364
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:325
+#: ../client/pk-generate-pack.c:323 ../client/pk-generate-pack-test.c:377
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:335
+#: ../client/pk-generate-pack.c:333 ../client/pk-generate-pack-test.c:389
msgid "Failed to open package list."
msgstr "ପààାà¬àଠତାଲିà¬à¬¾ à¬àଲିବାରà ବିଫଳ।"
#. TRANSLATORS: The package name is being matched up to available packages
-#: ../client/pk-generate-pack.c:346
+#: ../client/pk-generate-pack.c:344 ../client/pk-generate-pack-test.c:398
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:350
+#: ../client/pk-generate-pack.c:348 ../client/pk-generate-pack-test.c:402
#, 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:367
+#: ../client/pk-generate-pack.c:365 ../client/pk-generate-pack-test.c:410
msgid "Creating service pack..."
msgstr "ସରàà¬à¬¿à¬¸ ପààାଠନିରàମାଣ à¬à¬°àà¬
à¬à¬¿..."
#. TRANSLATORS: we succeeded in making the file
-#: ../client/pk-generate-pack.c:374
+#: ../client/pk-generate-pack.c:372 ../client/pk-generate-pack-test.c:425
#, c-format
msgid "Service pack created '%s'"
msgstr "ସରàà¬à¬¿à¬¸ ପààାଠନିରàମାଣ ହàà¬à¬
à¬à¬¿ '%s'"
#. TRANSLATORS: we failed to make te file
-#: ../client/pk-generate-pack.c:379
+#: ../client/pk-generate-pack.c:377 ../client/pk-generate-pack-test.c:430
#, c-format
msgid "Failed to create '%s': %s"
msgstr "'%s'à¬à ନିରàମାଣ à¬à¬°à¬¿à¬¬à¬¾à¬°à ବିଫଳ: %s"
@@ -942,104 +944,30 @@ msgstr "à¬à¬¾à¬°à¬¬à¬¾à¬° ତାଲିà¬à¬¾ à¬àଲିବାରà ବିଫ
msgid "Failed to get daemon state"
msgstr "ଡàମନ ସàଥିତି ପାà¬à¬¬à¬¾à¬°à ବିଫଳ"
-#. ask the user
-#: ../client/pk-task-text.c:64
-msgid "Do you want to allow installing of unsigned software?"
-msgstr "ହସàତାà¬àଷର ହàà¬à¬¨à¬¥à¬¿à¬¬à¬¾ ସଫàà¬à±àରà¬à ସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ à¬
ନàମତି ଦàବାà¬à à¬à¬¾à¬¹àà¬à¬à¬¨àତି à¬à¬¿?"
-
-#: ../client/pk-task-text.c:68
-msgid "The unsigned software will not be installed."
-msgstr "ହସàତାà¬àଷର ହàà¬à¬¨à¬¥à¬¿à¬¬à¬¾ ସଫàà¬à±àରà¬à ସàଥାପନ à¬à¬°à¬¾à¬¹àବ ନାହିà¬à¥¤"
-
-#: ../client/pk-task-text.c:100
-msgid "Software source signature required"
-msgstr "ସଫàà¬à±àର à¬à¬¤àସ ହସàତାà¬àଷର à¬à¬¬à¬¶ààà¬"
-
-#: ../client/pk-task-text.c:102
-msgid "Software source name"
-msgstr "ସଫààà±àର à¬à¬¤àସ ନାମ"
-
-#: ../client/pk-task-text.c:103
-msgid "Key URL"
-msgstr "ମàà¬àà URL"
-
-#: ../client/pk-task-text.c:104
-msgid "Key user"
-msgstr "ମହତàତàà±à¬ªàରàଣàଣ à¬à¬¾à¬³à¬"
-
-#: ../client/pk-task-text.c:105
-msgid "Key ID"
-msgstr "ମହତàତàà±à¬ªàରàଣàଣ ID"
-
-#: ../client/pk-task-text.c:106
-msgid "Key fingerprint"
-msgstr "ମହତàତàà±à¬ªàରàଣàଣ à¬
à¬àà¬àଳି à¬à¬¿à¬¹àନ"
-
-#: ../client/pk-task-text.c:107
-msgid "Key Timestamp"
-msgstr "ମହତàତàà±à¬ªàରàଣàଣ à¬à¬¾à¬à¬®à¬·àà¬à¬¾à¬®àପ"
-
-#: ../client/pk-task-text.c:151
-msgid "End user licence agreement required"
-msgstr "à¬à¬¾à¬³à¬ à¬
ନàମତି ପତàର à¬à¬¬à¬¶ààà¬"
-
-#: ../client/pk-task-text.c:152
-msgid "EULA ID"
-msgstr "EULA ID"
-
-#: ../client/pk-task-text.c:155
-msgid "Agreement"
-msgstr "ବàà¬à¬¾à¬®à¬£à¬¾ ପତàର"
-
-#. ask the user
-#: ../client/pk-task-text.c:161
-msgid "Do you accept this agreement?"
-msgstr "à¬à¬ªà¬£ à¬à¬¹à¬¿ ବàà¬à¬¾à¬®à¬£à¬¾ ପତàରà¬à à¬àରହଣ à¬à¬°à¬¿à¬¬à à¬à¬¿?"
-
-#: ../client/pk-task-text.c:165
-msgid "The agreement was not accepted."
-msgstr "à¬à¬¹à¬¿ ବàà¬à¬¾à¬®à¬£à¬¾ ପତàରà¬à à¬àରହଣ à¬à¬°à¬¾à¬¯à¬¾à¬à¬¨à¬¾à¬¹à¬¿à¬à¥¤"
-
-#: ../client/pk-task-text.c:194
-msgid "Media change required"
-msgstr "ମàଡିଠପରିବରàତàତନ à¬à¬¬à¬¶ààà¬"
-
-#: ../client/pk-task-text.c:195
-msgid "Media type"
-msgstr "ମàଡିଠପàରà¬à¬¾à¬°"
-
-#: ../client/pk-task-text.c:196
-msgid "Media ID"
-msgstr "ମàଡିଠID"
-
-#: ../client/pk-task-text.c:197
-msgid "Text"
-msgstr "ପାଠàà"
-
-#. ask the user
-#: ../client/pk-task-text.c:201
-msgid "Please insert the correct media"
-msgstr "ଦàାà¬à¬°à¬¿ ସଠିଠମàଡିà¬à¬à ବାà¬à¬¨àତà"
-
-#: ../client/pk-task-text.c:205
-msgid "The correct media was not inserted."
-msgstr "ସଠିଠମàଡିà¬à¬à à¬à¬°àତàତି à¬à¬°à¬¾à¬¯à¬¾à¬à¬¨à¬¾à¬¹à¬¿à¬à¥¤"
-
-#: ../client/pk-task-text.c:303
-msgid "The transaction did not proceed."
-msgstr "à¬à¬¾à¬°à¬¬à¬¾à¬° à¬
à¬àରସର ହàà¬à¬¨à¬¥à¬¿à¬²à¬¾à¥¤"
-
-#: ../client/pk-text.c:50
+#: ../client/pk-tools-common.c:51
+#: ../lib/packagekit-glib2/pk-console-shared.c:53
#, c-format
msgid "Please enter a number from 1 to %i: "
msgstr "ଦàାà¬à¬°à¬¿ 1 ରà %i à¬à¬¿à¬¤à¬°à ଥିବା à¬àà¬à¬¿à¬ ସà¬à¬ààାà¬à à¬à¬°à¬£ à¬à¬°à¬¨àତà: "
#. TRANSLATORS: The package was not found in any software sources
-#: ../client/pk-tools-common.c:119
+#: ../client/pk-tools-common.c:188
#, c-format
msgid "The package could not be found"
msgstr "ପààାà¬àଠମିଳିଲା ନାହିà¬"
+#. TRANSLATORS: more than one package could be found that matched, to follow is a list of possible packages
+#: ../client/pk-tools-common.c:200
+#: ../lib/packagekit-glib2/pk-console-shared.c:153
+msgid "More than one package matches:"
+msgstr "à¬àà¬à¬¿à¬à¬°à à¬
ଧିଠପààାà¬àଠମàଳ à¬à¬¾à¬à¬à¬¿:"
+
+#. TRANSLATORS: This finds out which package in the list to use
+#: ../client/pk-tools-common.c:207
+#: ../lib/packagekit-glib2/pk-console-shared.c:162
+msgid "Please choose the correct package: "
+msgstr "ଦàାà¬à¬°à¬¿ ସଠିଠପààାà¬àଠବାà¬à¬¨àତà: "
+
#. TRANSLATORS: when we are getting data from the daemon
#: ../contrib/browser-plugin/pk-plugin-install.c:466
msgid "Getting package information..."
@@ -1096,90 +1024,110 @@ msgstr "ସàଥାପନ à¬à¬°àà¬
à¬à¬¿..."
#. TRANSLATORS: downloading repo data so we can search
#: ../contrib/command-not-found/pk-command-not-found.c:349
+#: ../contrib/command-not-found/pk-command-not-found-test.c:358
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:353
+#: ../contrib/command-not-found/pk-command-not-found-test.c:362
msgid "Downloading filelists (this may take some time to complete)."
msgstr "ଫାà¬à¬² ତାଲିà¬à¬¾à¬àଡ଼ିà¬à à¬à¬¹à¬°à¬£ à¬à¬°àà¬
à¬à¬¿ (ସମàପàରàଣàଣ ହàବା ପାà¬à¬ à¬à¬¹à¬¾ à¬à¬¿à¬à¬¿ ସମà ନàà¬à¬ªà¬¾à¬°à)।"
#. TRANSLATORS: waiting for native lock
#: ../contrib/command-not-found/pk-command-not-found.c:357
+#: ../contrib/command-not-found/pk-command-not-found-test.c:366
msgid "Waiting for package manager lock."
msgstr "ପààାà¬àଠପରିà¬à¬¾à¬³à¬à¬àà¬à à¬
ପàà¬àଷା à¬à¬°à¬¿à¬
à¬à¬¿à¥¤"
#. TRANSLATORS: loading package cache so we can search
#: ../contrib/command-not-found/pk-command-not-found.c:361
+#: ../contrib/command-not-found/pk-command-not-found-test.c:370
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:420
+#: ../contrib/command-not-found/pk-command-not-found-test.c:444
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:557
+#: ../contrib/command-not-found/pk-command-not-found-test.c:570
msgid "Failed to launch:"
msgstr "à¬à¬°à¬®àଠà¬à¬°à¬¿à¬¬à¬¾à¬°à ବିଫଳ:"
#. TRANSLATORS: tool that gets called when the command is not found
#: ../contrib/command-not-found/pk-command-not-found.c:632
+#: ../contrib/command-not-found/pk-command-not-found-test.c:630
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-test.c:658
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-test.c:665
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-test.c:674
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
+#. 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-test.c:686
+#: ../contrib/command-not-found/pk-command-not-found-test.c:695
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-test.c:702
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-test.c:721
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-test.c:726
#, c-format
msgid "Install package '%s' to provide command '%s'?"
msgstr "ନିରàଦàଦàଶ '%s'à¬à ପàରଦାନ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ ପààାà¬àଠ'%s'à¬à ସàଥାପନ à¬à¬°à¬¿à¬¬à à¬à¬¿?"
#. TRANSLATORS: Show the user a list of packages that provide this command
#: ../contrib/command-not-found/pk-command-not-found.c:747
+#: ../contrib/command-not-found/pk-command-not-found-test.c:747
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-test.c:756
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-test.c:764
msgid "Please choose a package to install"
msgstr "ସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ ଦàାà¬à¬°à¬¿ à¬àà¬à¬¿à¬ ପààାà¬àଠବାà¬à¬¨àତà"
@@ -1465,6 +1413,93 @@ msgstr "PackageKit ପààାà¬àଠତାଲିà¬à¬¾"
msgid "PackageKit Service Pack"
msgstr "PackageKit ସରàà¬à¬¿à¬¸ ପààାà¬"
+#. ask the user
+#: ../lib/packagekit-glib2/pk-task-text.c:64
+msgid "Do you want to allow installing of unsigned software?"
+msgstr "ହସàତାà¬àଷର ହàà¬à¬¨à¬¥à¬¿à¬¬à¬¾ ସଫàà¬à±àରà¬à ସàଥାପନ à¬à¬°à¬¿à¬¬à¬¾ ପାà¬à¬ à¬
ନàମତି ଦàବାà¬à à¬à¬¾à¬¹àà¬à¬à¬¨àତି à¬à¬¿?"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:68
+msgid "The unsigned software will not be installed."
+msgstr "ହସàତାà¬àଷର ହàà¬à¬¨à¬¥à¬¿à¬¬à¬¾ ସଫàà¬à±àରà¬à ସàଥାପନ à¬à¬°à¬¾à¬¹àବ ନାହିà¬à¥¤"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:100
+msgid "Software source signature required"
+msgstr "ସଫàà¬à±àର à¬à¬¤àସ ହସàତାà¬àଷର à¬à¬¬à¬¶ààà¬"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:102
+msgid "Software source name"
+msgstr "ସଫààà±àର à¬à¬¤àସ ନାମ"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:103
+msgid "Key URL"
+msgstr "ମàà¬àà URL"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:104
+msgid "Key user"
+msgstr "ମହତàତàà±à¬ªàରàଣàଣ à¬à¬¾à¬³à¬"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:105
+msgid "Key ID"
+msgstr "ମହତàତàà±à¬ªàରàଣàଣ ID"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:106
+msgid "Key fingerprint"
+msgstr "ମହତàତàà±à¬ªàରàଣàଣ à¬
à¬àà¬àଳି à¬à¬¿à¬¹àନ"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:107
+msgid "Key Timestamp"
+msgstr "ମହତàତàà±à¬ªàରàଣàଣ à¬à¬¾à¬à¬®à¬·àà¬à¬¾à¬®àପ"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:151
+msgid "End user licence agreement required"
+msgstr "à¬à¬¾à¬³à¬ à¬
ନàମତି ପତàର à¬à¬¬à¬¶ààà¬"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:152
+msgid "EULA ID"
+msgstr "EULA ID"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:155
+msgid "Agreement"
+msgstr "ବàà¬à¬¾à¬®à¬£à¬¾ ପତàର"
+
+#. ask the user
+#: ../lib/packagekit-glib2/pk-task-text.c:161
+msgid "Do you accept this agreement?"
+msgstr "à¬à¬ªà¬£ à¬à¬¹à¬¿ ବàà¬à¬¾à¬®à¬£à¬¾ ପତàରà¬à à¬àରହଣ à¬à¬°à¬¿à¬¬à à¬à¬¿?"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:165
+msgid "The agreement was not accepted."
+msgstr "à¬à¬¹à¬¿ ବàà¬à¬¾à¬®à¬£à¬¾ ପତàରà¬à à¬àରହଣ à¬à¬°à¬¾à¬¯à¬¾à¬à¬¨à¬¾à¬¹à¬¿à¬à¥¤"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:194
+msgid "Media change required"
+msgstr "ମàଡିଠପରିବରàତàତନ à¬à¬¬à¬¶ààà¬"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:195
+msgid "Media type"
+msgstr "ମàଡିଠପàରà¬à¬¾à¬°"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:196
+msgid "Media ID"
+msgstr "ମàଡିଠID"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:197
+msgid "Text"
+msgstr "ପାଠàà"
+
+#. ask the user
+#: ../lib/packagekit-glib2/pk-task-text.c:201
+msgid "Please insert the correct media"
+msgstr "ଦàାà¬à¬°à¬¿ ସଠିଠମàଡିà¬à¬à ବାà¬à¬¨àତà"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:205
+msgid "The correct media was not inserted."
+msgstr "ସଠିଠମàଡିà¬à¬à à¬à¬°àତàତି à¬à¬°à¬¾à¬¯à¬¾à¬à¬¨à¬¾à¬¹à¬¿à¬à¥¤"
+
+#: ../lib/packagekit-glib2/pk-task-text.c:303
+msgid "The transaction did not proceed."
+msgstr "à¬à¬¾à¬°à¬¬à¬¾à¬° à¬
à¬àରସର ହàà¬à¬¨à¬¥à¬¿à¬²à¬¾à¥¤"
+
#. SECURITY:
#. - Normal users do not require admin authentication to accept new
#. licence agreements.
commit 294cbb9deb0df544e6b8d0455880f909d0b931ea
Author: Richard Hughes <richard at hughsie.com>
Date: Wed Sep 9 15:51:49 2009 +0100
trivial: sync pk-enum between glib1 and glib2
diff --git a/lib/packagekit-glib2/pk-enum.c b/lib/packagekit-glib2/pk-enum.c
index b68b0e6..5b48713 100644
--- a/lib/packagekit-glib2/pk-enum.c
+++ b/lib/packagekit-glib2/pk-enum.c
@@ -219,6 +219,7 @@ static const PkEnumMatch enum_message[] = {
{PK_MESSAGE_ENUM_CONFIG_FILES_CHANGED, "config-files-changed"},
{PK_MESSAGE_ENUM_PACKAGE_ALREADY_INSTALLED, "package-already-installed"},
{PK_MESSAGE_ENUM_AUTOREMOVE_IGNORED, "autoremove-ignored"},
+ {PK_MESSAGE_ENUM_REPO_METADATA_DOWNLOAD_FAILED, "repo-metadata-download-failed"},
{0, NULL}
};
diff --git a/lib/packagekit-glib2/pk-enum.h b/lib/packagekit-glib2/pk-enum.h
index 3b1a60f..7b9a5fe 100644
--- a/lib/packagekit-glib2/pk-enum.h
+++ b/lib/packagekit-glib2/pk-enum.h
@@ -242,6 +242,7 @@ typedef enum {
PK_MESSAGE_ENUM_CONFIG_FILES_CHANGED,
PK_MESSAGE_ENUM_PACKAGE_ALREADY_INSTALLED,
PK_MESSAGE_ENUM_AUTOREMOVE_IGNORED,
+ PK_MESSAGE_ENUM_REPO_METADATA_DOWNLOAD_FAILED,
PK_MESSAGE_ENUM_UNKNOWN
} PkMessageEnum;
commit 2d0f54233261a50aae390b50161145b72b123127
Author: Richard Hughes <richard at hughsie.com>
Date: Wed Sep 9 15:50:45 2009 +0100
glib2: include pk-version.h in the included headers
diff --git a/lib/packagekit-glib2/Makefile.am b/lib/packagekit-glib2/Makefile.am
index c4389d0..256ebe3 100644
--- a/lib/packagekit-glib2/Makefile.am
+++ b/lib/packagekit-glib2/Makefile.am
@@ -46,6 +46,7 @@ libpackagekit_glib2_include_HEADERS = \
pk-results.h \
pk-service-pack.h \
pk-task.h \
+ pk-version.h \
$(NULL)
libpackagekit_glib2_la_SOURCES = \
commit 127f27486d062365b2020f773ed97aeaa29d6f9b
Author: Richard Hughes <richard at hughsie.com>
Date: Wed Sep 9 15:23:16 2009 +0100
trivial: fix the packagekit-glib2.pc as somehow it became corrupted
diff --git a/lib/packagekit-glib2/packagekit-glib2.pc.in b/lib/packagekit-glib2/packagekit-glib2.pc.in
index ec073f4..dd2cb66 100644
--- a/lib/packagekit-glib2/packagekit-glib2.pc.in
+++ b/lib/packagekit-glib2/packagekit-glib2.pc.in
@@ -1 +1,12 @@
-../packagekit-glib/packagekit-glib.pc.in
\ No newline at end of file
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: packagekit-glib2
+Description: PackageKit is a system daemon for installing stuff.
+Version: @VERSION@
+Requires.private: dbus-1, gthread-2.0
+Requires: glib-2.0, gobject-2.0, sqlite3
+Libs: -L${libdir} -lpackagekit-glib
+Cflags: -I${includedir}/PackageKit
commit b84a27c51d12723abeb8d073e1ee8827bbd51d11
Author: Richard Hughes <richard at hughsie.com>
Date: Wed Sep 9 14:58:19 2009 +0100
trivial: fix up a few translated sections in the new code
diff --git a/client/pk-console.c b/client/pk-console.c
index 05a675c..2caba37 100644
--- a/client/pk-console.c
+++ b/client/pk-console.c
@@ -444,7 +444,7 @@ pk_console_progress_cb (PkProgress *progress, PkProgressType type, gpointer data
static void
pk_console_finished_cb (GObject *object, GAsyncResult *res, gpointer data)
{
- const PkItemErrorCode *error_item;
+ PkItemErrorCode *error_item;
PkResults *results;
GError *error = NULL;
GPtrArray *array;
@@ -458,7 +458,8 @@ pk_console_finished_cb (GObject *object, GAsyncResult *res, gpointer data)
/* get the results */
results = pk_client_generic_finish (PK_CLIENT(task), res, &error);
if (results == NULL) {
- g_print ("Failed to complete: %s\n", error->message);
+ /* TRANSLATORS: we failed to get any results, which is pretty fatal in my book */
+ g_print ("%s: %s\n", _("Fatal error"), error->message);
g_error_free (error);
goto out;
}
@@ -467,11 +468,23 @@ pk_console_finished_cb (GObject *object, GAsyncResult *res, gpointer data)
g_object_get (G_OBJECT(results), "role", &role, NULL);
exit_enum = pk_results_get_exit_code (results);
-// if (exit_enum != PK_EXIT_ENUM_CANCELLED)
-// egg_test_failed (test, "failed to cancel search: %s", pk_exit_enum_to_text (exit_enum));
+ if (exit_enum != PK_EXIT_ENUM_SUCCESS) {
+ error_item = pk_results_get_error_code (results);
+ if (error_item == NULL) {
+ /* TRANSLATORS: we failed, but there was no error set */
+ g_print ("%s: %s\n", _("Transaction failed with no error"), pk_exit_enum_to_text (exit_enum));
+ goto out;
+ }
+
+ /* TRANSLATORS: the transaction failed in a way we could not expect */
+ g_print ("%s: %s (%s)\n", _("The transaction failed"), pk_exit_enum_to_text (exit_enum), error_item->details);
+
+ /* check error code */
+ pk_item_error_code_unref (error_item);
+ goto out;
+ }
+
- /* check error code */
- error_item = pk_results_get_error_code (results);
// if (error_item->code != PK_ERROR_ENUM_TRANSACTION_CANCELLED)
// egg_test_failed (test, "failed to get error code: %i", error_item->code);
// if (g_strcmp0 (error_item->details, "The task was stopped successfully") != 0)
@@ -568,7 +581,7 @@ pk_console_install_packages (gchar **packages, GError **error)
package_ids = pk_console_resolve_packages (PK_CLIENT(task), pk_bitfield_value (PK_FILTER_ENUM_NOT_INSTALLED), packages, &error_local);
if (package_ids == NULL) {
/* TRANSLATORS: There was an error getting the list of files for the package. The detailed error follows */
- *error = g_error_new (1, 0, _("This tool could not find the available package: %s"), error_local->message);
+ *error = g_error_new (1, 0, _("This tool could not find any available package: %s"), error_local->message);
g_error_free (error_local);
ret = FALSE;
goto out;
@@ -1409,7 +1422,7 @@ main (int argc, char *argv[])
out:
if (error != NULL) {
/* TRANSLATORS: Generic failure of what they asked to do */
- g_print ("%s: %s\n", _("Command failed"), error->message);
+ g_print ("%s: %s\n", _("Command failed"), error->message);
if (retval == EXIT_SUCCESS)
retval = EXIT_FAILURE;
}
More information about the PackageKit-commit
mailing list