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
		
			
				
	
	
		
			16 行
		
	
	
	
		
			564 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 行
		
	
	
	
		
			564 B
		
	
	
	
		
			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['pagination_first_link']	= '‹ Primera';
 | 
						|
$lang['pagination_next_link']	= '>';
 | 
						|
$lang['pagination_prev_link']	= '<';
 | 
						|
$lang['pagination_last_link']	= 'Última ›';
 |