Polyglot\Services\Lang::getLocaleFolder PHP 메소드

getLocaleFolder() 공개 메소드

Get the folder where a locale's translations reside
public getLocaleFolder ( string $locale ) : string
$locale string
리턴 string
    public function getLocaleFolder($locale)
    {
        $folder = sprintf('%s.%s/LC_MESSAGES', $this->shortToLongLocale($locale), $this->getEncoding(true));
        return $this->getTranslationsFolder($folder);
    }