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-06-03 12:37:12 +00:00
|
|
|
'portable-infobox-unimplemented-infobox-tag' => 'Unimplemented infobox tag: <$1>',
|
|
|
|
'portable-infobox-xml-parse-error-info' => 'There is a problem with parsing the infobox',
|
|
|
|
'portable-infobox-xml-parse-error' => 'Incorrect XML markup. Please validate your XML',
|
|
|
|
'portable-infobox-xml-parse-error-document-end' => 'Extra content at the end of the document',
|
|
|
|
'portable-infobox-xml-parse-error-undeclared-entity' => 'Undeclared entity (for example: )',
|
|
|
|
'portable-infobox-xml-parse-error-attribute-not-started' => 'Attribute value should be inside quotation marks',
|
|
|
|
'portable-infobox-xml-parse-error-attribute-without-value' => 'Tag attribute needs to have value',
|
|
|
|
'portable-infobox-xml-parse-error-space-required' => 'Attributes construct error',
|
|
|
|
'portable-infobox-xml-parse-error-name-required' => 'Error parsing attribute name',
|
|
|
|
'portable-infobox-xml-parse-error-gt-required' => "Tag definition is not properly terminated",
|
|
|
|
'portable-infobox-xml-parse-error-tag-name-mismatch' => 'Opening and ending tag mismatch',
|
2015-06-10 12:51:07 +00:00
|
|
|
'portable-infobox-xml-parse-error-tag-not-finished' => 'Premature end of tag',
|
|
|
|
'portable-infobox-xml-parse-error-infobox-tag-attribute-unsupported' => 'Attribute "$1" is not supported in
|
|
|
|
<infobox> 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-06-03 12:37:12 +00:00
|
|
|
'portable-infobox-unimplemented-infobox-tag' => 'Error message for using unimplemented infobox tag; $1 is the tag name without pointy braces',
|
|
|
|
'portable-infobox-xml-parse-error-info' => 'General message for parsing problem',
|
|
|
|
'portable-infobox-xml-parse-error' => 'Error message for providing incorrect XML markup',
|
|
|
|
'portable-infobox-xml-parse-error-document-end' => 'XML Error: extra content at the end',
|
|
|
|
'portable-infobox-xml-parse-error-undeclared-entity' => 'XML Error: undeclared entity (for example: ). This typically comes from HTML.',
|
|
|
|
'portable-infobox-xml-parse-error-attribute-not-started' => 'XML Error: ending tag without start tag',
|
|
|
|
'portable-infobox-xml-parse-error-attribute-without-value' => 'XML Error: tag attribute was provided without value',
|
|
|
|
'portable-infobox-xml-parse-error-space-required' => 'XML Error: issue with parsing tag attributes',
|
|
|
|
'portable-infobox-xml-parse-error-name-required' => 'XML Error: error parsing name attribute',
|
|
|
|
'portable-infobox-xml-parse-error-gt-required' => 'XML Error: could not find end of tag definition (for example: <data><label </data>',
|
|
|
|
'portable-infobox-xml-parse-error-tag-name-mismatch' => 'XML Error: Opening and ending tag mismatch (for example: <data></label>)',
|
2015-06-10 12:51:07 +00:00
|
|
|
'portable-infobox-xml-parse-error-tag-not-finished' => 'XML Error: premature end of tag',
|
2015-06-11 09:38:09 +00:00
|
|
|
'portable-infobox-xml-parse-error-infobox-tag-attribute-unsupported' => 'Unsupported attribute used inside <infobox> tag. $1 param contains attribute name.'
|
2015-06-10 12:51:07 +00:00
|
|
|
|
2015-05-06 12:56:19 +00:00
|
|
|
];
|