mirror of
https://github.com/moparisthebest/pacman
synced 2025-01-08 12:28:00 -05:00
scripts/makepkg.in: Add gettext translation for WARNING and ERROR.
Signed-off-by: Andrew Fyfe <andrew@neptune-one.net>
This commit is contained in:
parent
a78ad0d38d
commit
f32292367a
@ -88,18 +88,18 @@ msg2() {
|
||||
warning() {
|
||||
local mesg=$1; shift
|
||||
if [ ! "$USE_COLOR" = "n" -a "$(check_buildenv color)" = "y" ]; then
|
||||
printf "\033[1;33m==> WARNING:\033[1;37m ${mesg}\033[0m\n" "$@" >&2
|
||||
printf "\033[1;33m==> $(gettext "WARNING:")\033[1;37m ${mesg}\033[0m\n" "$@" >&2
|
||||
else
|
||||
printf "==> WARNING: ${mesg}\n" "$@" >&2
|
||||
printf "==> $(gettext "WARNING:") ${mesg}\n" "$@" >&2
|
||||
fi
|
||||
}
|
||||
|
||||
error() {
|
||||
local mesg=$1; shift
|
||||
if [ ! "$USE_COLOR" = "n" -a "$(check_buildenv color)" = "y" ]; then
|
||||
printf "\033[1;31m==> ERROR:\033[1;37m ${mesg}\033[0m\n" "$@" >&2
|
||||
printf "\033[1;31m==> $(gettext "ERROR:")\033[1;37m ${mesg}\033[0m\n" "$@" >&2
|
||||
else
|
||||
printf "==> ERROR: ${mesg}\n" "$@" >&2
|
||||
printf "==> $(gettext "ERROR:") ${mesg}\n" "$@" >&2
|
||||
fi
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user