From 1c81f56fdefa6412bd1f3ae5f36ad3f872e25ce7 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Wed, 25 Oct 2000 21:29:11 +0000 Subject: Added option menu items to allow searching based on regular expressions. 2000-10-25 Jeffrey Stedfast * filtertypes.xml: Added option menu items to allow searching based on regular expressions. * filter-message-search.c (body_regex): New callback to match text in the body using regex. (body_contains): Modified to only match using strstr. (header_regex): New callback to match headers using regex. (header_contains): Modified to only match using strstr. svn path=/trunk/; revision=6177 --- filter/libfilter-i18n.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'filter/libfilter-i18n.h') diff --git a/filter/libfilter-i18n.h b/filter/libfilter-i18n.h index 25391215ad..c998d4ba0e 100644 --- a/filter/libfilter-i18n.h +++ b/filter/libfilter-i18n.h @@ -14,7 +14,6 @@ char *s = N_("Move to Folder"); char *s = N_("Priority"); char *s = N_("Recipients"); char *s = N_("Sender"); -char *s = N_("Source"); char *s = N_("Specific header"); char *s = N_("Stop Processing"); char *s = N_("Subject"); @@ -22,10 +21,12 @@ char *s = N_("after"); char *s = N_("before"); char *s = N_("contains"); char *s = N_("does not contain"); +char *s = N_("does not match regex"); char *s = N_("is greater than"); char *s = N_("is less than"); char *s = N_("is not"); char *s = N_("is"); +char *s = N_("matches regex"); char *s = N_("on or after"); char *s = N_("on or before"); char *s = N_("was after"); -- cgit