2021-05-02 08:39:25 +00:00
|
|
|
//library inflection2.irregular_plural_nouns;
|
|
|
|
|
|
|
|
/// A collection of nouns with irregular plurals.
|
|
|
|
///
|
|
|
|
/// [A List of 100 Irregular Plural Nouns in English](http://grammar.about.com/od/words/a/A-List-Of-Irregular-Plural-Nouns-In-English.htm)
|
|
|
|
final Map<String, String> irregularPluralNouns = const {
|
2021-05-17 15:10:07 +00:00
|
|
|
'person': 'people',
|
|
|
|
'man': 'men',
|
|
|
|
'child': 'children',
|
|
|
|
'sex': 'sexes'
|
2021-05-02 08:39:25 +00:00
|
|
|
};
|