diff options
author | infirit <[email protected]> | 2014-11-19 18:26:09 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-19 21:02:22 +0100 |
commit | 9fdd4f50c9340ed86e60a90502d56e8eb060523d (patch) | |
tree | 2089082beb17a37d0461948b3ba673449ed28aff /src/fr-archive.c | |
parent | 1bc5d202f5ec978626b1827fed6728be19a385cd (diff) | |
download | engrampa-9fdd4f50c9340ed86e60a90502d56e8eb060523d.tar.bz2 engrampa-9fdd4f50c9340ed86e60a90502d56e8eb060523d.tar.xz |
Several string improvements taken from file-roller
From commits:
Improvement suggestion for string in archive properties dialog: 93c9cafc8c0e053642cae85ec29c8fc2e6e7aeb1
Improvement suggestion for string in password dialog: b2329ca509b7e1e5cb767512904657468bcd3652
Improve string in error dialog: 2479dc30e9855cefbd23aa55215316528d318430
Bad string in the error dialog 'Could not rename the file': 689fb2dd268bc38a81cfd547656d74108b17ba60
Diffstat (limited to 'src/fr-archive.c')
-rw-r--r-- | src/fr-archive.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fr-archive.c b/src/fr-archive.c index 75bfdf5..ab3e417 100644 --- a/src/fr-archive.c +++ b/src/fr-archive.c @@ -1226,7 +1226,7 @@ copy_remote_file (FrArchive *archive, if (! g_file_query_exists (archive->file, NULL)) { GError *error; - error = g_error_new (G_IO_ERROR, G_IO_ERROR_NOT_FOUND, _("The file doesn't exist")); + error = g_error_new (G_IO_ERROR, G_IO_ERROR_NOT_FOUND, _("Archive not found")); fr_archive_copy_done (archive, FR_ACTION_LOADING_ARCHIVE, error); g_error_free (error); return; |