diff --git a/config/app.php b/config/app.php index fe13327..c3b42b3 100644 --- a/config/app.php +++ b/config/app.php @@ -110,7 +110,13 @@ 'faker_locale' => 'en_US', // Available locales - 'locales' => ['en' => 'English', 'en_US' => 'English', 'fr' => 'français', 'nb_NO' => 'norsk (bokmål)'], + 'locales' => [ + 'en' => 'English', + 'en_US' => 'English', // Fallback locale fix, do not actually add tls + 'fr' => 'français', + 'nb_NO' => 'norsk (bokmål)', + 'nl' => 'Nederlands' + ], /* |-------------------------------------------------------------------------- diff --git a/config/translatable.php b/config/translatable.php index 769d4e5..86ffe79 100644 --- a/config/translatable.php +++ b/config/translatable.php @@ -10,7 +10,13 @@ | Contains an array with the applications available locales. | */ - 'locales' => ['en' => 'English', 'fr' => 'français', 'nb_NO' => 'norsk (bokmål)'], + 'locales' => [ + 'en' => 'English', + 'en_US' => 'English', // Fallback locale fix, do not actually add tls + 'fr' => 'français', + 'nb_NO' => 'norsk (bokmål)', + 'nl' => 'Nederlands' + ], /* |--------------------------------------------------------------------------