[gnome-packagekit] Mark the '32-bit' and '64-bit' strings as translatable



commit 7fb1f9799915363f7bb1e65d0e73c57c50582cbc
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]