[gnome-packagekit/gnome-3-2] Mark the '32-bit' and '64-bit' strings as translatable
- From: Richard Hughes <rhughes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-packagekit/gnome-3-2] Mark the '32-bit' and '64-bit' strings as translatable
- Date: Tue, 18 Oct 2011 15:59:56 +0000 (UTC)
commit 2aa1fa2c901b80ddb3425552bbee27b9f8c31360
Author: Richard Hughes <richard hughsie com>
Date: Tue Oct 18 10:34:04 2011 +0100
Mark the '32-bit' and '64-bit' strings as translatable
Resolves https://bugzilla.gnome.org/show_bug.cgi?id=662033
src/gpk-common.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/src/gpk-common.c b/src/gpk-common.c
index d374270..fd33a02 100644
--- a/src/gpk-common.c
+++ b/src/gpk-common.c
@@ -292,13 +292,15 @@ gpk_get_pretty_arch (const gchar *arch)
/* 32 bit */
if (g_str_has_prefix (arch, "i")) {
- id = "32-bit";
+ /* TRANSLATORS: a 32 bit package */
+ id = _("32-bit");
goto out;
}
/* 64 bit */
if (g_str_has_suffix (arch, "64")) {
- id = "64-bit";
+ /* TRANSLATORS: a 64 bit package */
+ id = _("64-bit");
goto out;
}
out:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]