diff options
-rw-r--r-- | camel/ChangeLog | 3 | ||||
-rw-r--r-- | camel/camel-session.c | 23 |
2 files changed, 26 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index c9a0946fab..1458ba8b12 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,8 @@ 2001-10-19 <NotZed@Ximian.com> + * camel-session.c (register_provider): When registering provider, + translate all strings. + * camel-vee-folder.c (camel_vee_folder_remove_folder): Lock the right lock for unmatched subfolder list stuff. If the sub folder is deleted & part of unmatched, or the last ref to the sub folder diff --git a/camel/camel-session.c b/camel/camel-session.c index 49fcc0b926..6acde1fe66 100644 --- a/camel/camel-session.c +++ b/camel/camel-session.c @@ -198,6 +198,29 @@ camel_session_construct (CamelSession *session, const char *storage_path) static void register_provider (CamelSession *session, CamelProvider *provider) { + int i; + CamelProviderConfEntry *conf; + GList *l; + + /* Translate all strings here */ + provider->name = _(provider->name); + provider->description = _(provider->description); + conf = provider->extra_conf; + if (conf) { + for (i=0;conf[i].type != CAMEL_PROVIDER_CONF_END;i++) { + if (conf[i].text) + conf[i].text = _(conf[i].text); + } + } + l = provider->authtypes; + while (l) { + CamelServiceAuthType *auth = l->data; + + auth->name = _(auth->name); + auth->description = _(auth->description); + l = l->next; + } + g_hash_table_insert (session->providers, provider->protocol, provider); } |