From c9a7e6e4ecbaf93ab31a0a1810fdf72b34477e63 Mon Sep 17 00:00:00 2001 From: Ondrej Kozina Date: Tue, 8 Oct 2019 13:50:11 +0200 Subject: [PATCH] Add blkid wipe report messages to translations. --- src/utils_tools.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils_tools.c b/src/utils_tools.c index 4f7f79fb..afaefc53 100644 --- a/src/utils_tools.c +++ b/src/utils_tools.c @@ -563,10 +563,10 @@ int tools_wipe_all_signatures(const char *path) while ((pr = blk_probe(h)) < PRB_EMPTY) { if (blk_is_partition(h)) - log_verbose("Existing '%s' partition signature (offset: %" PRIi64 " bytes) on device %s will be wiped.", + log_verbose(_("Existing '%s' partition signature (offset: %" PRIi64 " bytes) on device %s will be wiped."), blk_get_partition_type(h), blk_get_offset(h), path); if (blk_is_superblock(h)) - log_verbose("Existing '%s' superblock signature (offset: %" PRIi64 " bytes) on device %s will be wiped.", + log_verbose(_("Existing '%s' superblock signature (offset: %" PRIi64 " bytes) on device %s will be wiped."), blk_get_superblock_type(h), blk_get_offset(h), path); if (blk_do_wipe(h)) { log_err(_("Failed to wipe device signature."));