aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/pop3
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/pop3
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/pop3')
-rw-r--r--camel/providers/pop3/camel-pop3-provider.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/camel/providers/pop3/camel-pop3-provider.c b/camel/providers/pop3/camel-pop3-provider.c
index 6d324f6d64..695d2d1fc0 100644
--- a/camel/providers/pop3/camel-pop3-provider.c
+++ b/camel/providers/pop3/camel-pop3-provider.c
@@ -45,21 +45,20 @@ CamelProviderConfEntry pop3_conf_entries[] = {
static CamelProvider pop3_provider = {
"pop",
+
N_("POP"),
-
- N_("For connecting to POP servers. The POP protocol can also "
- "be used to retrieve mail from certain web mail providers "
- "and proprietary email systems."),
-
+
+ N_("For connecting to and downloading mail from POP servers."),
+
"mail",
-
+
CAMEL_PROVIDER_IS_REMOTE | CAMEL_PROVIDER_IS_SOURCE |
CAMEL_PROVIDER_SUPPORTS_SSL,
-
+
CAMEL_URL_NEED_USER | CAMEL_URL_NEED_HOST | CAMEL_URL_ALLOW_AUTH,
-
+
pop3_conf_entries,
-
+
/* ... */
};