mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Moved locale information from the language to the translation files.
This commit is contained in:
parent
6dd12729e6
commit
56ee830558
@ -98,6 +98,12 @@ return [
|
||||
'Revenue account' => 'revenue',
|
||||
'Cash account' => 'cash',
|
||||
],
|
||||
'languages' => [
|
||||
'en_US' => ['name_locale' => 'English', 'name_english' => 'English', 'complete' => true],
|
||||
'nl_NL' => ['name_locale' => 'Nederlands', 'name_english' => 'Dutch', 'complete' => true],
|
||||
'pt_BR' => ['name_locale' => 'Português do Brasil', 'name_english' => 'Portugese (Brazil)', 'complete' => false],
|
||||
'fr_FR' => ['name_locale' => 'Français', 'name_english' => 'French', 'complete' => false],
|
||||
],
|
||||
'lang' => [
|
||||
'en_US' => 'English',
|
||||
'nl_NL' => 'Nederlands',
|
||||
|
8
resources/lang/en_US/config.php
Normal file
8
resources/lang/en_US/config.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'locale' => 'en, English, en_US, en_US.utf8',
|
||||
'month' => '%B %Y',
|
||||
'month_and_day' => '%B %e, %Y',
|
||||
|
||||
];
|
8
resources/lang/fr_FR/config.php
Normal file
8
resources/lang/fr_FR/config.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'locale' => 'fr, French, fr_FR, fr_FR.utf8',
|
||||
'month' => '%B %Y',
|
||||
'month_and_day' => '%e %B %Y',
|
||||
|
||||
];
|
8
resources/lang/nl_NL/config.php
Normal file
8
resources/lang/nl_NL/config.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'locale' => 'nl, Dutch, nl_NL, nl_NL.utf8',
|
||||
'month' => '%B %Y',
|
||||
'month_and_day' => '%e %B %Y',
|
||||
|
||||
];
|
8
resources/lang/pt_BR/config.php
Normal file
8
resources/lang/pt_BR/config.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'locale' => 'pt_BR, pt_BR.utf8',
|
||||
'month' => '%B %Y',
|
||||
'month_and_day' => '%e de %B de %Y',
|
||||
|
||||
];
|
Loading…
Reference in New Issue
Block a user