mediawiki-extensions-Poem/Poem.i18n.php

42 lines
894 B
PHP
Raw Normal View History

<?php
/**
* Internationalisation file for Poem extension.
*
* @addtogroup Extensions
*/
$messages = array();
$messages['en'] = array(
'poem-desc' => 'Adds <tt>&lt;poem&gt;</tt> tag for poem formatting',
);
/** Arabic (العربية)
* @author Meno25
*/
$messages['ar'] = array(
'poem-desc' => 'يضيف الوسم <tt>&lt;poem&gt;</tt> لصياغة القصيدة',
);
/** German (Deutsch)
* @author Raimond Spekking
*/
$messages['de'] = array(
'poem-desc' => 'Fügt das <tt>&lt;poem&gt;</tt>-Tag zur Formatierung von Gedichten hinzu',
);
/** Dutch (Nederlands)
* @author Siebrand
*/
$messages['nl'] = array(
'poem-desc' => 'Voegt de tag <tt>&lt;poem&gt;</tt> toe voor de opmaak van poëzie',
);
/** Vietnamese (Tiếng Việt)
* @author Minh Nguyen
*/
$messages['vi'] = array(
'poem-desc' => 'Thêm thẻ <tt>&lt;poem&gt;</tt> để định dạng các bài thơ',
);