Skip to content

Commit

Permalink
Enable Dutch locale option
Browse files Browse the repository at this point in the history
  • Loading branch information
Cocoa committed Aug 20, 2023
1 parent a58e4f8 commit 3bb7f66
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'
],

/*
|--------------------------------------------------------------------------
Expand Down
8 changes: 7 additions & 1 deletion config/translatable.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'
],

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 3bb7f66

Please sign in to comment.