__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
#!/bin/sh -pe

lang=$1
validated_language=

test -n "$lang" || exit 1

langtoolsdir=/usr/share/language-tools

#
# discard possible fallback languages
#
lang=${lang%%:*}

#
# remove possible encoding part
#
if [ $lang != ${lang%.utf8*} ]; then
    lang=${lang%.*}${lang#*.utf8}
elif [ $lang != ${lang%.UTF-8*} ]; then
    lang=${lang%.*}${lang#*.UTF-8}
fi

#
# make sure that the output is a valid language option
#
options=$( $langtoolsdir/language-options )

# exact match
for opt in $options; do
    if [ $opt = $lang ]; then
        validated_language=$lang
        break
    fi
done

if [ -z "$validated_language" ]; then
    langcode=${lang%%[_@]*}

    # try the "main" country code if any
    main_country=
    is_variant=false
    while read line; do
        if [ "${line%%[[:space:]]*}" = $langcode ]; then
            main_country=${line##*[[:space:]]}
            if [ $lang != ${lang#*@} ]; then
                main_country=$main_country@${lang#*@}
                is_variant=true
            fi
            break
        fi
    done < $langtoolsdir/main-countries
    if [ -n "$main_country" ]; then
        for opt in $options; do
            if [ $main_country = $opt ]; then
                validated_language=$main_country
                break
            fi
        done
    fi

    # try out fitting language option without paying regard to
    # country code
    if [ -z "$validated_language" ]; then
        for opt in $options; do
            if [ "${opt%%[_@]*}" = $langcode -a $langcode != 'zh' ]; then
                if $is_variant && [ $opt = ${opt#*@} ]; then
                    continue
                fi
                validated_language=$opt
                break
            fi
        done
    fi
fi

if [ -z "$validated_language" ]; then
    validated_language='en'
fi

echo $validated_language


Filemanager

Name Type Size Permission Actions
language-options File 2.78 KB 0755
language-validate File 1.79 KB 0755
language2locale File 1.75 KB 0755
locale2papersize File 320 B 0755
main-countries File 420 B 0644
save-to-pam-env File 1.37 KB 0755
set-language-helper File 732 B 0755
update-langlist File 1.36 KB 0755
Filemanager