grub-probe: Mark a "[default=]" for translation.
This commit is contained in:
parent
ddde9ca71a
commit
afd6b6bbae
1 changed files with 5 additions and 3 deletions
|
@ -728,10 +728,12 @@ help_filter (int key, const char *text, void *input __attribute__ ((unused)))
|
||||||
|
|
||||||
case 't':
|
case 't':
|
||||||
{
|
{
|
||||||
char *ret, *t = get_targets_string ();
|
char *ret, *t = get_targets_string (), *def;
|
||||||
|
|
||||||
ret = xasprintf ("%s\n%s %s [default=%s]", _("print TARGET"),
|
def = xasprintf (_("[default=%s]"), targets[print]);
|
||||||
_("available targets:"), t, targets[print]);
|
|
||||||
|
ret = xasprintf ("%s\n%s %s %s", _("print TARGET"),
|
||||||
|
_("available targets:"), t, def);
|
||||||
free (t);
|
free (t);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue