1<?php 2/** 3 * english language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Christopher Smith <chris@jalakai.co.uk> 7 */ 8 9// custom language strings for the plugin 10$lang['title'] = 'File: <span>%1$s - %2$s</span>'; // %1$s = file name, %2$s = line number details 11$lang['lines'] = 'lines #%1$u-%2$u'; // %1$u = starting line number, %2$u = ending line number 12 13$lang['error_file'] = 'Unable to display file "%s": It may not exist, or permission may be denied.'; 14$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."; 15$lang['error_end'] = "**ERROR**\nThe ending line number is less than the starting line number."; 16 17//Setup VIM: ex: et ts=2 enc=utf-8 :