diff --git a/src/files.c b/src/files.c index 813a0eb0..459b5f98 100644 --- a/src/files.c +++ b/src/files.c @@ -1718,7 +1718,8 @@ bool make_backup_of(char *realname) return TRUE; } - statusline(HUSH, _("Cannot write backup %s: %s"), backupname, strerror(errno)); + /* TRANSLATORS: The %s is the reason of failure. */ + statusline(HUSH, _("Cannot make backup: %s"), strerror(errno)); free(backupname); return FALSE; }