forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCore.php
More file actions
22 lines (20 loc) · 688 Bytes
/
Copy pathCore.php
File metadata and controls
22 lines (20 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* Core language strings.
*
* @package CodeIgniter
* @author CodeIgniter Dev Team
* @copyright 2014-2019 British Columbia Institute of Technology (https://bcit.ca/)
* @license https://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
* @since Version 3.0.0
* @filesource
*
* @codeCoverageIgnore
*/
return [
'invalidFile' => 'Invalid file: {0}',
'copyError' => 'An error was encountered while attempting to replace the file. Please make sure your file directory is writable.',
'missingExtension' => '{0} extension is not loaded.',
'noHandlers' => '{0} must provide at least one Handler.',
];