From 69d38f701f8a03e7bcd2ec13dd7bcc6fd5c65109 Mon Sep 17 00:00:00 2001 From: Bernhard Landauer Date: Fri, 3 Mar 2017 10:13:42 +0100 Subject: [PATCH] use translated strings, now really ;) --- bin/manjaro-architect.in | 2 +- lib/util.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/manjaro-architect.in b/bin/manjaro-architect.in index c250263..b6ab8e6 100644 --- a/bin/manjaro-architect.in +++ b/bin/manjaro-architect.in @@ -30,7 +30,7 @@ greeting menu_choice -if [[ $menu_opt == "advanced" ]]; then +if [[ $menu_opt == "$_InstAdvBase" ]]; then import ${LIBDIR}/util-menu-full.sh import ${LIBDIR}/util-desktop-full.sh main_menu_full diff --git a/lib/util.sh b/lib/util.sh index 227387c..562ac26 100644 --- a/lib/util.sh +++ b/lib/util.sh @@ -302,8 +302,8 @@ greeting() { # Choose between the compact and extended installer menu menu_choice() { DIALOG "$_ChMenu" --no-cancel --radiolist "\n$_ChMenuBody\n\n$_UseSpaceBar" 0 0 2 \ - "regular" "" on \ - "advanced" "" off 2>${ANSWER} + "$_InstStandBase" "" on \ + "$_InstAdvBase" "" off 2>${ANSWER} menu_opt=$(cat ${ANSWER}) }