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

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