From b7308f90f52e0d13e808640c04bb231a409b1d0a Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Mon, 5 Mar 2012 16:31:05 +0100 Subject: [PATCH] * util/grub-set-default.in: Replace printf with gettext_printf (the string in in question is already translated from grub-reboot) --- ChangeLog | 5 +++++ util/grub-set-default.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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