From 1882c07a416f02cdfcdc1b6ddf46cf5fef1b9067 Mon Sep 17 00:00:00 2001 From: stormdragon2976 Date: Mon, 5 Dec 2022 23:58:48 -0500 Subject: [PATCH] Removed gettext stuff from set-voice.sh. --- speech/set-voice.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/speech/set-voice.sh b/speech/set-voice.sh index 593c8da..f6f9cd6 100755 --- a/speech/set-voice.sh +++ b/speech/set-voice.sh @@ -113,12 +113,12 @@ menulist() { for i in "${@}" ; do menuList+=("$i" "$i") done - dialog --backtitle "$(gettext "Use the up and down arrow keys to find the option you want, then press enter to select it.")" \ + dialog --backtitle "Use the up and down arrow keys to find the option you want, then press enter to select it." \ --clear \ --extra-button \ - --extra-label "$(gettext "Test Voice")" \ + --extra-label "Test Voice" \ --no-tags \ - --menu "$(gettext "Please select one")" 0 0 0 "${menuList[@]}" --stdout + --menu "Please select one" 0 0 0 "${menuList[@]}" --stdout return $? }