| 60 | | [/fish$/, 'fish'], # fish |
|---|
| 61 | | [/(x|ch|ss|sh)$/, '\1es'], # search, switch, fix, box, process, address |
|---|
| 62 | | [/series$/, '\1series'], |
|---|
| 63 | | [/([^aeiouy]|qu)ies$/, '\1y'], |
|---|
| 64 | | [/([^aeiouy]|qu)y$/, '\1ies'], # query, ability, agency |
|---|
| 65 | | [/(?:([^f])fe|([lr])f)$/, '\1\2ves'], # half, safe, wife |
|---|
| 66 | | [/sis$/, 'ses'], # basis, diagnosis |
|---|
| 67 | | [/([ti])um$/, '\1a'], # datum, medium |
|---|
| 68 | | [/person$/, 'people'], # person, salesperson |
|---|
| 69 | | [/man$/, 'men'], # man, woman, spokesman |
|---|
| 70 | | [/child$/, 'children'], # child |
|---|
| 71 | | [/s$/, 's'], # no change (compatibility) |
|---|
| | 60 | [/(fish)$/i, '\1\2'], # fish |
|---|
| | 61 | [/(x|ch|ss|sh)$/i, '\1es'], # search, switch, fix, box, process, address |
|---|
| | 62 | [/(series)$/i, '\1\2'], |
|---|
| | 63 | [/([^aeiouy]|qu)ies$/i, '\1y'], |
|---|
| | 64 | [/([^aeiouy]|qu)y$/i, '\1ies'], # query, ability, agency |
|---|
| | 65 | [/(?:([^f])fe|([lr])f)$/i, '\1\2ves'], # half, safe, wife |
|---|
| | 66 | [/sis$/i, 'ses'], # basis, diagnosis |
|---|
| | 67 | [/([ti])um$/i, '\1a'], # datum, medium |
|---|
| | 68 | [/(p)erson$/i, '\1\2eople'], # person, salesperson |
|---|
| | 69 | [/(m)an$/i, '\1\2en'], # man, woman, spokesman |
|---|
| | 70 | [/(c)hild$/i, '\1\2hildren'], # child |
|---|
| | 71 | [/s$/i, 's'], # no change (compatibility) |
|---|
| 78 | | [/fish$/, 'fish'], |
|---|
| 79 | | [/(x|ch|ss|sh)es$/, '\1'], |
|---|
| 80 | | [/movies$/, 'movie'], |
|---|
| 81 | | [/series$/, 'series'], |
|---|
| 82 | | [/([^aeiouy]|qu)ies$/, '\1y'], |
|---|
| 83 | | [/([lr])ves$/, '\1f'], |
|---|
| 84 | | [/([^f])ves$/, '\1fe'], |
|---|
| 85 | | [/(analy|ba|diagno|parenthe|progno|synop|the)ses$/, '\1sis'], |
|---|
| 86 | | [/([ti])a$/, '\1um'], |
|---|
| 87 | | [/people$/, 'person'], |
|---|
| 88 | | [/men$/, 'man'], |
|---|
| 89 | | [/status$/, 'status'], |
|---|
| 90 | | [/children$/, 'child'], |
|---|
| 91 | | [/news$/, 'news'], |
|---|
| 92 | | [/s$/, ''] |
|---|
| | 78 | [/(f)ish$/i, '\1\2ish'], |
|---|
| | 79 | [/(x|ch|ss|sh)es$/i, '\1'], |
|---|
| | 80 | [/(m)ovies$/i, '\1\2ovie'], |
|---|
| | 81 | [/(s)eries$/i, '\1\2eries'], |
|---|
| | 82 | [/([^aeiouy]|qu)ies$/i, '\1y'], |
|---|
| | 83 | [/([lr])ves$/i, '\1f'], |
|---|
| | 84 | [/([^f])ves$/i, '\1fe'], |
|---|
| | 85 | [/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i, '\1\2sis'], |
|---|
| | 86 | [/([ti])a$/i, '\1um'], |
|---|
| | 87 | [/(p)eople$/i, '\1\2erson'], |
|---|
| | 88 | [/(m)en$/i, '\1\2an'], |
|---|
| | 89 | [/(s)tatus$/i, '\1\2tatus'], |
|---|
| | 90 | [/(c)hildren$/i, '\1\2hild'], |
|---|
| | 91 | [/(n)ews$/i, '\1\2ews'], |
|---|
| | 92 | [/s$/i, ''] |
|---|