From d7824df63b8661e8e79489e8d09675ab5e53c192 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Fri, 7 May 2010 18:31:19 +0000 Subject: [PATCH] Don't translate an empty string --- src/phone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phone.c b/src/phone.c index bab7d4a..a4d1064 100644 --- a/src/phone.c +++ b/src/phone.c @@ -448,7 +448,7 @@ void phone_messages_count_buffer(Phone * phone) cur_cnt = max; } snprintf(buf, sizeof(buf), _("%d message%s, %d/%d characters"), - msg_cnt, (msg_cnt > 1) ? _("s") : _(""), cur_cnt, max); + msg_cnt, (msg_cnt > 1) ? _("s") : "", cur_cnt, max); gtk_label_set_text(GTK_LABEL(phone->wr_count), buf); }