From 1b9e358f1d7ff806c62a7170f57342dd0e2338bf Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Sun, 20 Jan 2019 23:31:21 -0500 Subject: libmakepkg: make gettext replacements more templated Making the undescore be translated is probably not something we need translators to think about. Additionally, a number of places which use the same text differ only by the variable being referenced, so simplifying the string means we can drop a redundant translation. Bonus: we save a few bytes here and there. \o/ Signed-off-by: Eli Schwartz Signed-off-by: Allan McRae --- scripts/libmakepkg/lint_pkgbuild/variable.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/libmakepkg/lint_pkgbuild/variable.sh.in b/scripts/libmakepkg/lint_pkgbuild/variable.sh.in index 1ee3c834..d19c95bc 100644 --- a/scripts/libmakepkg/lint_pkgbuild/variable.sh.in +++ b/scripts/libmakepkg/lint_pkgbuild/variable.sh.in @@ -86,7 +86,7 @@ lint_variable() { for i in ${arch_array[@]}; do if extract_function_variable "package_$pkg" "${i}_${a}" 0 out; then - error "$(gettext "%s_%s should be an array")" "$i" "$a" + error "$(gettext "%s should be an array")" "${i}_${a}" ret=1 fi done -- cgit v1.2.3-54-g00ecf