]> git.plutz.net Git - cgilite/blobdiff - misc.sh
bugfix, default to input for missing translations
[cgilite] / misc.sh
diff --git a/misc.sh b/misc.sh
index 05a3af52385b85547a8952dd0131778e2ce73268..54c3dc67f68c83ed21ab45907bf295f6d0a4f2eb 100755 (executable)
--- a/misc.sh
+++ b/misc.sh
@@ -38,3 +38,20 @@ validate(){
   printf %s\\n "${value}" \
   | sed -rn "2q; /^(${regex})\$/{p;q}; a${default}"
 }
+
+invalidate(){
+  # print default if value matches regex; otherwise print value
+  value="$1"
+  regex="$(printf %s\\n "$2" \
+           | sed -r 's;(^|[^\\]+)((\\\\)+)/;\1\2\\/;g; s;(^|[^\\])/;\1\\/;g; s;(^|[^\\]+)((\\\\)+)/;\1\2\\/;g; s;(^|[^\\])/;\1\\/;g;'
+          )" # ^^ escape only unescaped slash characters for later insertion
+  default="$3"
+
+  printf %s\\n "${value}" \
+  | sed -rn "2q; /^(${regex})\$/{bd}; p;q; :d;a${default}"
+}
+
+declare -A item_name
+l10n(){
+  [ -n "${item_name[$1]+x}" ] && printf %s "$item_name[$1]" || printf %s "$1"
+}