Xinax\LaravelGettext\LaravelGettext::getLocaleLanguage PHP Method

getLocaleLanguage() public method

Get the language portion of the locale (ex. en_GB returns en)
public getLocaleLanguage ( string | null $locale = null ) : string | null
$locale string | null
return string | null
    public function getLocaleLanguage($locale = null)
    {
        if (is_null($locale)) {
            $locale = $this->getLocale();
        }
        $localeArray = explode('_', $locale);
        if (!isset($localeArray[0])) {
            return null;
        }
        return $localeArray[0];
    }