diff options
| author | aarne <aarne@cs.chalmers.se> | 2008-12-01 18:02:08 +0000 |
|---|---|---|
| committer | aarne <aarne@cs.chalmers.se> | 2008-12-01 18:02:08 +0000 |
| commit | 3efc24bbeac98f56653b4465efc8f734491fef20 (patch) | |
| tree | 6b38b7a021fe559ca1771d827684f933c81955f3 /next-lib/src/italian | |
| parent | 22112ca160a131bccc3d06c7b880a3dca843ca17 (diff) | |
fixed the gender of French numeral "un"
Diffstat (limited to 'next-lib/src/italian')
| -rw-r--r-- | next-lib/src/italian/NumeralIta.gf | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/next-lib/src/italian/NumeralIta.gf b/next-lib/src/italian/NumeralIta.gf index 453caee0f..36a6e7553 100644 --- a/next-lib/src/italian/NumeralIta.gf +++ b/next-lib/src/italian/NumeralIta.gf @@ -23,7 +23,10 @@ lin pot01 = let uno = (mkTal "uno" "undici" "dieci" "primo").s in {s =\\f,g => case f of { ental pred => [] ; - _ => uno ! f ! g + _ => case g of { + NCard Fem => "una" ; + _ => uno ! f ! g + } } ; n = Sg} ; |
