diff options
author | William Jon McCann <jmccann@redhat.com> | 2012-08-13 18:23:21 -0400 |
---|---|---|
committer | William Jon McCann <jmccann@redhat.com> | 2012-08-14 09:45:21 -0400 |
commit | 2f4c9a71d03ee420d244e5c7e1555a03858d0fdb (patch) | |
tree | 249c331a67536715c20ee18b0d9327a03d69710a /src/nautilus-error-reporting.c | |
parent | 3935384e7f1e080a6504c79e236cada9cb519c6a (diff) | |
download | nautilus-2f4c9a71d03ee420d244e5c7e1555a03858d0fdb.tar.gz |
Don't refer to folders when the view may not always be a folder
https://bugzilla.gnome.org/show_bug.cgi?id=45219
Diffstat (limited to 'src/nautilus-error-reporting.c')
-rw-r--r-- | src/nautilus-error-reporting.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nautilus-error-reporting.c b/src/nautilus-error-reporting.c index b6a162d6c..a39b989f8 100644 --- a/src/nautilus-error-reporting.c +++ b/src/nautilus-error-reporting.c @@ -80,7 +80,7 @@ nautilus_report_error_loading_directory (NautilusFile *file, message = g_strdup (error->message); } - eel_show_error_dialog (_("The folder contents could not be displayed."), message, parent_window); + eel_show_error_dialog (_("This location could not be displayed."), message, parent_window); g_free (file_name); g_free (message); @@ -201,12 +201,12 @@ nautilus_report_error_renaming_file (NautilusFile *file, if (error->domain == G_IO_ERROR) { switch (error->code) { case G_IO_ERROR_EXISTS: - message = g_strdup_printf (_("The name \"%s\" is already used in this folder. " + message = g_strdup_printf (_("The name \"%s\" is already used in this location. " "Please use a different name."), new_name_truncated); break; case G_IO_ERROR_NOT_FOUND: - message = g_strdup_printf (_("There is no \"%s\" in this folder. " + message = g_strdup_printf (_("There is no \"%s\" in this location. " "Perhaps it was just moved or deleted?"), original_name_truncated); break; |