diff --git a/tui/locales/en-us/misc.sh b/tui/locales/en-us/misc.sh index e7e53ff5..40f2370f 100644 --- a/tui/locales/en-us/misc.sh +++ b/tui/locales/en-us/misc.sh @@ -2,5 +2,7 @@ CANCEL_BUTTON="Cancel" OK_BUTTON="Next" +YES_BUTTON="Yes" +NO_BUTTON="No" -export CANCEL_BUTTON OK_BUTTON +export CANCEL_BUTTON OK_BUTTON YES_BUTTON NO_BUTTON diff --git a/tui/locales/en-us/summary.sh b/tui/locales/en-us/summary.sh index ece45832..2dd98d20 100644 --- a/tui/locales/en-us/summary.sh +++ b/tui/locales/en-us/summary.sh @@ -7,7 +7,7 @@ You are almost done, here is a summary of choices you made to install Open Voice - Version: $CHANNEL - Profile: $PROFILE - GUI: $FEATURE_GUI - - Skills $FEATURE_SKILLS + - Skills $FEATURE_SKILLS - Tuning: $TUNING The choices made during the Open Voice OS installation process have been carefully considered to tailor our system to your unique needs and preferences. diff --git a/tui/locales/fr-fr/misc.sh b/tui/locales/fr-fr/misc.sh index 550dd90a..444a02e7 100644 --- a/tui/locales/fr-fr/misc.sh +++ b/tui/locales/fr-fr/misc.sh @@ -2,5 +2,7 @@ CANCEL_BUTTON="Annuler" OK_BUTTON="Suivant" +YES_BUTTON="Oui" +NO_BUTTON="Non" -export CANCEL_BUTTON OK_BUTTON INSTALL_SUCCESS INSTALL_FAILED ANSIBLE_START +export CANCEL_BUTTON OK_BUTTON YES_BUTTON NO_BUTTON diff --git a/tui/locales/fr-fr/summary.sh b/tui/locales/fr-fr/summary.sh index a208a80f..9aa1c8f4 100644 --- a/tui/locales/fr-fr/summary.sh +++ b/tui/locales/fr-fr/summary.sh @@ -7,7 +7,7 @@ Vous y êtes presque! Voici un résumé des choix que vous avez effectués pour - Canal de déployment: $CHANNEL - Profil d'installation: $PROFILE - Interface graphique: $FEATURE_GUI - - Compétences par défaut $FEATURE_SKILLS + - Compétences par défaut $FEATURE_SKILLS - Réglages Raspberry Pi: $TUNING Les choix effectués lors du processus d'installation d'Open Voice OS ont été soigneusement étudiés pour adapter notre système à vos besoins et préférences. diff --git a/tui/summary.sh b/tui/summary.sh index 1fd75380..1fc61f22 100644 --- a/tui/summary.sh +++ b/tui/summary.sh @@ -3,7 +3,7 @@ # shellcheck source=locales/en-us/summary.sh source "tui/locales/$LOCALE/summary.sh" -whiptail --yesno --defaultno --no-button "$CANCEL_BUTTON" --yes-button "$OK_BUTTON" --title "$TITLE" "$CONTENT" 25 80 +whiptail --yesno --defaultno --no-button "$NO_BUTTON" --yes-button "$YES_BUTTON" --title "$TITLE" "$CONTENT" 25 80 exit_status=$? if [ "$exit_status" -eq 1 ]; then diff --git a/tui/telemetry.sh b/tui/telemetry.sh index 675f0b51..c94bd92e 100644 --- a/tui/telemetry.sh +++ b/tui/telemetry.sh @@ -5,7 +5,7 @@ export SHARE_TELEMETRY="true" # shellcheck source=locales/en-us/telemetry.sh source "tui/locales/$LOCALE/telemetry.sh" -whiptail --yesno --no-button "$CANCEL_BUTTON" --yes-button "$OK_BUTTON" --title "$TITLE" "$CONTENT" 25 80 +whiptail --yesno --no-button "$NO_BUTTON" --yes-button "$YES_BUTTON" --title "$TITLE" "$CONTENT" 25 80 exit_status=$? if [ "$exit_status" -eq 1 ]; then diff --git a/tui/uninstall.sh b/tui/uninstall.sh index 16d804b5..cfdf95e3 100644 --- a/tui/uninstall.sh +++ b/tui/uninstall.sh @@ -8,7 +8,7 @@ source "tui/locales/$LOCALE/misc.sh" # shellcheck source=locales/en-us/uninstall.sh source "tui/locales/$LOCALE/uninstall.sh" -whiptail --yesno --defaultno --no-button "$CANCEL_BUTTON" --yes-button "$OK_BUTTON" --title "$TITLE" "$CONTENT" 25 80 +whiptail --yesno --defaultno --no-button "$NO_BUTTON" --yes-button "$YES_BUTTON" --title "$TITLE" "$CONTENT" 25 80 exit_status=$? if [ "$exit_status" -eq 1 ]; then