summaryrefslogtreecommitdiff
path: root/daemon/gvfsbackendftp.c
diff options
context:
space:
mode:
authorPiotr Drąg <piotrdrag@gmail.com>2016-09-30 01:39:16 +0200
committerOndrej Holy <oholy@redhat.com>2016-10-03 16:18:37 +0200
commit9f6ade7fff7f57fe95c7a5c55c9335c6ef849230 (patch)
treea1abb347748f14eafef03ff75ef89dd9e33d0a82 /daemon/gvfsbackendftp.c
parent2f28fa49cfeb1c82927a1c7c0021b15e2742149f (diff)
downloadgvfs-9f6ade7fff7f57fe95c7a5c55c9335c6ef849230.tar.gz
Use Unicode in translatable strings
See https://developer.gnome.org/hig/stable/typography.html https://bugzilla.gnome.org/show_bug.cgi?id=772219
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 2b758e6d..4fcbc65f 100644
--- a/daemon/gvfsbackendftp.c
+++ b/daemon/gvfsbackendftp.c
@@ -775,7 +775,7 @@ error_550_permission_or_not_found (GVfsFtpTask *task, gpointer file)
g_set_error_literal (&task->error,
G_IO_ERROR,
G_IO_ERROR_NOT_FOUND,
- _("File doesn't exist"));
+ _("File doesn’t exist"));
}
}
@@ -1169,7 +1169,7 @@ do_query_info (GVfsBackend *backend,
g_set_error_literal (&task.error,
G_IO_ERROR,
G_IO_ERROR_NOT_FOUND,
- _("File doesn't exist"));
+ _("File doesn’t exist"));
}
g_vfs_ftp_task_done (&task);
@@ -1589,7 +1589,7 @@ do_pull_improve_error_message (GVfsFtpTask *task,
if (file_type == G_FILE_TYPE_DIRECTORY)
{
g_set_error_literal (&task->error, G_IO_ERROR, G_IO_ERROR_WOULD_MERGE,
- _("Can't copy directory over directory"));
+ _("Can’t copy directory over directory"));
return;
}
/* continue to would_recurse error */
@@ -1612,7 +1612,7 @@ do_pull_improve_error_message (GVfsFtpTask *task,
}
g_set_error_literal (&task->error, G_IO_ERROR, G_IO_ERROR_WOULD_RECURSE,
- _("Can't recursively copy directory"));
+ _("Can’t recursively copy directory"));
}
}