[gnome-packagekit] Add the Simulate translations for the new daemon functionality
- From: Richard Hughes <rhughes src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnome-packagekit] Add the Simulate translations for the new daemon functionality
- Date: Mon, 24 Aug 2009 07:40:09 +0000 (UTC)
commit b137ee64547efb212f9cefd7c3520f1bf466c6fb
Author: Richard Hughes <richard hughsie com>
Date: Sun Aug 23 11:07:52 2009 +0100
Add the Simulate translations for the new daemon functionality
src/gpk-enum.c | 36 ++++++++++++++++++++++++++++++++++++
src/gpk-enum.h | 4 ++++
2 files changed, 40 insertions(+), 0 deletions(-)
---
diff --git a/src/gpk-enum.c b/src/gpk-enum.c
index 5bf44a9..c9f026b 100644
--- a/src/gpk-enum.c
+++ b/src/gpk-enum.c
@@ -167,6 +167,10 @@ static const PkEnumMatch enum_role_icon_name[] = {
{PK_ROLE_ENUM_UPDATE_PACKAGES, "pk-package-update"},
{PK_ROLE_ENUM_UPDATE_SYSTEM, "system-software-update"},
{PK_ROLE_ENUM_WHAT_PROVIDES, "pk-package-search"},
+ {PK_ROLE_ENUM_SIMULATE_INSTALL_FILES, "pk-package-add"},
+ {PK_ROLE_ENUM_SIMULATE_INSTALL_PACKAGES, "pk-package-add"},
+ {PK_ROLE_ENUM_SIMULATE_REMOVE_PACKAGES, "pk-package-delete"},
+ {PK_ROLE_ENUM_SIMULATE_UPDATE_PACKAGES, "pk-package-update"},
{0, NULL}
};
@@ -1339,6 +1343,22 @@ gpk_role_enum_to_localised_present (PkRoleEnum role)
/* TRANSLATORS: The role of the transaction, in present tense */
text = _("Getting old transactions");
break;
+ case PK_ROLE_ENUM_SIMULATE_INSTALL_FILES:
+ /* TRANSLATORS: The role of the transaction, in present tense */
+ text = _("Simulating the install");
+ break;
+ case PK_ROLE_ENUM_SIMULATE_INSTALL_PACKAGES:
+ /* TRANSLATORS: The role of the transaction, in present tense */
+ text = _("Simulating the install of files");
+ break;
+ case PK_ROLE_ENUM_SIMULATE_REMOVE_PACKAGES:
+ /* TRANSLATORS: The role of the transaction, in present tense */
+ text = _("Simulating the remove");
+ break;
+ case PK_ROLE_ENUM_SIMULATE_UPDATE_PACKAGES:
+ /* TRANSLATORS: The role of the transaction, in present tense */
+ text = _("Simulating the update");
+ break;
default:
egg_warning ("role unrecognised: %s", pk_role_enum_to_text (role));
}
@@ -1479,6 +1499,22 @@ gpk_role_enum_to_localised_past (PkRoleEnum role)
/* TRANSLATORS: The role of the transaction, in past tense */
text = _("Got old transactions");
break;
+ case PK_ROLE_ENUM_SIMULATE_INSTALL_FILES:
+ /* TRANSLATORS: The role of the transaction, in past tense */
+ text = _("Simulated the install");
+ break;
+ case PK_ROLE_ENUM_SIMULATE_INSTALL_PACKAGES:
+ /* TRANSLATORS: The role of the transaction, in past tense */
+ text = _("Simulated the install of files");
+ break;
+ case PK_ROLE_ENUM_SIMULATE_REMOVE_PACKAGES:
+ /* TRANSLATORS: The role of the transaction, in past tense */
+ text = _("Simulated the remove");
+ break;
+ case PK_ROLE_ENUM_SIMULATE_UPDATE_PACKAGES:
+ /* TRANSLATORS: The role of the transaction, in past tense */
+ text = _("Simulated the update");
+ break;
default:
egg_warning ("role unrecognised: %s", pk_role_enum_to_text (role));
}
diff --git a/src/gpk-enum.h b/src/gpk-enum.h
index beec537..703f705 100644
--- a/src/gpk-enum.h
+++ b/src/gpk-enum.h
@@ -125,6 +125,10 @@ typedef guint PkMediaTypeEnum;
#define PK_ERROR_ENUM_PACKAGE_FAILED_TO_REMOVE (PK_ERROR_ENUM_PACKAGE_FAILED_TO_INSTALL + 1)
#define PK_MESSAGE_ENUM_AUTOREMOVE_IGNORED (PK_MESSAGE_ENUM_PACKAGE_ALREADY_INSTALLED + 1)
#define PK_PROVIDES_ENUM_POSTSCRIPT_DRIVER (PK_PROVIDES_ENUM_HARDWARE_DRIVER + 1)
+#define PK_ROLE_ENUM_SIMULATE_INSTALL_FILES (PK_ROLE_ENUM_GET_OLD_TRANSACTIONS + 1)
+#define PK_ROLE_ENUM_SIMULATE_INSTALL_PACKAGES (PK_ROLE_ENUM_SIMULATE_INSTALL_FILES + 1)
+#define PK_ROLE_ENUM_SIMULATE_REMOVE_PACKAGES (PK_ROLE_ENUM_SIMULATE_INSTALL_PACKAGES + 1)
+#define PK_ROLE_ENUM_SIMULATE_UPDATE_PACKAGES (PK_ROLE_ENUM_SIMULATE_REMOVE_PACKAGES + 1)
#endif
void gpk_enum_test (gpointer data);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]