mirror of
https://github.com/flarum/core.git
synced 2025-08-16 13:24:11 +02:00
Fix installation
This commit is contained in:
@@ -37,7 +37,7 @@ class LocaleServiceProvider extends AbstractServiceProvider
|
||||
$this->app->alias('Flarum\Locale\LocaleManager', 'flarum.localeManager');
|
||||
|
||||
$this->app->singleton('translator', function () {
|
||||
$defaultLocale = $this->app->make('flarum.settings')->get('default_locale');
|
||||
$defaultLocale = $this->app->isInstalled() ? $this->app->make('flarum.settings')->get('default_locale') : 'en';
|
||||
|
||||
$translator = new Translator($defaultLocale, new MessageSelector());
|
||||
$translator->setFallbackLocales([$defaultLocale]);
|
||||
|
Reference in New Issue
Block a user