Fix user and non-user facing typos

This commit is contained in:
luz paz
2022-06-29 07:17:11 -04:00
parent 033189dc42
commit 3e6142f098
86 changed files with 121 additions and 121 deletions

View File

@ -5,7 +5,7 @@
#
# (c) https://github.com/gnadelwartz, 2020
#
# DISPLAY mising strings from one langfile:
# DISPLAY missing strings from one langfile:
#
# ./compare_lang.sh module/lang/xx
#
@ -36,7 +36,7 @@ while read message
do
# skip empty lines
[ "$message" == "" ] && continue
# skip comments, __noref and log_* messsages
# skip comments, __noref and log_* messages
if [[ "$message" == "#"* ]] || [[ "$message" == "__norefs"* ]] || [[ "$message" == "log_"* ]]; then
echo "skip $message" 1>&2
continue