commit 03c3293109f41697368e4e6df809690ceee52c06
parent 2281d838a9bf17c53c24787840815dfc61015f01
Author: Ricardo Mones <mones@claws-mail.org>
Date: Tue, 6 Nov 2012 22:07:41 +0000
2012-11-06 [mones] 3.8.1cvs112
* doc/man/claws-mail.1
Sync with AUTHORS file
* src/gtk/quicksearch.c
Add number units where appropriate
Diffstat:
5 files changed, 20 insertions(+), 12 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,10 @@
+2012-11-06 [mones] 3.8.1cvs112
+
+ * doc/man/claws-mail.1
+ Sync with AUTHORS file
+ * src/gtk/quicksearch.c
+ Add number units where appropriate
+
2012-10-31 [paul] 3.8.1cvs111
* src/prefs_folder_item.c
diff --git a/PATCHSETS b/PATCHSETS
@@ -4486,3 +4486,4 @@
( cvs diff -u -r 1.2.2.40 -r 1.2.2.41 src/folder_item_prefs.c; cvs diff -u -r 1.2.2.25 -r 1.2.2.26 src/folder_item_prefs.h; cvs diff -u -r 1.94.2.239 -r 1.94.2.240 src/messageview.c; cvs diff -u -r 1.52.2.88 -r 1.52.2.89 src/prefs_folder_item.c; ) > 3.8.1cvs109.patchset
( cvs diff -u -r 1.52.2.89 -r 1.52.2.90 src/prefs_folder_item.c; ) > 3.8.1cvs110.patchset
( cvs diff -u -r 1.52.2.90 -r 1.52.2.91 src/prefs_folder_item.c; ) > 3.8.1cvs111.patchset
+( cvs diff -u -r 1.1.2.11 -r 1.1.2.12 doc/man/claws-mail.1; cvs diff -u -r 1.1.2.117 -r 1.1.2.118 src/gtk/quicksearch.c; ) > 3.8.1cvs112.patchset
diff --git a/configure.ac b/configure.ac
@@ -12,7 +12,7 @@ MINOR_VERSION=8
MICRO_VERSION=1
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=111
+EXTRA_VERSION=112
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
diff --git a/doc/man/claws-mail.1 b/doc/man/claws-mail.1
@@ -386,7 +386,7 @@ You can search for existing bugs and report new ones on Claws Mail bugzilla:
.SH "COPYRIGHT"
.LP
.TP
-1999-2011 Hiroyuki Yamamoto and the Claws Mail team
+1999-2012 Hiroyuki Yamamoto and the Claws Mail team
.SH "AUTHORS"
.LP
@@ -396,8 +396,6 @@ Holger Berndt <berndth@users.sf.net>
.br
Tristan Chabredier <wwp@claws\-mail.org>
.br
-Ho\(`a Vi\(^et Dinh <hoa@users.sf.net>
-.br
Andrej Kacian <andrej@kacian.sk>
.br
Darko Koruga <darko@users.sf.net>
@@ -412,6 +410,8 @@ Salvatore De Paolis <iwkse@claws\-mail.org>
.TP
Previous team members
+Ho\(`a Vi\(^et Dinh
+.br
Keith Edmunds
.br
Match Grun
diff --git a/src/gtk/quicksearch.c b/src/gtk/quicksearch.c
@@ -430,8 +430,8 @@ static gboolean searchtype_autorun_changed(GtkMenuItem *widget, gpointer data)
*/
static gchar *search_descr_strings[] = {
"a", N_("all messages"),
- "ag #", N_("messages whose age is greater than #"),
- "al #", N_("messages whose age is less than #"),
+ "ag #", N_("messages whose age is greater than # days"),
+ "al #", N_("messages whose age is less than # days"),
"b S", N_("messages which contain S in the message body"),
"B S", N_("messages which contain S in the whole message"),
"c S", N_("messages carbon-copied to S"),
@@ -454,12 +454,12 @@ static gchar *search_descr_strings[] = {
"r", N_("messages which have been replied to"),
"R", N_("read messages"),
"s S", N_("messages which contain S in subject"),
- "se #", N_("messages whose score is equal to #"),
- "sg #", N_("messages whose score is greater than #"),
- "sl #", N_("messages whose score is lower than #"),
- "Se #", N_("messages whose size is equal to #"),
- "Sg #", N_("messages whose size is greater than #"),
- "Ss #", N_("messages whose size is smaller than #"),
+ "se #", N_("messages whose score is equal to # points"),
+ "sg #", N_("messages whose score is greater than # points"),
+ "sl #", N_("messages whose score is lower than # points"),
+ "Se #", N_("messages whose size is equal to # bytes"),
+ "Sg #", N_("messages whose size is greater than # bytes"),
+ "Ss #", N_("messages whose size is smaller than # bytes"),
"t S", N_("messages which have been sent to S"),
"tg S", N_("messages which tags contain S"),
"tagged",N_("messages which have tag(s)"),