aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChyla Zbigniew <chyla@src.gnome.org>2001-11-09 06:11:45 +0800
committerChyla Zbigniew <chyla@src.gnome.org>2001-11-09 06:11:45 +0800
commite50647bb5043ce279b4628e879715a545fffe980 (patch)
tree9b584fa8a219bd6463e9e669b845a0da5a863a96
parent6a46f7cb269ea39a2c8fe97c0be44a9699f4976a (diff)
downloadgsoc2013-evolution-e50647bb5043ce279b4628e879715a545fffe980.tar
gsoc2013-evolution-e50647bb5043ce279b4628e879715a545fffe980.tar.gz
gsoc2013-evolution-e50647bb5043ce279b4628e879715a545fffe980.tar.bz2
gsoc2013-evolution-e50647bb5043ce279b4628e879715a545fffe980.tar.lz
gsoc2013-evolution-e50647bb5043ce279b4628e879715a545fffe980.tar.xz
gsoc2013-evolution-e50647bb5043ce279b4628e879715a545fffe980.tar.zst
gsoc2013-evolution-e50647bb5043ce279b4628e879715a545fffe980.zip
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
-rw-r--r--widgets/table/e-table-group-container.c9
1 files changed, 5 insertions, 4 deletions
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);
}