1<?php
2/**
3 * $Id: lang.php 18 2017-06-19 15:22:35Z denis $
4 * english language file
5 * @author    DenisVS <deniswebcomm@gmail.com>
6 * @link    https://www.dokuwiki.org/plugin:src
7 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
8 * @based on Source Plugin by  Chris Smith <chris@jalakai.co.uk>
9 */
10
11// custom language strings for the plugin
12$lang['title'] = 'File: <span>%1$s - %2$s</span>';  //   %1$s = file name, %2$s = line number details
13$lang['lines'] = 'lines #%1$u-%2$u';                //   %1$u = starting line number, %2$u = ending line number
14
15$lang['error_file'] = 'Unable to display file &quot;%s&quot;: It may not exist, or permission may be denied.';
16$lang['error_start'] = "**ERROR**\nUnable to display any file content.\nThe specified starting line number is more than the number of lines in the file.";
17$lang['error_end'] = "**ERROR**\nThe ending line number is less than the starting line number.";
18
19//Setup VIM: ex: et ts=2 enc=utf-8 :
20