2008-02-18 18:42:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Internationalisation file for Poem extension.
|
|
|
|
*
|
|
|
|
* @addtogroup Extensions
|
2008-02-18 19:59:26 +00:00
|
|
|
*/
|
2008-02-18 18:42:20 +00:00
|
|
|
|
|
|
|
$messages = array();
|
|
|
|
|
|
|
|
$messages['en'] = array(
|
|
|
|
'poem-desc' => 'Adds <tt><poem></tt> tag for poem formatting',
|
|
|
|
);
|
|
|
|
|
2008-02-18 21:37:00 +00:00
|
|
|
/** Arabic (العربية)
|
|
|
|
* @author Meno25
|
|
|
|
*/
|
|
|
|
$messages['ar'] = array(
|
|
|
|
'poem-desc' => 'يضيف الوسم <tt><poem></tt> لصياغة القصيدة',
|
|
|
|
);
|
|
|
|
|
2008-02-18 18:42:20 +00:00
|
|
|
/** German (Deutsch)
|
|
|
|
* @author Raimond Spekking
|
|
|
|
*/
|
|
|
|
$messages['de'] = array(
|
|
|
|
'poem-desc' => 'Fügt das <tt><poem></tt>-Tag zur Formatierung von Gedichten hinzu',
|
|
|
|
);
|
2008-02-18 21:37:00 +00:00
|
|
|
|
|
|
|
/** Dutch (Nederlands)
|
|
|
|
* @author Siebrand
|
|
|
|
*/
|
|
|
|
$messages['nl'] = array(
|
|
|
|
'poem-desc' => 'Voegt de tag <tt><poem></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><poem></tt> để định dạng các bài thơ',
|
|
|
|
);
|
|
|
|
|