aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/nntp/camel-nntp-store.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-10-24 13:23:27 +0800
committerDan Winship <danw@src.gnome.org>2000-10-24 13:23:27 +0800
commit360675f54b51d53ac99409077f2d31d96284fb9b (patch)
tree265d70af032473fbdf08d04695ed2a9b3c5b4a34 /camel/providers/nntp/camel-nntp-store.c
parentbabd37f2f7b43ea61df0d320ac7344d18debae72 (diff)
downloadgsoc2013-evolution-360675f54b51d53ac99409077f2d31d96284fb9b.tar
gsoc2013-evolution-360675f54b51d53ac99409077f2d31d96284fb9b.tar.gz
gsoc2013-evolution-360675f54b51d53ac99409077f2d31d96284fb9b.tar.bz2
gsoc2013-evolution-360675f54b51d53ac99409077f2d31d96284fb9b.tar.lz
gsoc2013-evolution-360675f54b51d53ac99409077f2d31d96284fb9b.tar.xz
gsoc2013-evolution-360675f54b51d53ac99409077f2d31d96284fb9b.tar.zst
gsoc2013-evolution-360675f54b51d53ac99409077f2d31d96284fb9b.zip
lots of i18n fixes
svn path=/trunk/; revision=6143
Diffstat (limited to 'camel/providers/nntp/camel-nntp-store.c')
-rw-r--r--camel/providers/nntp/camel-nntp-store.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/camel/providers/nntp/camel-nntp-store.c b/camel/providers/nntp/camel-nntp-store.c
index 0cd37b29de..9bc59e7150 100644
--- a/camel/providers/nntp/camel-nntp-store.c
+++ b/camel/providers/nntp/camel-nntp-store.c
@@ -223,7 +223,7 @@ nntp_store_connect (CamelService *service, CamelException *ex)
if (!ensure_news_dir_exists(store)) {
camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM,
- "Could not open directory for news server: %s",
+ _("Could not open directory for news server: %s"),
strerror (errno));
return FALSE;
}
@@ -284,15 +284,15 @@ nntp_store_get_name (CamelService *service, gboolean brief)
if (brief)
return g_strdup_printf ("%s", service->url->host);
else
- return g_strdup_printf ("USENET News via %s", service->url->host);
+ return g_strdup_printf (_("USENET News via %s"), service->url->host);
}
static CamelServiceAuthType password_authtype = {
- "Password",
+ N_("Password"),
- "This option will authenticate with the NNTP server using a "
- "plaintext password.",
+ N_("This option will authenticate with the NNTP server using a "
+ "plaintext password."),
"",
TRUE
@@ -330,7 +330,7 @@ nntp_store_get_folder (CamelStore *store, const gchar *folder_name,
if (!nntp_store->newsrc) {
camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
- "Unable to open or create .newsrc file for %s: %s",
+ _("Unable to open or create .newsrc file for %s: %s"),
CAMEL_SERVICE(store)->url->host,
strerror(errno));
return NULL;
@@ -496,7 +496,7 @@ nntp_store_get_folder_info (CamelStore *store, const char *top,
if (!nntp_store->newsrc) {
camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
- "Unable to open or create .newsrc file for %s: %s",
+ _("Unable to open or create .newsrc file for %s: %s"),
CAMEL_SERVICE(store)->url->host,
strerror(errno));
return NULL;