2007-05-30 13:41:32 +00:00
|
|
|
|
<?php
|
2009-05-25 21:23:11 +00:00
|
|
|
|
/** Burmese (မြန်မာဘာသာ)
|
2009-04-16 10:17:40 +00:00
|
|
|
|
*
|
2014-06-05 14:06:25 +00:00
|
|
|
|
* To improve a translation please visit https://translatewiki.net
|
2007-05-30 13:41:32 +00:00
|
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
|
* @ingroup Language
|
|
|
|
|
|
* @file
|
2007-12-22 00:06:09 +00:00
|
|
|
|
*
|
2011-02-06 21:25:59 +00:00
|
|
|
|
* @author Erikoo
|
2007-12-22 00:06:09 +00:00
|
|
|
|
* @author Hakka
|
2010-10-01 19:37:33 +00:00
|
|
|
|
* @author Hanzaw
|
2008-07-07 10:27:25 +00:00
|
|
|
|
* @author Hintha
|
2010-10-01 19:37:33 +00:00
|
|
|
|
* @author Lagoonaing
|
2012-08-12 19:44:03 +00:00
|
|
|
|
* @author Liangent
|
2010-10-01 19:37:33 +00:00
|
|
|
|
* @author Lionslayer
|
|
|
|
|
|
* @author Minnyoonthit
|
|
|
|
|
|
* @author Myanmars
|
|
|
|
|
|
* @author Myolay
|
|
|
|
|
|
* @author Parabaik
|
2010-10-02 19:58:17 +00:00
|
|
|
|
* @author Purodha
|
2011-09-06 20:24:15 +00:00
|
|
|
|
* @author Saiddzone
|
2010-10-01 19:37:33 +00:00
|
|
|
|
* @author Thanlwin
|
|
|
|
|
|
* @author Thitaung
|
2010-08-10 19:34:11 +00:00
|
|
|
|
* @author Umherirrender
|
2010-10-01 19:37:33 +00:00
|
|
|
|
* @author Zawthet
|
|
|
|
|
|
* @author ကိုရာဝီ
|
2007-05-30 13:41:32 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
2008-07-29 16:13:49 +00:00
|
|
|
|
$digitTransformTable = array(
|
|
|
|
|
|
'0' => '၀',
|
|
|
|
|
|
'1' => '၁',
|
|
|
|
|
|
'2' => '၂',
|
|
|
|
|
|
'3' => '၃',
|
|
|
|
|
|
'4' => '၄',
|
|
|
|
|
|
'5' => '၅',
|
|
|
|
|
|
'6' => '၆',
|
|
|
|
|
|
'7' => '၇',
|
|
|
|
|
|
'8' => '၈',
|
|
|
|
|
|
'9' => '၉',
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
$datePreferences = array(
|
|
|
|
|
|
'default',
|
|
|
|
|
|
'my normal',
|
|
|
|
|
|
'my long',
|
|
|
|
|
|
'ISO 8601',
|
|
|
|
|
|
);
|
2010-07-30 06:48:16 +00:00
|
|
|
|
|
2008-07-29 16:13:49 +00:00
|
|
|
|
$defaultDateFormat = 'my normal';
|
2010-07-30 06:48:16 +00:00
|
|
|
|
|
2008-07-29 16:13:49 +00:00
|
|
|
|
$dateFormats = array(
|
|
|
|
|
|
'my normal time' => 'H:i',
|
|
|
|
|
|
'my normal date' => 'j F Y',
|
|
|
|
|
|
'my normal both' => ' H:i"၊" j F Y',
|
2010-07-30 06:48:16 +00:00
|
|
|
|
|
2008-07-29 16:13:49 +00:00
|
|
|
|
'my long time' => 'H:i',
|
|
|
|
|
|
'my long date' => 'Y "ဇန်နဝါရီ" F"လ" j "ရက်"',
|
|
|
|
|
|
'my long both' => 'H:i"၊" Y "ဇန်နဝါရီ" F"လ" j "ရက်"',
|
|
|
|
|
|
);
|
|
|
|
|
|
|