Greek by Ioanna Papodopoulou - complete, 27th RGL language

This commit is contained in:
aarne
2013-04-25 13:22:28 +00:00
parent bfb81a5bb6
commit b65ff494e6
44 changed files with 8355 additions and 493 deletions

View File

@@ -1,5 +1,5 @@
lang1 = "Eng"
lang2 = "Chi"
lang2 = "Gre"
-- to write a comparison for two languages
@@ -14,7 +14,7 @@ mkExx sss = case sss of
(s1:ss1,s2:ss2) | isMsg s1 -> mkExx (ss1,s2:ss2)
(s1:ss1,s2:ss2) | isMsg s2 -> mkExx (s1:ss1,ss2)
(s1:ss1,s2:ss2) | s1 /= s2 ->
putStrLn (drops s1) >> putStrLn (filter (not . (==' ')) (drops s2)) >> putStrLn [] >> mkExx (ss1,ss2) -- show strings
putStrLn (drops s1) >> putStrLn (drops s2) >> putStrLn [] >> mkExx (ss1,ss2) -- show strings
(s1:ss1,s2:ss2) | s1 == s2 && not (isJunk s1) ->
putStrLn (drops s1) >> mkExx (ss1,ss2) -- show the term
(s1:ss1,s2:ss2) | s1 == s2 -> mkExx (ss1,ss2)

View File

@@ -4,6 +4,8 @@ all: exx synopsis
index:
txt2tags -thtml index.txt
status:
txt2tags -thtml status.txt
synopsis:
runghc MkSynopsis.hs
@@ -27,6 +29,7 @@ exx: exx-script
gf -retain -s ../alltenses/TryFin.gfo <api-examples.gfs >api-examples-Fin.txt
gf -retain -s ../alltenses/TryFre.gfo <api-examples.gfs >api-examples-Fre.txt
gf -retain -s ../alltenses/TryGer.gfo <api-examples.gfs >api-examples-Ger.txt
gf -retain -s ../alltenses/TryGre.gfo <api-examples.gfs >api-examples-Gre.txt
gf -retain -s ../alltenses/TryHin.gfo <api-examples.gfs >api-examples-Hin.txt
gf -retain -s ../alltenses/TryIta.gfo <api-examples.gfs >api-examples-Ita.txt
gf -retain -s ../alltenses/TryJpn.gfo <api-examples.gfs >api-examples-Jpn.txt

View File

@@ -19,7 +19,7 @@ revealedLang = "Eng"
-- all languages shown
apiExxFiles = ["api-examples-" ++ lang ++ ".txt" | lang <- words
-- "Eng Chi"
"Afr Bul Cat Chi Dan Dut Eng Fin Fre Ger Hin Ita Jpn Lav Nep Nor Pes Pnb Pol Ron Rus Snd Spa Swe Tha Urd"
"Afr Bul Cat Chi Dan Dut Eng Fin Fre Ger Gre Hin Ita Jpn Lav Nep Nor Pes Pnb Pol Ron Rus Snd Spa Swe Tha Urd"
]
main = do
@@ -249,6 +249,7 @@ paradigmFiles = [
("Finnish", srcPath "/finnish/ParadigmsFin.gf"),
("French", srcPath "/french/ParadigmsFre.gf"),
("German", srcPath "/german/ParadigmsGer.gf"),
("Greek", srcPath "/greek/ParadigmsGre.gf"),
("Hindi", srcPath "/hindi/ParadigmsHin.gf"),
-- ("Interlingua", srcPath "/interlingua/ParadigmsIna.gf"),
("Italian", srcPath "/italian/ParadigmsIta.gf"),

View File

@@ -7,7 +7,7 @@
<CENTER>
<H1>The Status of the GF Resource Grammar Library</H1>
<FONT SIZE="4"><I>Aarne Ranta</I></FONT><BR>
<FONT SIZE="4">20130130</FONT>
<FONT SIZE="4">20130425</FONT>
</CENTER>
<P>
@@ -222,6 +222,20 @@ are marked in the table
<TD>*AR,HH,EG</TD>
</TR>
<TR>
<TD>Gre</TD>
<TD>Greek</TD>
<TD>+</TD>
<TD>-</TD>
<TD>++</TD>
<TD>+</TD>
<TD>+</TD>
<TD>+</TD>
<TD>-</TD>
<TD>-</TD>
<TD>-</TD>
<TD>*IP</TD>
</TR>
<TR>
<TD>Heb</TD>
<TD>Hebrew</TD>
<TD>+</TD>
@@ -615,6 +629,7 @@ GP Gabriele Paganelli,
IA Ingrid Andersson,
IL Inari Listenmaa,
IN Ilona Novak,
IP Ioanna Papadopoulou,
JB Jean-Philippe Bernardy,
JC John J. Camilleri,
JD Jherna Devi,

View File

@@ -29,6 +29,7 @@ are marked in the table
| Fin | Finnish | + | + | ++ | + | + | + | + | - | + | *AR
| Fre | French | + | + | ++ | + | + | + | + | + | + | *AR,RE
| Ger | German | + | + | ++ | + | + | + | + | + | + | *AR,HH,EG
| Gre | Greek | + | - | ++ | + | + | + | - | - | - | *IP
| Heb | Hebrew | + | - | - | - | - | - | - | - | - | *DD
| Hin | Hindi | + | + | ++ | + | + | + | + | - | - | *SV,*KP,MH,AR
| Ina | Interlingua | + | + | ++ | + | + | - | - | - | - | JB
@@ -98,6 +99,7 @@ GP Gabriele Paganelli,
IA Ingrid Andersson,
IL Inari Listenmaa,
IN Ilona Novak,
IP Ioanna Papadopoulou,
JB Jean-Philippe Bernardy,
JC John J. Camilleri,
JD Jherna Devi,

View File

@@ -8,7 +8,7 @@
=Introduction=
The GF Resource Grammar Library is the standard library for Grammatical Framework.
It covers the morphology and basic syntax of currently 26 languages.
It covers the morphology and basic syntax of currently 27 languages.
This document contains the most important parts of the GF Resource Grammar API,
as needed by a GF application programmer.
@@ -23,12 +23,12 @@ constructing trees in them.
- [Chapter 2 #toc5]: syntactic construction functions, with cross-links and
examples.
- [Chapter 3 #toc83]: morphological paradigms.
- [Chapter 4 #toc108]: additional libraries.
- [Chapter 5 #toc115]: how to "browse" the library by
- [Chapter 4 #toc110]: additional libraries.
- [Chapter 5 #toc116]: how to "browse" the library by
loading the grammars into the ``gf`` command editor.
- [Chapter 6 #toc116]: a brief example of how application grammars can
- [Chapter 6 #toc117]: a brief example of how application grammars can
use the resource modules.
- [Detailed table of contents #toc117].
- [Detailed table of contents #toc118].
Other relevant documents:

File diff suppressed because it is too large Load Diff