1 | <?php |
||
4 | class Plurality extends \morphos\Plurality { |
||
5 | |||
6 | static private $exceptions = array( |
||
7 | 'chief' => 'chiefs', |
||
8 | 'basis' => 'bases', |
||
9 | 'crisis' => 'crises', |
||
10 | 'radius' => 'radii', |
||
11 | 'nucleus' => 'nuclei', |
||
12 | 'curriculum' => 'curricula', |
||
13 | 'man' => 'men', |
||
14 | 'woman' => 'women', |
||
15 | 'child' => 'children', |
||
16 | 'foot' => 'feet', |
||
17 | 'tooth' => 'teeth', |
||
18 | 'ox' => 'oxen', |
||
19 | 'goose' => 'geese', |
||
20 | 'mouse' => 'mice' |
||
21 | ); |
||
22 | |||
23 | static private $without_paired_form = array( |
||
24 | 'knowledge', |
||
25 | 'progress', |
||
26 | 'advise', |
||
27 | 'ink', |
||
28 | 'money', |
||
29 | 'scissors', |
||
30 | 'spectacles', |
||
31 | 'trousers', |
||
32 | ); |
||
33 | |||
34 | static public $consonants = array('b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'v', 'x', 'z', 'w'); |
||
35 | |||
36 | public function pluralize($word, $count) { |
||
62 | } |
||
63 |