blob: ffee2d9727055f498c2052617e6412aa6484a7de [file] [log] [blame]
Andrey Andreevae1af2e2014-02-13 14:50:41 +02001<?php
2/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 5.2.4 or newer
6 *
7 * NOTICE OF LICENSE
8 *
9 * Licensed under the Open Software License version 3.0
10 *
11 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
21 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
22 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
27defined('BASEPATH') OR exit('No direct script access allowed');
28
29$lang['pagination_first_link'] = '&lsaquo; First';
30$lang['pagination_next_link'] = '&gt;';
31$lang['pagination_prev_link'] = '&lt;';
32$lang['pagination_last_link'] = 'Last &rsaquo;';
33
34/* End of file pagination_lang.php */
35/* Location: ./system/language/english/pagination_lang.php */