mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
derived Ita added
This commit is contained in:
@@ -27,9 +27,16 @@ The main changes from 0.9 to 1.0 are
|
||||
3. Some constructions have been dropped out or modified. This concerns
|
||||
in particular the determiner structure in the module Noun. Also the
|
||||
number of verb subcategorization patterns is lower: predication can
|
||||
be done by adding adverbs instead.
|
||||
be done by adding adverbs instead. Also the division between A and ADeg
|
||||
is eliminated.
|
||||
|
||||
4. Judging from the English implementation, there is a promise to get
|
||||
4. The implementation is more direct; there is no "SyntaxX" variant of
|
||||
each rule as in 0.9. The ease to find definitions and change them
|
||||
weighs many times more than the abstraction attained by indirection,
|
||||
in this case. Also compilation time and amount of generated code (gfr)
|
||||
decreases quite a bit.
|
||||
|
||||
5. Judging from the English implementation, there is a promise to get
|
||||
a lighter and more efficient resource library, just because of
|
||||
lessons learned from earlier implementations.
|
||||
|
||||
@@ -42,6 +49,8 @@ When will it be ready? Hopefully around February 2005.
|
||||
|
||||
---------- later history and status:
|
||||
|
||||
1/2 Italian added.
|
||||
|
||||
26/1 Norwegian added.
|
||||
|
||||
24/1 French complete, as well as the Romance parametrized modules.
|
||||
|
||||
@@ -972,7 +972,7 @@ The structure looks like this.
|
||||
| Finnish | X | + | - | X | X | 0
|
||||
| French | X | X | X | X | X | X
|
||||
| German | X | - | X | X | - | -
|
||||
| Italian | X | X | - | X | X | X
|
||||
| Italian | X | X | X | X | X | X
|
||||
| Norwegian | - | X | X | X | X | X
|
||||
| Russian | X | X | - | * | - | -
|
||||
| Spanish | - | X | - | X | X | X
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<P ALIGN="center"><CENTER><H1>GF Resource Grammar Library v. 1.0</H1>
|
||||
<FONT SIZE="4">
|
||||
<I>Author: Aarne Ranta <aarne (at) cs.chalmers.se></I><BR>
|
||||
Last update: Tue Jan 31 18:18:47 2006
|
||||
Last update: Wed Feb 1 17:41:25 2006
|
||||
</FONT></CENTER>
|
||||
|
||||
<P></P>
|
||||
@@ -69,6 +69,7 @@ The documentation of the individual modules:
|
||||
<UL>
|
||||
<LI><A HREF="gfdoc/ParadigmsEng.html">ParadigmsEng</A>: English lexical paradigms
|
||||
<LI><A HREF="gfdoc/ParadigmsFre.html">ParadigmsFre</A>: French lexical paradigms
|
||||
<LI><A HREF="gfdoc/ParadigmsIta.html">ParadigmsIta</A>: Italian lexical paradigms
|
||||
<LI><A HREF="gfdoc/ParadigmsGer.html">ParadigmsGer</A>: German lexical paradigms
|
||||
<LI><A HREF="gfdoc/ParadigmsNor.html">ParadigmsNor</A>: Norwegian lexical paradigms
|
||||
<LI><A HREF="gfdoc/ParadigmsSwe.html">ParadigmsSwe</A>: Swedish lexical paradigms
|
||||
|
||||
@@ -48,6 +48,7 @@ The documentation of the individual modules:
|
||||
|
||||
- [ParadigmsEng gfdoc/ParadigmsEng.html]: English lexical paradigms
|
||||
- [ParadigmsFre gfdoc/ParadigmsFre.html]: French lexical paradigms
|
||||
- [ParadigmsIta gfdoc/ParadigmsIta.html]: Italian lexical paradigms
|
||||
- [ParadigmsGer gfdoc/ParadigmsGer.html]: German lexical paradigms
|
||||
- [ParadigmsNor gfdoc/ParadigmsNor.html]: Norwegian lexical paradigms
|
||||
- [ParadigmsSwe gfdoc/ParadigmsSwe.html]: Swedish lexical paradigms
|
||||
|
||||
@@ -11,4 +11,7 @@ LexiconIta from 0.9
|
||||
StructuralIta, filling StructuralFre from 0.9
|
||||
NumeralsIta from 0.9 adding ordinals
|
||||
|
||||
17:30 done - but needs more testing.
|
||||
17:30 done - but needs more testing
|
||||
17:40 added Ita to mathematical and multimodal, updated doc/index.txt,
|
||||
doc/gf-resource.txt, and README
|
||||
|
||||
|
||||
24
lib/resource-1.0/mathematical/MathematicalIta.gf
Normal file
24
lib/resource-1.0/mathematical/MathematicalIta.gf
Normal file
@@ -0,0 +1,24 @@
|
||||
--# -path=.:../italian:../romance:../abstract:../common:prelude
|
||||
|
||||
concrete MathematicalIta of Mathematical =
|
||||
NounIta - [ComplN2], --- to avoid ambiguity
|
||||
-- VerbIta,
|
||||
-- AdjectiveIta,
|
||||
-- AdverbIta,
|
||||
NumeralIta,
|
||||
-- SentenceIta,
|
||||
QuestionIta,
|
||||
RelativeIta,
|
||||
ConjunctionIta,
|
||||
PhraseIta,
|
||||
StructuralIta,
|
||||
|
||||
SymbolIta,
|
||||
PredicationIta,
|
||||
|
||||
LexiconIta
|
||||
** {
|
||||
|
||||
flags startcat = Phr ;
|
||||
|
||||
} ;
|
||||
3
lib/resource-1.0/mathematical/PredicationIta.gf
Normal file
3
lib/resource-1.0/mathematical/PredicationIta.gf
Normal file
@@ -0,0 +1,3 @@
|
||||
concrete PredicationIta of Predication = CatIta ** PredicationI with
|
||||
(Lang = LangIta) ;
|
||||
|
||||
2
lib/resource-1.0/mathematical/SymbolIta.gf
Normal file
2
lib/resource-1.0/mathematical/SymbolIta.gf
Normal file
@@ -0,0 +1,2 @@
|
||||
concrete SymbolIta of Symbol = CatIta ** SymbolRomance with
|
||||
(ResRomance = ResIta) ;
|
||||
2
lib/resource-1.0/multimodal/DemonstrativeIta.gf
Normal file
2
lib/resource-1.0/multimodal/DemonstrativeIta.gf
Normal file
@@ -0,0 +1,2 @@
|
||||
concrete DemonstrativeIta of Demonstrative = CatIta ** DemonstrativeI with
|
||||
(Lang = LangIta) ;
|
||||
19
lib/resource-1.0/multimodal/MultimodalIta.gf
Normal file
19
lib/resource-1.0/multimodal/MultimodalIta.gf
Normal file
@@ -0,0 +1,19 @@
|
||||
--# -path=.:../italian/:../romance:../abstract:../common:prelude
|
||||
|
||||
concrete MultimodalIta of Multimodal =
|
||||
NounIta,
|
||||
-- Verb,
|
||||
AdjectiveIta,
|
||||
AdverbIta,
|
||||
-- NumeralIta,
|
||||
-- Sentence,
|
||||
-- Question,
|
||||
-- Relative,
|
||||
-- Conjunction,
|
||||
-- Phrase,
|
||||
-- Tensed,
|
||||
StructuralIta,
|
||||
DemonstrativeIta,
|
||||
LexiconIta
|
||||
** {} ;
|
||||
|
||||
Reference in New Issue
Block a user