Initial
This commit is contained in:
17
tests/_support/Language/en/Allin.php
Normal file
17
tests/_support/Language/en/Allin.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of CodeIgniter 4 framework.
|
||||
*
|
||||
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
||||
*
|
||||
* For the full copyright and license information, please view
|
||||
* the LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'for' => 'four calling birds',
|
||||
'fiv' => 'five golden rings',
|
||||
'six' => 'six geese a laying',
|
||||
'sev' => 'seven swans a swimming',
|
||||
];
|
||||
15
tests/_support/Language/en/Core.php
Normal file
15
tests/_support/Language/en/Core.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of CodeIgniter 4 framework.
|
||||
*
|
||||
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
||||
*
|
||||
* For the full copyright and license information, please view
|
||||
* the LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'missingExtension' => '{0} extension could not be found.',
|
||||
'bazillion' => 'billions and billions', // adds a new setting
|
||||
];
|
||||
19
tests/_support/Language/en/Foo.php
Normal file
19
tests/_support/Language/en/Foo.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of CodeIgniter 4 framework.
|
||||
*
|
||||
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
||||
*
|
||||
* For the full copyright and license information, please view
|
||||
* the LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'bar' => 'Foo Bar Translated',
|
||||
'bar.min_length1' => 'The {field} field is very short.',
|
||||
'bar.min_length2' => 'Supplied value ({value}) for {field} must have at least {param} characters.',
|
||||
'baz' => [
|
||||
'min_length3.short' => 'The {field} field is very short.',
|
||||
],
|
||||
];
|
||||
15
tests/_support/Language/en/Language.php
Normal file
15
tests/_support/Language/en/Language.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of CodeIgniter 4 framework.
|
||||
*
|
||||
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
||||
*
|
||||
* For the full copyright and license information, please view
|
||||
* the LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
// Language system language settings
|
||||
return [
|
||||
'languageGetLineInvalidArgumentException' => 'Get line must be a string or array of strings.',
|
||||
];
|
||||
16
tests/_support/Language/en/More.php
Normal file
16
tests/_support/Language/en/More.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of CodeIgniter 4 framework.
|
||||
*
|
||||
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
||||
*
|
||||
* For the full copyright and license information, please view
|
||||
* the LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'strongForce' => 'These are not the droids you are looking for',
|
||||
'notaMoon' => "That's no moon... it's a space station",
|
||||
'cannotMove' => 'I have a very bad feeling about this',
|
||||
];
|
||||
20
tests/_support/Language/en/Nested.php
Normal file
20
tests/_support/Language/en/Nested.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of CodeIgniter 4 framework.
|
||||
*
|
||||
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
||||
*
|
||||
* For the full copyright and license information, please view
|
||||
* the LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'a' => [
|
||||
'b' => [
|
||||
'c' => [
|
||||
'd' => 'e',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user