File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ public static function configure(Inflections $inflections): void
40
40
->plural ('/(s|x|z)$/ ' , '\1 ' )
41
41
->irregular ('monsieur ' , 'messieurs ' )
42
42
->irregular ('madame ' , 'mesdames ' )
43
- ->irregular ('mademoiselle ' , 'mesdemoiselles ' );
43
+ ->irregular ('mademoiselle ' , 'mesdemoiselles ' )
44
+ ->uncountable (explode (' ' , "abattis autobus bras bus corps époux escalvis frais ours prix souris virus voix " ));
44
45
}
45
46
}
Original file line number Diff line number Diff line change 59
59
'monsieur ' => 'messieurs ' ,
60
60
'madame ' => 'mesdames ' ,
61
61
'mademoiselle ' => 'mesdemoiselles ' ,
62
+
63
+ # invariables
64
+
65
+ 'abattis ' => 'abattis ' ,
66
+ 'autobus ' => 'autobus ' ,
67
+ 'bras ' => 'bras ' ,
68
+ 'bus ' => 'bus ' ,
69
+ 'corps ' => 'corps ' ,
70
+ 'époux ' => 'époux ' ,
71
+ 'escalvis ' => 'escalvis ' ,
72
+ 'frais ' => 'frais ' ,
73
+ 'ours ' => 'ours ' ,
74
+ 'prix ' => 'prix ' ,
75
+ 'souris ' => 'souris ' ,
76
+ 'virus ' => 'virus ' ,
77
+ 'voix ' => 'voix ' ,
78
+
62
79
];
You can’t perform that action at this time.
0 commit comments