1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-28 20:37:40 +00:00

FRENCH: more gender fixes (-e...)

This commit is contained in:
Technochips
2022-07-05 23:00:10 +02:00
parent c652b6bd00
commit d69f4e868d
2 changed files with 75 additions and 67 deletions

View File

@@ -213,6 +213,10 @@ void genderrep(string& x, const string& w, const noun& N) {
rep(x, "%Le"+w, choose2(genus, "Le ", "La ")+N.nom);
rep(x, "%un"+w, choose2(genus, "un ", "une ")+N.nom);
rep(x, "%Un"+w, choose2(genus, "Un ", "Une ")+N.nom);
rep(x, "%er"+w, choose2(genus, "er", "ère"));
rep(x, "%e"+w, choose2(genus, "", "e"));
rep(x, "%x"+w, choose2(genus, "x", "se"));
}
#endif
}