From 9da23371d53983be191bae35d29876775d5bf885 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 05f7a214..af268e43 100644 --- a/src/cryptsetup.c +++ b/src/cryptsetup.c @@ -1294,8 +1294,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 (ARG_SET(OPT_HEADER_ID) && stat(ARG_STR(OPT_HEADER_ID), &st) < 0 && errno == ENOENT) { if (!ARG_SET(OPT_BATCH_MODE_ID) && - !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.");