1
0
Fork 0
mirror of synced 2024-05-20 20:52:36 +12:00

Enabled Faroese locale

This commit is contained in:
eldadfux 2019-10-26 08:31:29 +03:00
parent 727fbc9a5b
commit e990165565
8 changed files with 6 additions and 4 deletions

View file

@ -10,6 +10,7 @@ return [
'en', // English
'es', // Spanish
'fi', // Finnish
'fo', // Faroese
'fr', // French
'gr', // Greek
'he', // Hebrew

View file

@ -8,14 +8,14 @@ return [
// Service - Users
'auth.emails.team' => '%s Lið',
'auth.emails.confirm.title' => 'Vátta brúkari',
'auth.emails.confirm.body' => 'en.email.auth.confirm.tpl',
'auth.emails.confirm.body' => 'fo.email.auth.confirm.tpl',
'auth.emails.recovery.title' => 'Glómt passord',
'auth.emails.recovery.body' => 'fo.email.auth.recovery.tpl',
'auth.emails.invitation.title' => 'Innbjóðing til %s Lið hjá %s',
'auth.emails.invitation.body' => 'no.email.auth.invitation.tpl',
'auth.emails.invitation.body' => 'fo.email.auth.invitation.tpl',
'locale.country.unknown' => 'Ókjent',
'countries' => include 'en.countries.php',
'continents' => include 'en.continents.php',
'countries' => include 'fo.countries.php',
'continents' => include 'fo.continents.php',
];

View file

@ -137,6 +137,7 @@ Locale::setLanguage('de', include __DIR__.'/config/locales/de.php');
Locale::setLanguage('en', include __DIR__.'/config/locales/en.php');
Locale::setLanguage('es', include __DIR__.'/config/locales/es.php');
Locale::setLanguage('fi', include __DIR__.'/config/locales/fi.php');
Locale::setLanguage('fo', include __DIR__.'/config/locales/fo.php');
Locale::setLanguage('fr', include __DIR__.'/config/locales/fr.php');
Locale::setLanguage('gr', include __DIR__.'/config/locales/gr.php');
Locale::setLanguage('he', include __DIR__.'/config/locales/he.php');