summaryrefslogtreecommitdiffhomepage
path: root/subr.rtl/rtl_platform.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-08-27 20:51:14 +0200
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-08-27 20:51:14 +0200
commitdc07baeb4b5443131e0bd7f2c5f3b506e23d74dc (patch)
treedb108f0ac5c8d568f0e13f1b98a82b0cbb45fb6d /subr.rtl/rtl_platform.subr
parent2c358983b2d80e298fdfd4f991bde9de54aa4302 (diff)
downloadmidipix_build-dc07baeb4b5443131e0bd7f2c5f3b506e23d74dc.tar.bz2
midipix_build-dc07baeb4b5443131e0bd7f2c5f3b506e23d74dc.tar.xz
Implements localised message files, pt. II.
Diffstat (limited to 'subr.rtl/rtl_platform.subr')
-rw-r--r--subr.rtl/rtl_platform.subr4
1 files changed, 2 insertions, 2 deletions
diff --git a/subr.rtl/rtl_platform.subr b/subr.rtl/rtl_platform.subr
index af3365eb..dd50852b 100644
--- a/subr.rtl/rtl_platform.subr
+++ b/subr.rtl/rtl_platform.subr
@@ -86,9 +86,9 @@ rtl_rc() {
local _nflag="${1}" _cmd="${2}"; shift 2;
case "${_nflag}" in
1) if [ "${#}" -gt 0 ]; then
- rtl_log_msg "verbose" "Command line: %s %s" "${_cmd}" "${*}";
+ rtl_log_msg "verbose" "${MSG_rtl_platform_rc1}" "${_cmd}" "${*}";
else
- rtl_log_msg "verbose" "Command line: %s" "${_cmd}";
+ rtl_log_msg "verbose" "${MSG_rtl_platform_rc2}" "${_cmd}";
fi; ;;
*) "${_cmd}" "${@}";
esac;