[gnome-control-center] background: Simplify the size label
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-control-center] background: Simplify the size label
- Date: Tue, 14 Dec 2010 18:59:05 +0000 (UTC)
commit 933dee47f0cc7743233a42bf3d43e3b7ac9d2394
Author: Bastien Nocera <hadess hadess net>
Date: Tue Dec 14 18:58:22 2010 +0000
background: Simplify the size label
panels/background/gnome-wp-item.c | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
---
diff --git a/panels/background/gnome-wp-item.c b/panels/background/gnome-wp-item.c
index 4939fa3..07e3bb5 100644
--- a/panels/background/gnome-wp-item.c
+++ b/panels/background/gnome-wp-item.c
@@ -284,12 +284,11 @@ void gnome_wp_item_update_size (GnomeWPItem * item) {
if (gnome_bg_has_multiple_sizes (item->bg))
item->size = g_strdup (_("multiple sizes"));
else if (item->width > 0 && item->height > 0) {
- /* translators: x pixel(s) by y pixel(s) */
- item->size = g_strdup_printf (_("%d %s by %d %s"),
+ /* translators: 100 Ã? 100px
+ * Note that this is not an "x", but U+00D7 MULTIPLICATION SIGN */
+ item->size = g_strdup_printf (_("%d \303\227 %dpx"),
item->width,
- ngettext ("pixel", "pixels", item->width),
- item->height,
- ngettext ("pixel", "pixels", item->height));
+ item->height);
} else {
item->size = g_strdup ("");
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]