We have a couple of strings that are missing the gettext call.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
if (sysinfo->n_interfaces) {
line(NULL);
- line("Network interfaces");
+ line(_("Network interfaces"));
}
for (i = 0; i < sysinfo->n_interfaces; i++) {
line("%s:", info->name);
line(_(" MAC: %s"), macbuf);
- line(_(" link: %s"), info->link ? "up" : "down");
+ /* TRANSLATORS: these "up" / "down" strings refer to the
+ * link status for a network connection. */
+ line(_(" link: %s"), info->link ? _("up") : _("down"));
line(NULL);
}