Mark strings for translation and add remaining ones to exclude list.

This commit is contained in:
Vladimir Serbinenko 2013-12-18 06:50:24 +01:00
parent ee4450eb6f
commit 636977b089
15 changed files with 257 additions and 34 deletions

View file

@ -673,19 +673,19 @@ grub_cmd_list_dns (struct grub_command *cmd __attribute__ ((unused)),
switch (dns_servers[i].option)
{
case DNS_OPTION_IPV4:
strtype = "only ipv4";
strtype = _("only ipv4");
break;
case DNS_OPTION_IPV6:
strtype = "only ipv6";
strtype = _("only ipv6");
break;
case DNS_OPTION_PREFER_IPV4:
strtype = "prefer ipv4";
strtype = _("prefer ipv4");
break;
case DNS_OPTION_PREFER_IPV6:
strtype = "prefer ipv6";
strtype = _("prefer ipv6");
break;
}