blob: 73cf9d5f61d07365bfe7f6b705086a16394ee5af (
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 ScriptOsma - Representation of the Osmanya script.
*
* @author Greg Roach <fisharebest@gmail.com>
* @copyright (c) 2015 Greg Roach
* @license GPLv3+
*/
class ScriptOsma extends AbstractScript implements ScriptInterface {
public function code() {
return 'Osma';
}
public function numerals() {
return array('𐒠', '𐒡', '𐒢', '𐒣', '𐒤', '𐒥', '𐒦', '𐒧', '𐒨', '𐒩');
}
public function number() {
return '260';
}
public function unicodeName() {
return 'Osmanya';
}
}
|