Refine generate_mp3.sh script for better language selection

In this commit, the 'generate_mp3.sh' script has been refined to improve language selection and category order:
- Modified the 'lang_order' array to prioritize German ('de') over Spanish ('es-l') as the default language.
- Updated comments for better script documentation.

These changes aim to enhance the script's configurability and clarity, making it easier to customize language preferences and maintain the script in the long run.
This commit is contained in:
Ratatoskr 2024-02-13 20:37:55 +01:00
parent 6b20f31fc2
commit 1ce8b8eb56
Signed by: Ratatoskr
GPG Key ID: 28B77439A6D78F4E

View File

@ -13,7 +13,7 @@
export PATH=$PATH:/data/data/com.termux/files/usr/bin export PATH=$PATH:/data/data/com.termux/files/usr/bin
# Array with the desired languages in order # Array with the desired languages in order
lang_order=("es" "de" "es-l") lang_order=("de" "es-l")
category_order=("date" "time" "weather") category_order=("date" "time" "weather")
# Create Directories # Create Directories