blob: 263b3b29714fc3c105b6f3ef5774f0f13f301f5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php namespace Fisharebest\Localization\Script;
/**
* Class ScriptKali - Representation of the Kayah Li script.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class ScriptKali extends AbstractScript implements ScriptInterface {
public function code() {
return 'Kali';
}
public function numerals() {
return array('꤀', '꤁', '꤂', '꤃', '꤄', '꤅', '꤆', '꤇', '꤈', '꤉');
}
public function number() {
return '357';
}
public function unicodeName() {
return 'Kayah_Li';
}
}
|