aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-component.c
diff options
context:
space:
mode:
authorRodney Dawes <dobey@novell.com>2004-06-17 05:41:52 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-06-17 05:41:52 +0800
commitfc121328c9bb32c37ad00359b1e88de5aa0c8784 (patch)
tree34d9e9fda2cad895f4eff9070547cd0a4ebaa8af /mail/mail-component.c
parenta15b31ff5b4c2a9737e290d6bde3e7620757b729 (diff)
downloadgsoc2013-evolution-fc121328c9bb32c37ad00359b1e88de5aa0c8784.tar
gsoc2013-evolution-fc121328c9bb32c37ad00359b1e88de5aa0c8784.tar.gz
gsoc2013-evolution-fc121328c9bb32c37ad00359b1e88de5aa0c8784.tar.bz2
gsoc2013-evolution-fc121328c9bb32c37ad00359b1e88de5aa0c8784.tar.lz
gsoc2013-evolution-fc121328c9bb32c37ad00359b1e88de5aa0c8784.tar.xz
gsoc2013-evolution-fc121328c9bb32c37ad00359b1e88de5aa0c8784.tar.zst
gsoc2013-evolution-fc121328c9bb32c37ad00359b1e88de5aa0c8784.zip
Include gtk[hv]box.h so we can use them (emfp_dialog_got_folder): Fix the
2004-06-16 Rodney Dawes <dobey@novell.com> * em-folder-properties.c: Include gtk[hv]box.h so we can use them (emfp_dialog_got_folder): Fix the border widths and spacings for the internal widgets and the dialog's vbox and action area to be compliant with the HIG Fix the general layout of the dialog to be HIG-compliant as well Use ngettext for the row labels for number of messages Add a cancel button, since we are not instant-apply Align the message counts to the right Part of this patch is from Christian Neumair <chris@gnome-de.org> * mail-component.c (view_changed_cb): Fix a typo for the sent folder send is not a pluralization of sent svn path=/trunk/; revision=26369
Diffstat (limited to 'mail/mail-component.c')
-rw-r--r--mail/mail-component.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-component.c b/mail/mail-component.c
index da437f38fb..8a72dbba4d 100644
--- a/mail/mail-component.c
+++ b/mail/mail-component.c
@@ -493,7 +493,7 @@ view_changed_cb(EMFolderView *emfv, EInfoLabel *el)
if (bits == 1)
g_string_append_printf(tmp, ngettext ("%d draft", "%d drafts", visible), visible);
else if (bits == 2)
- g_string_append_printf(tmp, ngettext ("%d sent", "%d send", visible), visible);
+ g_string_append_printf(tmp, ngettext ("%d sent", "%d sent", visible), visible);
else if (bits == 4)
g_string_append_printf(tmp, ngettext ("%d unsent", "%d unsent", visible), visible);
else {