コード例 #1
0
 public function __construct($availableLocales, $translationsPath, $textdomain)
 {
     $this->availableLocales = $availableLocales;
     bindtextdomain($textdomain, $translationsPath);
     textdomain($textdomain);
     $this->setLocale($this->defaultLocale);
     Translate::_setAppLocale($this->defaultLocale);
 }
コード例 #2
0
 public function settingsLoaded(SettingsLoadedEvent $event)
 {
     $internalLocale = $event->getSettingService()->getValueOf("agit.internal_locale");
     Translate::_setAppLocale($internalLocale);
 }