wiki.techinc.nl/languages/LanguageAs.php
2006-04-29 20:07:14 +00:00

27 lines
408 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/** Assamese (অসমীয়া)
*
* @package MediaWiki
* @subpackage Language
*/
require_once( 'LanguageUtf8.php' );
class LanguageAs extends LanguageUtf8 {
function digitTransformTable() {
return array(
'0' => '',
'1' => '১',
'2' => '২',
'3' => '৩',
'4' => '',
'5' => '৫',
'6' => '৬',
'7' => '',
'8' => '৮',
'9' => '৯'
);
}
}
?>