* util/grub-set-default.in: Replace printf with gettext_printf (the

string in in question is already translated from grub-reboot)
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-03-05 16:31:05 +01:00
parent 559dc587f7
commit b7308f90f5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
* util/grub-set-default.in: Replace printf with gettext_printf (the
string in in question is already translated from grub-reboot)
2012-03-05 Vladimir Serbinenko <phcoder@gmail.com>
* configure.ac: Bump up the version to beta1.

View File

@ -50,7 +50,7 @@ usage () {
echo
printf " -h, --help %s\n" "$(gettext "print this message and exit")"
printf " -v, --version %s\n" "$(gettext "print the version information and exit")"
dirmsg="$(printf "expect GRUB images under the directory DIR/%s instead of the %s directory" "@grubdirname@" "$grubdir")"
dirmsg="$(gettext_printf "expect GRUB images under the directory DIR/%s instead of the %s directory" "@grubdirname@" "$grubdir")"
printf " --boot-directory=%-7s%s\n" "$(gettext "DIR")" "$dirmsg"
echo
gettext "MENU_ENTRY is a number, a menu item title or a menu item identifier."; echo