From ca5de693dc18a80ad8ce26f528d50ab114fe04cf Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 8 Sep 2024 19:42:49 +0200 Subject: [PATCH] txt/locale --- spcd/bootstrap.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 }