diff --git a/lib/resource/catalan/CompatibilityCat.gf b/lib/resource/catalan/CompatibilityCat.gf new file mode 100644 index 000000000..e12287c45 --- /dev/null +++ b/lib/resource/catalan/CompatibilityCat.gf @@ -0,0 +1,11 @@ +--# -path=.:../romance:../abstract:../common + +concrete CompatibilityCat of Compatibility = CatCat ** open Prelude, CommonRomance in { + +-- from Noun 19/4/2008 + +lin + NumInt n = {s = \\_ => n.s ; isNum = True ; n = Pl} ; + OrdInt n = {s = \\_ => n.s ++ "."} ; --- + +} diff --git a/lib/resource/french/CompatibilityFre.gf b/lib/resource/french/CompatibilityFre.gf new file mode 100644 index 000000000..89680f533 --- /dev/null +++ b/lib/resource/french/CompatibilityFre.gf @@ -0,0 +1,11 @@ +--# -path=.:../romance:../abstract:../common + +concrete CompatibilityFre of Compatibility = CatFre ** open Prelude, CommonRomance in { + +-- from Noun 19/4/2008 + +lin + NumInt n = {s = \\_ => n.s ; isNum = True ; n = Pl} ; + OrdInt n = {s = \\_ => n.s ++ "."} ; --- + +} diff --git a/lib/resource/italian/CompatibilityIta.gf b/lib/resource/italian/CompatibilityIta.gf new file mode 100644 index 000000000..91446be55 --- /dev/null +++ b/lib/resource/italian/CompatibilityIta.gf @@ -0,0 +1,11 @@ +--# -path=.:../romance:../abstract:../common + +concrete CompatibilityIta of Compatibility = CatIta ** open Prelude, CommonRomance in { + +-- from Noun 19/4/2008 + +lin + NumInt n = {s = \\_ => n.s ; isNum = True ; n = Pl} ; + OrdInt n = {s = \\_ => n.s ++ "."} ; --- + +}