From 3a29cbbf5d529bf3411e1fde7d36ea082ad3e2b9 Mon Sep 17 00:00:00 2001 From: Ondrej Kozina Date: Wed, 21 Oct 2020 11:44:44 +0200 Subject: [PATCH] Add missing translation anotation. --- src/cryptsetup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cryptsetup.c b/src/cryptsetup.c index 557056f0..ecfd072e 100644 --- a/src/cryptsetup.c +++ b/src/cryptsetup.c @@ -1256,8 +1256,8 @@ static int _luksFormat(struct crypt_device **r_cd, char **r_password, size_t *r_ /* Create header file (must contain at least one sector)? */ if (opt_header_device && stat(opt_header_device, &st) < 0 && errno == ENOENT) { if (!opt_batch_mode && - !yesDialog("Header file does not exist, do you want to create it?", - _("Operation aborted.\n"))) + !yesDialog(_("Header file does not exist, do you want to create it?"), + _("Operation aborted.\n"))) return -EPERM; log_dbg("Creating header file.");