You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 17, 2024. It is now read-only.
echo "English voice prompt text files not found in input/en. Aborting ..."
exit 1
fi
if [ x"$1" == x"" ]; then
echo "Paramter missing: locale. Aborting ..."
exit 1
fi
if [ ! -d "./input/$1" ]; then
echo "Locale directory not found in ./input/$1. Aborting ..."
exit 1
fi
LIST_LOCALE="`find ./input/$1 -type f -name "*.txt"`"
echo -e "\n\nThe following files were not found in english language and might be deprecated for this language also:\n(if they are not $1 language specific)\n"
for FILE in $LIST_LOCALE; do
BASENAME="${FILE#.*/}"
FILENAME="${BASENAME%%.*}"
FILENAME_FLAT="${FILENAME#*/}"
FILENAME_FLAT="${FILENAME_FLAT#*/}"
if [ -e input/$1/locale_specific_texts.txt ]; then