summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-07-12 14:54:44 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-07-12 14:54:44 (EDT)
commitfea635fbc9f007fb557558d353429d25f946de64 (patch)
tree50d42e2ead199d3ba723b2c2d0c6803464c1d92c /lib
parent73de11883f989c5fc2ba1dfa2680ccc6f2d0b1bd (diff)
Internationalize the first string.
Diffstat (limited to 'lib')
-rw-r--r--lib/cmd.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cmd.sh b/lib/cmd.sh
index 4a03664..348f695 100644
--- a/lib/cmd.sh
+++ b/lib/cmd.sh
@@ -104,6 +104,6 @@ run_cmd()
if is_cmd "${cmd}"; then
"cmd_${cmd}_main" "${@}"
else
- error 1 'Command "%s" not found' "${cmd}"
+ error 1 "$(get_msg 'cmd_not_found')" "${cmd}"
fi
}