[gnumeric] I18N fixing



commit f3800201e64b9a8222cdc1926f6475cbb859600c
Author: Marek Ä?ernocký <marek manet cz>
Date:   Fri Mar 11 00:12:06 2011 +0100

    I18N fixing

 src/commands.c |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/src/commands.c b/src/commands.c
index c8400f7..cfcc930 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -2030,9 +2030,13 @@ cmd_resize_colrow (WorkbookControl *wbc, Sheet *sheet,
 				: g_strdup_printf (_("Autofitting rows %s"), list->str);
 		else if (new_size >  0)
 			text = is_cols
-				? g_strdup_printf (_("Setting width of columns %s to %d pixels"),
+				? g_strdup_printf (ngettext("Setting width of columns %s to %d pixel",
+							"Setting width of columns %s to %d pixels",
+							new_size),
 						   list->str, new_size)
-				: g_strdup_printf (_("Setting height of rows %s to %d pixels"),
+				: g_strdup_printf (ngettext("Setting height of rows %s to %d pixel",
+							"Setting height of rows %s to %d pixels",
+							new_size),
 						   list->str, new_size);
 		else text = is_cols
 			     ? g_strdup_printf (



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]