diff options
author | Dan Winship <danw@src.gnome.org> | 2003-01-08 05:03:56 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-01-08 05:03:56 +0800 |
commit | d980a70afc7ee1977286dc9f73e8cdad6b902a9f (patch) | |
tree | 087bf589e2920bb22d3f62e6f9e024aec81c5426 /camel/camel-provider.h | |
parent | 24b6be3288062f3a32481dfb018a1b03684b1afa (diff) | |
download | gsoc2013-evolution-d980a70afc7ee1977286dc9f73e8cdad6b902a9f.tar.gz gsoc2013-evolution-d980a70afc7ee1977286dc9f73e8cdad6b902a9f.tar.zst gsoc2013-evolution-d980a70afc7ee1977286dc9f73e8cdad6b902a9f.zip |
add a "translation_domain" field. (NULL for all providers in the camel
* camel-provider.h (CamelProvider): add a "translation_domain"
field. (NULL for all providers in the camel source tree itself).
* camel-session.c (register_provider): Translate provider strings
in the correct domain
svn path=/trunk/; revision=19265
Diffstat (limited to 'camel/camel-provider.h')
-rw-r--r-- | camel/camel-provider.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/camel/camel-provider.h b/camel/camel-provider.h index 5579a8c3d7..5e2bab2ad4 100644 --- a/camel/camel-provider.h +++ b/camel/camel-provider.h @@ -176,6 +176,11 @@ typedef struct { GHashFunc url_hash; GCompareFunc url_equal; + + /* gettext translation domain (NULL for providers in the + * evolution source tree). + */ + char *translation_domain; } CamelProvider; GHashTable *camel_provider_init (void); |