mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Allows the user to set the default language for new and unauthenticated visitors.
This commit is contained in:
@@ -31,7 +31,7 @@ return [
|
||||
'debug' => env('APP_DEBUG', false),
|
||||
'url' => envNonEmpty('APP_URL', 'http://localhost'),
|
||||
'timezone' => envNonEmpty('TZ', 'UTC'),
|
||||
'locale' => 'en_US',
|
||||
'locale' => envNonEmpty('DEFAULT_LANGUAGE', 'en_US'),
|
||||
'fallback_locale' => 'en_US',
|
||||
'key' => env('APP_KEY'),
|
||||
'cipher' => 'AES-256-CBC',
|
||||
@@ -147,7 +147,7 @@ return [
|
||||
'PiggyBankForm' => \FireflyIII\Support\Facades\PiggyBankForm::class,
|
||||
'RuleForm' => \FireflyIII\Support\Facades\RuleForm::class,
|
||||
'Google2FA' => PragmaRX\Google2FALaravel\Facade::class,
|
||||
'Twig' => TwigBridge\Facade\Twig::class,
|
||||
'Twig' => TwigBridge\Facade\Twig::class,
|
||||
|
||||
],
|
||||
|
||||
|
Reference in New Issue
Block a user