mirror of
https://github.com/e107inc/e107.git
synced 2025-08-17 20:01:47 +02:00
24 lines
665 B
PHP
24 lines
665 B
PHP
<?php
|
|
/*
|
|
* Copyright e107 Inc e107.org, Licensed under GNU GPL (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
* Nexptrev Shortcode Language File
|
|
*/
|
|
|
|
|
|
return [
|
|
'NP_1' => "Previous page",
|
|
'NP_2' => "Next page",
|
|
'LAN_NP_FIRST' => "first",
|
|
'LAN_NP_URLFIRST' => "Go to the first page",
|
|
'LAN_NP_PREVIOUS' => "previous",
|
|
'LAN_NP_URLPREVIOUS' => "Go to the previous page",
|
|
'LAN_NP_NEXT' => "next",
|
|
'LAN_NP_URLNEXT' => "Go to the next page",
|
|
'LAN_NP_LAST' => "last",
|
|
'LAN_NP_URLLAST' => "Go to the last page",
|
|
'LAN_NP_GOTO' => "Go to page [x]",
|
|
'LAN_NP_URLCURRENT' => "Currently viewed",
|
|
'NP_CAPTION' => "Page [x] of [y]",
|
|
];
|