summaryrefslogtreecommitdiff
path: root/daemon/gvfsbackendftp.c
diff options
context:
space:
mode:
authorFriedel Wolff <friedel@translate.org.za>2011-08-24 16:47:11 +0200
committerFriedel Wolff <friedel@translate.org.za>2011-08-24 16:47:11 +0200
commite9538c0c6313b5a995b399291e09f6ef92b58d44 (patch)
tree81faed0b7d9369f56b0c02069252d7c6118b3eab /daemon/gvfsbackendftp.c
parentb76c3e8053a44b971c5fc8b6ff9d5adfb6557eb5 (diff)
downloadgvfs-e9538c0c6313b5a995b399291e09f6ef92b58d44.tar.gz
Always write (S)FTP in capitals.
https://bugzilla.gnome.org/show_bug.cgi?id=629116
Diffstat (limited to 'daemon/gvfsbackendftp.c')
-rw-r--r--daemon/gvfsbackendftp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/daemon/gvfsbackendftp.c b/daemon/gvfsbackendftp.c
index a715ec4d..f8514a30 100644
--- a/daemon/gvfsbackendftp.c
+++ b/daemon/gvfsbackendftp.c
@@ -485,10 +485,10 @@ restart:
{
if (ftp->has_initial_user)
/* Translators: the first %s is the username, the second the host name */
- prompt = g_strdup_printf (_("Enter password for ftp as %s on %s"), ftp->user, ftp->host_display_name);
+ prompt = g_strdup_printf (_("Enter password for FTP as %s on %s"), ftp->user, ftp->host_display_name);
else
/* translators: %s here is the hostname */
- prompt = g_strdup_printf (_("Enter password for ftp on %s"), ftp->host_display_name);
+ prompt = g_strdup_printf (_("Enter password for FTP on %s"), ftp->host_display_name);
}
flags = G_ASK_PASSWORD_NEED_PASSWORD;
@@ -627,11 +627,11 @@ try_login:
g_mount_spec_set (mount_spec, "user", ftp->user);
if (g_str_equal (ftp->user, "anonymous"))
- display_name = g_strdup_printf (_("ftp on %s"), ftp->host_display_name);
+ display_name = g_strdup_printf (_("FTP on %s"), ftp->host_display_name);
else
{
/* Translators: the first %s is the username, the second the host name */
- display_name = g_strdup_printf (_("ftp as %s on %s"), ftp->user, ftp->host_display_name);
+ display_name = g_strdup_printf (_("FTP as %s on %s"), ftp->user, ftp->host_display_name);
}
g_vfs_backend_set_mount_spec (backend, mount_spec);
g_mount_spec_unref (mount_spec);