aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/local
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-08-28 03:26:46 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-08-28 03:26:46 +0800
commit195c847106a571d00c82850e6105e698f850b7c2 (patch)
treecf101f32d4bb5bb5b83c628f5c520710e2134f09 /camel/providers/local
parent0a99920bfe76c0bf656cf74c81da9d4533e18d08 (diff)
downloadgsoc2013-evolution-195c847106a571d00c82850e6105e698f850b7c2.tar
gsoc2013-evolution-195c847106a571d00c82850e6105e698f850b7c2.tar.gz
gsoc2013-evolution-195c847106a571d00c82850e6105e698f850b7c2.tar.bz2
gsoc2013-evolution-195c847106a571d00c82850e6105e698f850b7c2.tar.lz
gsoc2013-evolution-195c847106a571d00c82850e6105e698f850b7c2.tar.xz
gsoc2013-evolution-195c847106a571d00c82850e6105e698f850b7c2.tar.zst
gsoc2013-evolution-195c847106a571d00c82850e6105e698f850b7c2.zip
Changed the description/names of some of the local providers to try and
2001-08-27 Jeffrey Stedfast <fejj@ximian.com> * providers/local/camel-local-provider.c: Changed the description/names of some of the local providers to try and clarify the meanings. * providers/pop3/camel-pop3-provider.c: Simplify the POP description - we want short but sweet. * providers/imap/camel-imap-provider.c: s/IMAPv4/IMAP svn path=/trunk/; revision=12486
Diffstat (limited to 'camel/providers/local')
-rw-r--r--camel/providers/local/camel-local-provider.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/camel/providers/local/camel-local-provider.c b/camel/providers/local/camel-local-provider.c
index 2cfade5464..8a4047699f 100644
--- a/camel/providers/local/camel-local-provider.c
+++ b/camel/providers/local/camel-local-provider.c
@@ -38,7 +38,7 @@
static CamelProvider mh_provider = {
"mh",
N_("MH-format mail directories"),
- N_("For storing local mail in MH-like mail directories"),
+ N_("For storing local mail in MH-like mail directories."),
"mail",
CAMEL_PROVIDER_IS_STORAGE,
CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE,
@@ -47,8 +47,8 @@ static CamelProvider mh_provider = {
static CamelProvider mbox_provider = {
"mbox",
- N_("Standard Unix mailbox file"),
- N_("For storing local mail in standard mbox format"),
+ N_("Local delivery"),
+ N_("For retrieving local mail from standard mbox formated spools."),
"mail",
CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE,
CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE,
@@ -58,7 +58,7 @@ static CamelProvider mbox_provider = {
static CamelProvider maildir_provider = {
"maildir",
N_("Qmail maildir-format mail files"),
- N_("For storing local mail in qmail maildir directories"),
+ N_("For storing local mail in qmail maildir directories."),
"mail",
CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE,
CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE,
@@ -67,8 +67,8 @@ static CamelProvider maildir_provider = {
static CamelProvider spool_provider = {
"spool",
- N_("Unix mbox spool-format mail files"),
- N_("For storing local mail in standard Unix spool directories"),
+ N_("Standard Unix mbox spools"),
+ N_("For reading and storing local mail in standard mbox spool files."),
"mail",
CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE,
CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE,