1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php /** * System messages translation for CodeIgniter(tm) * * @author CodeIgniter community * @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://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'] = '‹ 第一页'; $lang['pagination_next_link'] = '>'; $lang['pagination_prev_link'] = '<'; $lang['pagination_last_link'] = '最后一页 ›';
|