From b1f0e058a805a695e20293f076c6ff6e2ed2b266 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 6 Nov 2010 08:12:26 +0100 Subject: [PATCH] Fix two function misspell in locale/fr.py --- locale/fr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locale/fr.py b/locale/fr.py index 23bb731d2..2a6884ea1 100644 --- a/locale/fr.py +++ b/locale/fr.py @@ -40,7 +40,7 @@ def pluralize(s): lowered in ['bijou', 'caillou', 'chou', 'genou', 'hibou', 'joujou', 'pou']: return s + 'x' - elif lowered.endwith('al') and \ + elif lowered.endswith('al') and \ lowered not in ['bal', 'carnaval', 'chacal', 'festival', 'récital', 'régal', 'cal', 'étal', 'aval', 'caracal', 'val', 'choral', 'corral', 'galgal', 'gayal']: @@ -53,7 +53,7 @@ def pluralize(s): return s + 'x' elif lowered == 'pare-feu': return s - elif lowered.endwith('eu') and \ + elif lowered.endswith('eu') and \ lowered not in ['bleu', 'pneu', 'émeu', 'enfeu']: # Note: when 'lieu' is a fish, it has a 's' ; else, it has a 'x' return s + 'x'