From 4a077fc2c94fb1fa136434d649c44117413cd027 Mon Sep 17 00:00:00 2001 From: Milan Broz Date: Thu, 16 Apr 2020 13:03:34 +0200 Subject: [PATCH] Rephrase warning a little bit. --- src/cryptsetup.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/cryptsetup.c b/src/cryptsetup.c index 683fd8bc..bf901bb8 100644 --- a/src/cryptsetup.c +++ b/src/cryptsetup.c @@ -1993,9 +1993,9 @@ static int luksDump_with_volume_key(struct crypt_device *cd) crypt_set_confirm_callback(cd, yesDialog, NULL); if (!yesDialog( - _("Header dump with volume key is sensitive information\n" - "which allows access to encrypted partition without passphrase.\n" - "This dump should be always stored encrypted on safe place."), + _("The header dump with volume key is sensitive information\n" + "that allows access to encrypted partition without a passphrase.\n" + "This dump should be stored encrypted in a safe place."), NULL)) return -EPERM; @@ -2064,8 +2064,8 @@ static int luksDump_with_unbound_key(struct crypt_device *cd) crypt_set_confirm_callback(cd, yesDialog, NULL); if (!yesDialog( - _("Header dump with unbound key could contain sensitive information.\n" - "This dump should be stored encrypted on safe place."), + _("The header dump with unbound key is sensitive information.\n" + "This dump should be stored encrypted in a safe place."), NULL)) return -EPERM;