-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy pathEn.php
More file actions
169 lines (164 loc) · 6.19 KB
/
Copy pathEn.php
File metadata and controls
169 lines (164 loc) · 6.19 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?php
namespace Stringy\Inflections;
/**
* English inflection rules.
*/
class En extends Inflector
{
/**
* Return an array of pluralization rules, from most to least specific, in the form $rule => $replacement
*
* @return array
*/
public function pluralRules()
{
return [
'/(quiz)$/i' => '\1zes',
'/^(oxen)$/i' => '\1',
'/^(ox)$/i' => '\1en',
'/^(m|l)ice$/i' => '\1ice',
'/^(m|l)ouse$/i' => '\1ice',
'/(matr|vert|ind)(?:ix|ex)$/i' => '\1ices',
'/(x|ch|ss|sh)$/i' => '\1es',
'/([^aeiouy]|qu)y$/i' => '\1ies',
'/(hive)$/i' => '\1s',
'/(?:([^f])fe|([lr])f)$/i' => '\1\2ves',
'/sis$/i' => 'ses',
'/([ti])a$/i' => '\1a',
'/([ti])um$/i' => '\1a',
'/(buffal|tomat|potat|volcan|her)o$/i' => '\1oes',
'/(bu)s$/i' => '\1ses',
'/(alias|status)$/i' => '\1es',
'/^(ax|test)is$/i' => '\1es',
'/s$/i' => 's',
'/$/' => 's',
];
}
/**
* Return an array of singularization rules, from most to least specific, in the form $rule => $replacement
*
*
* @return array
*/
public function singularRules()
{
return [
'/(database)s$/i' => '\1',
'/(quiz)zes$/i' => '\1',
'/(matr)ices$/i' => '\1ix',
'/(vert|ind)ices$/i' => '\1ex',
'/^(ox)en/i' => '\1',
'/(alias|status)(es)?$/i' => '\1',
'/^(a)x[ie]s$/i' => '\1xis',
'/(cris|test)(is|es)$/i' => '\1is',
'/(shoe)s$/i' => '\1',
'/(o)es$/i' => '\1',
'/(bus)(es)?$/i' => '\1',
'/^(m|l)ice$/i' => '\1ouse',
'/(x|ch|ss|sh)es$/i' => '\1',
'/(m)ovies$/i' => '\1ovie',
'/(s)eries$/i' => '\1eries',
'/([^aeiouy]|qu)ies$/i' => '\1y',
'/([lr])ves$/i' => '\1f',
'/(tive)s$/i' => '\1',
'/(hive)s$/i' => '\1',
'/([^f])ves$/i' => '\1fe',
'/(^analy)(sis|ses)$/i' => '\1sis',
'/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)(sis|ses)$/i' => '\1sis',
'/([ti])a$/i' => '\1um',
'/(n)ews$/i' => '\1ews',
'/(ss)$/i' => '\1',
'/s$/i' => '',
];
}
/**
* Return an array of irregular replacements, in the form singular => plural ('goose' => 'geese')
*
* @return array
*/
public function irregularRules()
{
return [
'leaf' => 'leaves',
'loaf' => 'loaves',
'octopus' => 'octopuses',
'virus' => 'viruses',
'person' => 'people',
'man' => 'men',
'child' => 'children',
'sex' => 'sexes',
'move' => 'moves',
'zombie' => 'zombies',
'goose' => 'geese',
'genus' => 'genera',
];
}
/**
* Return an array of uncountable rules (sheep, police)
*
* @return array
*/
public function uncountableRules()
{
return [
'advice',
'aircraft',
'art',
'baggage',
'butter',
'clothing',
'coal',
'cotton',
'deer',
'equipment',
'experience',
'feedback',
'fish',
'flour',
'food',
'furniture',
'gas',
'homework',
'impatience',
'information',
'jeans',
'knowledge',
'leather',
'love',
'luggage',
'management',
'money',
'moose',
'music',
'news',
'oil',
'patience',
'police',
'polish',
'progress',
'research',
'rice',
'salmon',
'sand',
'series',
'sheep',
'silk',
'sms',
'soap',
'spam',
'species',
'staff',
'sugar',
'swine',
'talent',
'toothpaste',
'traffic',
'travel',
'vinegar',
'weather',
'wood',
'wool',
'work',
];
}
}