As recommended in CodeIgniter documentation [1], the files were copied to the application folder instead of the system folder. More info: https://github.com/bcit-ci/codeigniter3-translations [1] https://codeigniter.com/userguide3/libraries/language.html
		
			
				
	
	
		
			20 行
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 行
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * System messages translation for CodeIgniter(tm)
 | |
|  *
 | |
|  * @author	CodeIgniter community
 | |
|  * @author	Iban Eguia
 | |
|  * @copyright	Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
 | |
|  * @license	http://opensource.org/licenses/MIT	MIT License
 | |
|  * @link	https://codeigniter.com
 | |
|  */
 | |
| defined('BASEPATH') OR exit('No direct script access allowed');
 | |
| 
 | |
| $lang['migration_none_found']		= 'No se ha encontrado ninguna migración.';
 | |
| $lang['migration_not_found']		= 'No se ha encontrado ninguna migración con el número de versión: %s.';
 | |
| $lang['migration_sequence_gap']		= 'Hay un vacío en la migración, cerca del número de versión: %s.';
 | |
| $lang['migration_multiple_version']	= 'Hay múltiples migraciones con el mismo número de versión: %s.';
 | |
| $lang['migration_class_doesnt_exist']	= 'La clase de migración "%s" no ha podido ser encontrada.';
 | |
| $lang['migration_missing_up_method']	= 'A la clase de migración "%s" le falta el método "up".';
 | |
| $lang['migration_missing_down_method']	= 'A la clase de migración "%s" le falta el método "down".';
 | |
| $lang['migration_invalid_filename']	= 'La migración "%s" tiene un nombre de archivo no válido.';
 |