2007-01-29 20:11:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$fallback = false;
|
|
|
|
|
|
|
|
$messages = array(
|
|
|
|
|
2007-06-25 01:11:56 +00:00
|
|
|
'HTMLPurifier' => 'HTML Purifier',
|
|
|
|
'LanguageFactoryTest: Pizza' => 'Pizza', // for unit testing purposes
|
2007-01-29 20:11:00 +00:00
|
|
|
|
2007-06-25 00:48:26 +00:00
|
|
|
'ErrorCollector: No errors' => 'No errors',
|
|
|
|
'ErrorCollector: At line' => ' at line $line',
|
|
|
|
|
|
|
|
'Lexer: Unclosed comment' => 'Unclosed comment',
|
|
|
|
'Lexer: Unescaped lt' => 'Unescaped less-than sign (<) should be <',
|
|
|
|
'Lexer: Missing gt' => 'Missing greater-than sign (>), previous less-than sign (<) should be escaped',
|
|
|
|
'Lexer: Missing attribute key' => 'Attribute declaration has no key',
|
|
|
|
'Lexer: Missing end quote' => 'Attribute declaration has no end quote',
|
2007-06-18 03:05:18 +00:00
|
|
|
|
2007-06-24 23:20:35 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$errorNames = array(
|
|
|
|
E_ERROR => 'Error',
|
|
|
|
E_WARNING => 'Warning',
|
|
|
|
E_NOTICE => 'Notice'
|
2007-01-29 20:11:00 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
?>
|