1 | <?php |
||
14 | class SouthDictionary extends Dictionary |
||
15 | { |
||
16 | /** |
||
17 | * Thay nghìn => ngàn. |
||
18 | * |
||
19 | * @var array |
||
20 | */ |
||
21 | protected static $exponents = [ |
||
22 | '', |
||
23 | 'ngàn', |
||
24 | 'triệu', |
||
25 | 'tỷ', |
||
26 | 'ngàn tỷ', |
||
27 | 'triệu tỷ', |
||
28 | ]; |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function tripletTenSeparator(): string |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function specialTripletUnitFour(): string |
||
45 | } |
||
46 |