diff --git a/spcd/bootstrap.sh b/spcd/bootstrap.sh index 2c301e0..b6eaf31 100644 --- a/spcd/bootstrap.sh +++ b/spcd/bootstrap.sh @@ -959,7 +959,7 @@ spcd_f_pm_pkg_upgrade() { # │ f │ txt │ # ╰───┴─────╯ -spcd_txt_locale() { +spcd_f_txt_locale() { local action="${1}" local chosen="${2}" set -- \ @@ -994,7 +994,7 @@ spcd_txt_locale() { fi ;; "set") - spcd_txt_locale "list" + spcd_f_txt_locale "list" spcd_split local locale long if [ -n "${chosen}" ]; then @@ -1011,7 +1011,7 @@ spcd_txt_locale() { fi done spcd_split - spcd_txt_locale "list" + spcd_f_txt_locale "list" ;; "show") local regex @@ -1319,9 +1319,9 @@ spcd_step__packages_install_locales() { spcd_step "Install" spcd_f_txt_locales "install" spcd_step "Set" - spcd_txt_locale "set" "${SPCD_TXT_LOCALE}" + spcd_f_txt_locale "set" "${SPCD_TXT_LOCALE}" spcd_step "Show" - spcd_txt_locale "show" + spcd_f_txt_locale "show" spcd_step_out }