mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ImageMap
synced 2024-11-15 10:25:09 +00:00
30 lines
1.3 KiB
PHP
30 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Internationalisation file for ImageMap extension
|
||
|
*/
|
||
|
|
||
|
function efImageMapMessages() {
|
||
|
return array(
|
||
|
|
||
|
/* English (Tim Starling) */
|
||
|
'en' => array(
|
||
|
'imagemap_no_image' => '<imagemap>: must specify an image in the first line',
|
||
|
'imagemap_invalid_image' => '<imagemap>: image is invalid or non-existent',
|
||
|
'imagemap_no_link' => '<imagemap>: no valid link was found at the end of line $1',
|
||
|
'imagemap_invalid_title' => '<imagemap>: invalid title in link at line $1',
|
||
|
'imagemap_missing_coord' => '<imagemap>: not enough coordinates for shape at line $1',
|
||
|
'imagemap_unrecognised_shape' => '<imagemap>: unrecognised shape at line $1, each line must start with one of: '.
|
||
|
'default, rect, circle or poly',
|
||
|
'imagemap_no_areas' => '<imagemap>: at least one area specification must be given',
|
||
|
'imagemap_invalid_coord' => '<imagemap>: invalid coordinate at line $1, must be a number',
|
||
|
'imagemap_invalid_desc' => '<imagemap>: invalid desc specification, must be one of: $1',
|
||
|
'imagemap_description' => 'About this image',
|
||
|
# Note to translators: keep the same order
|
||
|
'imagemap_desc_types' => 'top-right, bottom-right, bottom-left, top-left, none',
|
||
|
),
|
||
|
|
||
|
);
|
||
|
}
|
||
|
|
||
|
?>
|