Trivial string fix.

2001-01-26  Ryan Lortie  <desrt@desrt.ca>
        * libnautilus-private/nautilus-file-operations.c:
        (handle_transfer_overwrite): Trivial string fix.
This commit is contained in:
Ryan Lortie 2005-01-26 12:25:57 +00:00 committed by Ryan Lortie
parent a71d447f0e
commit 35d0714b82
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2001-01-26 Ryan Lortie <desrt@desrt.ca>
* libnautilus-private/nautilus-file-operations.c:
(handle_transfer_overwrite): Trivial string fix.
2005-01-25 Alexander Larsson <alexl@redhat.com>
* src/file-manager/fm-directory-view.c: (cancel_activate),

View file

@ -1099,7 +1099,7 @@ handle_transfer_overwrite (const GnomeVFSXferProgressInfo *progress_info,
is_merge = target_is_dir && is_directory (progress_info->source_name);
if (is_merge) {
secondary_text = _("If you replace the existing folder, any files in it that conflicts with the files being copied will be overwritten.");
secondary_text = _("If you replace the existing folder, any files in it that conflict with the files being copied will be overwritten.");
} else {
secondary_text = _("If you replace an existing file, its contents will be overwritten.");
}