Moved locale information from the language to the translation files.

This commit is contained in:
James Cole 2015-12-24 08:20:47 +01:00
parent 6dd12729e6
commit 56ee830558
5 changed files with 38 additions and 0 deletions

View File

@ -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',

View File

@ -0,0 +1,8 @@
<?php
return [
'locale' => 'en, English, en_US, en_US.utf8',
'month' => '%B %Y',
'month_and_day' => '%B %e, %Y',
];

View File

@ -0,0 +1,8 @@
<?php
return [
'locale' => 'fr, French, fr_FR, fr_FR.utf8',
'month' => '%B %Y',
'month_and_day' => '%e %B %Y',
];

View File

@ -0,0 +1,8 @@
<?php
return [
'locale' => 'nl, Dutch, nl_NL, nl_NL.utf8',
'month' => '%B %Y',
'month_and_day' => '%e %B %Y',
];

View File

@ -0,0 +1,8 @@
<?php
return [
'locale' => 'pt_BR, pt_BR.utf8',
'month' => '%B %Y',
'month_and_day' => '%e de %B de %Y',
];