talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 482e58b51917866b26a5bf6f29a079defb4d6a42
parent 4d5c99e167ba30148b64be8f362d41644bdd1c2f
Author: Paul Mangan <paul@claws-mail.org>
Date:   Sat,  9 Apr 2011 21:00:42 +0000

2011-04-09 [paul]	3.7.9cvs1

	* src/prefs_summaries.c
		fix typo in string. (thanks, Brad!)

Diffstat:
MChangeLog | 5+++++
MPATCHSETS | 1+
Mconfigure.ac | 2+-
Msrc/prefs_summaries.c | 2+-
4 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,8 @@ +2011-04-09 [paul] 3.7.9cvs1 + + * src/prefs_summaries.c + fix typo in string. (thanks, Brad!) + 2011-04-09 [paul] 3.7.9 * NEWS * README diff --git a/PATCHSETS b/PATCHSETS @@ -4152,3 +4152,4 @@ ( cvs diff -u -r 1.12.2.64 -r 1.12.2.65 src/action.c; ) > 3.7.8cvs76.patchset ( cvs diff -u -r 1.2.2.43 -r 1.2.2.44 src/gtk/filesel.c; ) > 3.7.8cvs77.patchset ( cvs diff -u -r 1.9.2.20 -r 1.9.2.21 po/cs.po; cvs diff -u -r 1.60.2.62 -r 1.60.2.63 po/es.po; cvs diff -u -r 1.1.2.26 -r 1.1.2.27 po/fi.po; cvs diff -u -r 1.42.2.53 -r 1.42.2.54 po/fr.po; cvs diff -u -r 1.1.2.2 -r 1.1.2.3 po/lt.po; cvs diff -u -r 1.50.2.40 -r 1.50.2.41 po/pt_BR.po; cvs diff -u -r 1.2.2.31 -r 1.2.2.32 po/sk.po; cvs diff -u -r 1.1.2.2 -r 1.1.2.3 po/uk.po; ) > 3.7.8cvs78.patchset +( cvs diff -u -r 1.1.2.65 -r 1.1.2.66 src/prefs_summaries.c; ) > 3.7.9cvs1.patchset diff --git a/configure.ac b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=7 MICRO_VERSION=9 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=0 +EXTRA_VERSION=1 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/prefs_summaries.c b/src/prefs_summaries.c @@ -148,7 +148,7 @@ static GtkWidget *date_format_create(GtkButton *button, void *data) GtkTreeViewColumn *column; GtkTreeSelection *selection; - time_format[0].txt = _("the full abbreviated weekday name"); + time_format[0].txt = _("the abbreviated weekday name"); time_format[1].txt = _("the full weekday name"); time_format[2].txt = _("the abbreviated month name"); time_format[3].txt = _("the full month name");