Files
gf-rgl/src/turkish/AdverbTur.gf
Ayberk Tosun 7790defb9e [WIP] Round of updates to Turkish (#15)
* Add linearization for `AdAdv` which is just `cc2`

* Add rudimentary linearization for `AdnCAdv`

* Add rudimentary linearization for `UseCl`

* Add trivial linearization for `SubjS`

* Add forgotten semicolon

* Override the lintype of CAdv from CommonX

* Add cases for `CAdv`s

* Augment the linearization of `AdnCAdv` with case information coming from the `CAdv`

* Override the lintype for `AdN`

* Implement linearizations for `AdN` and `AdnCAdv`

* Fix the linearization for `more_CAdv`

* Implment the linearization for `ComparAdvAdj`

* Add a rudimentary linearizations for `ComparAdvAdjS`

* Add rudimentary linearization for `BaseAP`

* Add linearization for `BaseAdV`

* Add linearization for `BaseAdv`

* Add a new param `Gerundification`

* Add a new `VForm` `VNoun` for verbal nouns

* Parameterize the lintypes of S and Cl by the new `Gerundification` param

* Update everything to work with the `Gerundification` parameterization

* Account for the `VNoun` case in `makeVerb`

* Revise the TODO for `ComparAdvAdjS`

* Add the subordination suffix dik in SuffixTur (not used yet)

* Formatting

* Start implementing the suffix -dik in `makeVerb`

* Add TODO for `ComplVS`

* Fix `mkClause`

* Implement a rudimentary linearization for `ComplVS`
2019-03-11 08:06:57 +01:00

23 lines
589 B
Plaintext

concrete AdverbTur of Adverb = CatTur ** open ResTur, Prelude in {
lin
PrepNP prep np = {s = np.s ! prep.c ++ prep.s} ;
always_AdV = {s = "her zaman"} ;
AdAdv = cc2 ;
-- TODO: test this later; depends on less_CAdv.
AdnCAdv cadv = { s = cadv.s; c = cadv.c } ;
ComparAdvAdj cadv a np = {
s = np.s ! cadv.c ++ cadv.s ++ a.s ! Sg ! cadv.c
} ;
-- TODO: inflect the subject to genitive.
ComparAdvAdjS cadv a s = {
s = s.s ! SubordSuffixDik ++ cadv.s ++ a.s ! Sg ! Nom
} ;
SubjS s1 s2 = {s = s1.s ++ s2.s ! SubordSuffixDik} ;
}