mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 11:59:56 +00:00
16 lines
676 B
PHP
16 lines
676 B
PHP
<?php
|
|
$messages = [];
|
|
|
|
$messages[ 'en' ] = [
|
|
'portable-infobox-desc' => 'Create portable infoboxes which can be rendered using clean semantic HTML markup on
|
|
any skin / platform using using easy to understand powerful XML-like markup',
|
|
'unimplemented-infobox-tag' => 'Unimplemented infobox tag: <$1>',
|
|
'xml-parse-error' => 'Incorrect XML markup. Please validate your XML.'
|
|
];
|
|
|
|
$messages[ 'qqq' ] = [
|
|
'portable-infobox-desc' => 'Portable Infobox extension description',
|
|
'unimplemented-infobox-tag' => 'Error message for using unimplemented infobox tag; $1 is the tag name without pointy braces',
|
|
'xml-parse-error' => 'Error message for providing incorrect XML markup'
|
|
];
|