From: Vladimir 'phcoder' Serbinenko Date: Mon, 5 Mar 2012 15:31:05 +0000 (+0100) Subject: * util/grub-set-default.in: Replace printf with gettext_printf (the X-Git-Tag: 2.00~422 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b7308f90f52e0d13e808640c04bb231a409b1d0a;p=thirdparty%2Fgrub.git * util/grub-set-default.in: Replace printf with gettext_printf (the string in in question is already translated from grub-reboot) --- diff --git a/ChangeLog b/ChangeLog index 02095f25f..cc2cc2580 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-03-05 Vladimir Serbinenko + + * 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 * configure.ac: Bump up the version to beta1. diff --git a/util/grub-set-default.in b/util/grub-set-default.in index 2125b4586..7fedb5941 100644 --- a/util/grub-set-default.in +++ b/util/grub-set-default.in @@ -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