diff options
-rw-r--r-- | archfi | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -12,7 +12,7 @@ # referance : https://wiki.archlinux.org/index.php/Installation_guide -apptitle="Arch Linux Fast Install (archfi) - Version: 2016.02.25.03.25.29 (GPLv3)" +apptitle="Arch Linux Fast Install (archfi) - Version: 2016.03.03.22.37.09 (GPLv3)" baseurl=https://raw.githubusercontent.com/MatMoul/archfi/master @@ -78,10 +78,10 @@ mainmenu(){ chooselanguage(){ options=() options+=("English" "(By MatMoul)") - options+=("Russian" "(By Anonymous_Prodject)") options+=("French" "(By MatMoul)") options+=("German" "(By untergrundbiber)") options+=("Hungarian" "(By KardiWeb)") + options+=("Russian" "(By Anonymous_Prodject)") sel=$(whiptail --backtitle "$apptitle" --title "$txtlanguage" --menu "" 0 0 0 \ "${options[@]}" \ 3>&1 1>&2 2>&3) @@ -90,6 +90,9 @@ chooselanguage(){ if [ "$sel" = "English" ]; then loadstrings else + case $sel in + "Russian") eval $(setfont cyr-sun16);; + esac eval $(curl -L $baseurl/lng/$sel | sed '/^#/ d') fi fi |