2015-04-27 14:05:31 +00:00
|
|
|
<?php
|
|
|
|
$messages = [];
|
|
|
|
|
|
|
|
$messages[ 'en' ] = [
|
|
|
|
'portable-infobox-desc' => 'Create portable infoboxes which can be rendered using clean semantic HTML markup on
|
2015-05-06 11:16:55 +00:00
|
|
|
any skin / platform using using easy to understand powerful XML-like markup',
|
2015-05-08 11:51:31 +00:00
|
|
|
'unimplemented-infobox-tag' => 'Unimplemented infobox tag: <$1>',
|
2015-06-01 12:11:07 +00:00
|
|
|
'xml-parse-error-info' => 'There is some problem parsing infobox.',
|
|
|
|
'xml-parse-error' => 'Incorrect XML markup. Please validate your XML',
|
|
|
|
'xml_err_document_end' => 'Extra content at the end of the document',
|
|
|
|
'xml_err_undeclared_entity' => 'Undeclared entity (for example: )',
|
|
|
|
'xml_err_attribute_not_started' => 'Attribute value should be inside quotation marks',
|
|
|
|
'xml_err_attribute_without_value' => 'Specification mandate value for attribute caption',
|
|
|
|
'xml_err_space_required' => 'Attributes construct error',
|
|
|
|
'xml_err_name_required' => 'Error parsing attribute name',
|
|
|
|
'xml_err_gt_required' => "Couldn't find end of Start Tag",
|
|
|
|
'xml_err_tag_name_mismatch' => 'Opening and ending tag mismatch',
|
|
|
|
'xml_err_tag_not_finished' => 'Premature end of tag'
|
2015-04-27 14:05:31 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
$messages[ 'qqq' ] = [
|
2015-05-06 11:16:55 +00:00
|
|
|
'portable-infobox-desc' => 'Portable Infobox extension description',
|
2015-05-08 11:51:31 +00:00
|
|
|
'unimplemented-infobox-tag' => 'Error message for using unimplemented infobox tag; $1 is the tag name without pointy braces',
|
2015-06-01 12:11:07 +00:00
|
|
|
'xml-parse-error-info' => 'General message for parsing problem',
|
|
|
|
'xml-parse-error' => 'Error message for providing incorrect XML markup',
|
|
|
|
'xml_err_document_end' => 'XML Error: extra content at the end',
|
|
|
|
'xml_err_undeclared_entity' => 'XML Error: undeclared entity (for example: ). This typically comes from HTML.',
|
|
|
|
'xml_err_attribute_not_started' => 'XML Error: ending tag without start tag',
|
|
|
|
'xml_err_attribute_without_value' => 'XML Error: tag attribute was provided without value',
|
|
|
|
'xml_err_space_required' => 'XML Error: issue with parsing tag attributes',
|
|
|
|
'xml_err_name_required' => 'XML Error: error parsing name attribute',
|
|
|
|
'xml_err_gt_required' => 'XML Error: could not find end tag',
|
|
|
|
'xml_err_tag_name_mismatch' => 'XML Error: Opening and ending tag mismatch (for example: <data></label>)',
|
|
|
|
'xml_err_tag_not_finished' => 'XML Error: premature end of tag'
|
2015-05-06 12:56:19 +00:00
|
|
|
];
|