mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Poem
synced 2024-11-16 03:21:07 +00:00
21 lines
387 B
PHP
21 lines
387 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Internationalisation file for Poem extension.
|
||
|
*
|
||
|
* @addtogroup Extensions
|
||
|
*/
|
||
|
|
||
|
$messages = array();
|
||
|
|
||
|
$messages['en'] = array(
|
||
|
'poem-desc' => 'Adds <tt><poem></tt> tag for poem formatting',
|
||
|
);
|
||
|
|
||
|
|
||
|
/** German (Deutsch)
|
||
|
* @author Raimond Spekking
|
||
|
*/
|
||
|
$messages['de'] = array(
|
||
|
'poem-desc' => 'Fügt das <tt><poem></tt>-Tag zur Formatierung von Gedichten hinzu',
|
||
|
);
|