Hello, I am from Latin America, therefore in my installations I need to install the voices in Spanish, the mod-say-es and lang-es .
I was able to install freeswitch-lang-es and freeswitch-sounds-es-ar-mario with:
#!/bin/bash
apt-get update && apt-get install -y gnupg2 wget lsb-release
wget --http-user=signalwire --http-password=pat_PERSONAL -O /usr/share/keyrings/signalwire-freeswitch-repo.gpg https://freeswitch.signalwire.com/repo/deb/debian-release/signalwire-freeswitch-repo.gpg
echo "machine freeswitch.signalwire.com login signalwire password pat_PERSONAL" > /etc/apt/auth.conf
echo "deb [signed-by=/usr/share/keyrings/signalwire-freeswitch-repo.gpg] https://freeswitch.signalwire.com/repo/deb/debian-release/ bullseye main" > /etc/apt/sources.list.d/freeswitch.list
echo "deb-src [signed-by=/usr/share/keyrings/signalwire-freeswitch-repo.gpg] https://freeswitch.signalwire.com/repo/deb/debian-release/ bullseye main" >> /etc/apt/sources.list.d/freeswitch.list
apt-get update && apt-get install -y freeswitch-lang-es freeswitch-sounds-es-ar-mario
but I can't install freeswitch-say-es, which is necessary to be able to inform the user for example to press #
any idea to fix the problem is welcome, thanks
SO: Ubuntu 20.04

I was able to install freeswitch-lang-es and freeswitch-sounds-es-ar-mario with:
#!/bin/bash
apt-get update && apt-get install -y gnupg2 wget lsb-release
wget --http-user=signalwire --http-password=pat_PERSONAL -O /usr/share/keyrings/signalwire-freeswitch-repo.gpg https://freeswitch.signalwire.com/repo/deb/debian-release/signalwire-freeswitch-repo.gpg
echo "machine freeswitch.signalwire.com login signalwire password pat_PERSONAL" > /etc/apt/auth.conf
echo "deb [signed-by=/usr/share/keyrings/signalwire-freeswitch-repo.gpg] https://freeswitch.signalwire.com/repo/deb/debian-release/ bullseye main" > /etc/apt/sources.list.d/freeswitch.list
echo "deb-src [signed-by=/usr/share/keyrings/signalwire-freeswitch-repo.gpg] https://freeswitch.signalwire.com/repo/deb/debian-release/ bullseye main" >> /etc/apt/sources.list.d/freeswitch.list
apt-get update && apt-get install -y freeswitch-lang-es freeswitch-sounds-es-ar-mario
but I can't install freeswitch-say-es, which is necessary to be able to inform the user for example to press #
any idea to fix the problem is welcome, thanks
SO: Ubuntu 20.04

Last edited: