Fix some untranslated error messages.

This commit is contained in:
Milan Broz
2019-04-23 10:41:06 +02:00
parent 428e61253c
commit cfe2fb66ab
5 changed files with 13 additions and 13 deletions

View File

@@ -179,7 +179,7 @@ int crypt_wipe_device(struct crypt_device *cd,
goto out;
if (lseek64(devfd, offset, SEEK_SET) < 0) {
log_err(cd, "Cannot seek to device offset.");
log_err(cd, _("Cannot seek to device offset."));
r = -EINVAL;
goto out;
}
@@ -203,7 +203,7 @@ int crypt_wipe_device(struct crypt_device *cd,
r = wipe_block(cd, devfd, pattern, sf, bsize, alignment,
wipe_block_size, offset, &need_block_init);
if (r) {
log_err(cd, "Device wipe error, offset %" PRIu64 ".", offset);
log_err(cd,_("Device wipe error, offset %" PRIu64 "."), offset);
break;
}