From e50647bb5043ce279b4628e879715a545fffe980 Mon Sep 17 00:00:00 2001 From: Chyla Zbigniew Date: Thu, 8 Nov 2001 22:11:45 +0000 Subject: Fixed stupid bug (U_ macro should always take one argument). * gal/util/e-unicode-i18n.h: Fixed stupid bug (U_ macro should always take one argument). * gal/e-table/e-table-group-container.c (compute_text): s/_/U_ svn path=/trunk/; revision=14632 --- widgets/table/e-table-group-container.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'widgets') diff --git a/widgets/table/e-table-group-container.c b/widgets/table/e-table-group-container.c index 271774ba7c..6f2ef9ea35 100644 --- a/widgets/table/e-table-group-container.c +++ b/widgets/table/e-table-group-container.c @@ -30,6 +30,7 @@ #include "e-table-group-leaf.h" #include "e-table-item.h" #include "gal/util/e-util.h" +#include "gal/util/e-unicode-i18n.h" #include "gal/widgets/e-canvas.h" #include "gal/widgets/e-canvas-utils.h" #include "gal/widgets/e-unicode.h" @@ -346,14 +347,14 @@ compute_text (ETableGroupContainer *etgc, ETableGroupContainerChildNode *child_n if (etgc->ecol->text) { text = g_strdup_printf ((child_node->count == 1) - ? _("%s : %s (%d item)") - : _("%s : %s (%d items)"), + ? U_("%s : %s (%d item)") + : U_("%s : %s (%d items)"), etgc->ecol->text, child_node->string, (gint) child_node->count); } else { text = g_strdup_printf ((child_node->count == 1) - ? _("%s (%d item)") - : _("%s (%d items)"), + ? U_("%s (%d item)") + : U_("%s (%d items)"), child_node->string, (gint) child_node->count); } -- cgit