|
|
@ -9,7 +9,9 @@
|
|
|
|
# If no language codes are specified then all languages will be checked
|
|
|
|
# If no language codes are specified then all languages will be checked
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
[ -d "Marlin" ] && cd "Marlin"
|
|
|
|
LANGHOME="Marlin/src/lcd/language"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[ -d $LANGHOME ] && cd $LANGHOME
|
|
|
|
|
|
|
|
|
|
|
|
FILES=$(ls language_*.h | grep -v -E "(_en|_test)\.h" | sed -E 's/language_([^\.]+)\.h/\1/')
|
|
|
|
FILES=$(ls language_*.h | grep -v -E "(_en|_test)\.h" | sed -E 's/language_([^\.]+)\.h/\1/')
|
|
|
|
declare -A STRING_MAP
|
|
|
|
declare -A STRING_MAP
|
|
|
@ -40,5 +42,8 @@ done
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
|
|
|
|
|
|
|
|
for K in $( printf "%s\n" "${!STRING_MAP[@]}" | sort ); do
|
|
|
|
for K in $( printf "%s\n" "${!STRING_MAP[@]}" | sort ); do
|
|
|
|
printf "%-35s :%s\n" "$K" "${STRING_MAP[$K]}"
|
|
|
|
case "$#" in
|
|
|
|
|
|
|
|
1 ) echo $K ;;
|
|
|
|
|
|
|
|
* ) printf "%-35s :%s\n" "$K" "${STRING_MAP[$K]}" ;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
done
|
|
|
|