[gnumeric] I18N fixing



commit 9530374dda6f48bd2778aad1254a4dc50eee5d66
Author: Marek Ä?ernocký <marek manet cz>
Date:   Fri Mar 11 00:06:36 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 05ef4a8..c8400f7 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -2010,9 +2010,13 @@ cmd_resize_colrow (WorkbookControl *wbc, Sheet *sheet,
 				: g_strdup_printf (_("Autofitting row %s"), list->str);
 		else if (new_size >  0)
 			text = is_cols
-				? g_strdup_printf (_("Setting width of column %s to %d pixels"),
+				? g_strdup_printf (ngettext ("Setting width of column %s to %d pixel",
+							"Setting width of column %s to %d pixels",
+							new_size),
 						   list->str, new_size)
-				: g_strdup_printf (_("Setting height of row %s to %d pixels"),
+				: g_strdup_printf (ngettext ("Setting height of row %s to %d pixel",
+							"Setting height of row %s to %d pixels",
+							new_size),
 						   list->str, new_size);
 		else text = is_cols
 			     ? g_strdup_printf (_("Setting width of column %s to default"),



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