added a project for Portuguese as a copy of Spanish

This commit is contained in:
aarne
2016-04-25 19:58:18 +00:00
parent 1c2ab94ec5
commit 6267f9f71f
48 changed files with 89868 additions and 5 deletions
+12
View File
@@ -0,0 +1,12 @@
concrete TextPor of Text = CommonX - [Temp,TTAnt,Tense,TPres,TPast,TFut,TCond] ** {
flags coding=utf8 ;
-- This works for the special punctuation marks of Pornish.
lin
TEmpty = {s = []} ;
TFullStop x xs = {s = x.s ++ "." ++ xs.s} ;
TQuestMark x xs = {s = "¿" ++ x.s ++ "?" ++ xs.s} ;
TExclMark x xs = {s = "¡" ++ x.s ++ "!" ++ xs.s} ;
}