The "N/A" string for write pointer should be marked for translation
to support localization, following the pattern used elsewhere in
util-linux (e.g., blockdev.c).
Signed-off-by: Karel Zak <kzak@redhat.com>
if (type == BLK_ZONE_TYPE_CONVENTIONAL ||
cond == BLK_ZONE_COND_FULL)
- snprintf(wp_str, sizeof(wp_str), "N/A");
+ snprintf(wp_str, sizeof(wp_str), "%s", _("N/A"));
else
snprintf(wp_str, sizeof(wp_str),
"0x%06" PRIx64, wp - start);