Some people complained about the first letter of Yes/No as seen in the
online and configured column in the human readabe output being a capital
letter instead of the expected lower case letter.
So let's try to make everbody happy and convert them to lower case.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
desc->configured[cpu] ? _("Y") : _("N"));
else
snprintf(buf, bufsz,
- desc->configured[cpu] ? _("Yes") : _("No"));
+ desc->configured[cpu] ? _("yes") : _("no"));
break;
case COL_ONLINE:
if (!desc->online)
is_cpu_online(desc, cpu) ? _("Y") : _("N"));
else
snprintf(buf, bufsz,
- is_cpu_online(desc, cpu) ? _("Yes") : _("No"));
+ is_cpu_online(desc, cpu) ? _("yes") : _("no"));
break;
}
return buf;