languages

This commit is contained in:
Marc Beninca 2024-08-29 16:22:14 +02:00
parent d388d30d0c
commit 7c47fa31db
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 3 additions and 5 deletions

View file

@ -276,7 +276,5 @@ Handle project workflows in a unified way:
* automate versions fetching
* handle openh264 repositories
* languages
* handle different ones
* translate to french
* translate to french
* try to support nix

View file

@ -181,8 +181,8 @@ _SPCD_TXT_LANGUAGE_FRENCH="fr"
_spcd_txt_pick() {
case "${SPCD_TXT_LANGUAGE}" in
"${_SPCD_TXT_LANGUAGE_ENGLISH}") echo "${2}" ;;
"${_SPCD_TXT_LANGUAGE_FRENCH}") echo "${1}" ;;
"${_SPCD_TXT_LANGUAGE_ENGLISH}") echo "${1}" ;;
"${_SPCD_TXT_LANGUAGE_FRENCH}") echo "${2}" ;;
*) ;;
esac
}