From 7cb70ca7ca2f4434c7b5c6e4f6b5ac0a08920cf2 Mon Sep 17 00:00:00 2001 From: Alberto Garcia Date: Wed, 12 Mar 2008 14:31:17 +0000 Subject: [PATCH] * src/maemo/modest-msg-edit-window.c (modest_msg_edit_window_remove_attachments): Fix problem showing the plural form of emev_nc_delete_attachment Fixes NB#81015 pmo-trunk-r4302 --- src/maemo/modest-msg-edit-window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/maemo/modest-msg-edit-window.c b/src/maemo/modest-msg-edit-window.c index 3b15b43..6485d5d 100644 --- a/src/maemo/modest-msg-edit-window.c +++ b/src/maemo/modest-msg-edit-window.c @@ -2396,7 +2396,7 @@ modest_msg_edit_window_remove_attachments (ModestMsgEditWindow *window, filename = g_strdup (""); } message = g_strdup_printf (ngettext("emev_nc_delete_attachment", "emev_nc_delete_attachments", - (tny_list_get_length (att_list) == 1)), filename); + tny_list_get_length (att_list)), filename); g_free (filename); confirmation_dialog = hildon_note_new_confirmation (GTK_WINDOW (window), message); g_free (message); -- 1.7.9.5