summaryrefslogtreecommitdiff
path: root/src/nautilus-file.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nautilus-file.c')
-rw-r--r--src/nautilus-file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nautilus-file.c b/src/nautilus-file.c
index d814d82e2..e662b4ca1 100644
--- a/src/nautilus-file.c
+++ b/src/nautilus-file.c
@@ -6514,7 +6514,7 @@ nautilus_file_set_owner (NautilusFile *file,
*/
nautilus_file_changed (file);
error = g_error_new (G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
- _("Specified owner '%s' doesn't exist"), user_name_or_id);
+ _("Specified owner “%s” doesn’t exist"), user_name_or_id);
(*callback)(file, NULL, error, callback_data);
g_error_free (error);
return;
@@ -6818,7 +6818,7 @@ nautilus_file_set_group (NautilusFile *file,
*/
nautilus_file_changed (file);
error = g_error_new (G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
- _("Specified group '%s' doesn't exist"), group_name_or_id);
+ _("Specified group “%s” doesn’t exist"), group_name_or_id);
(*callback)(file, NULL, error, callback_data);
g_error_free (error);
return;