mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-22 09:32:53 -06:00
fixes with Jolene in Chinese
This commit is contained in:
@@ -211,14 +211,14 @@ Lexicon and Structural for her inspection and completions.
|
|||||||
14/10
|
14/10
|
||||||
|
|
||||||
Lexicon and Structural checked and completed by Jolene. Some open issues found by Jolene, hopefully to be fixed this week:
|
Lexicon and Structural checked and completed by Jolene. Some open issues found by Jolene, hopefully to be fixed this week:
|
||||||
- generics for weather
|
- generics for weather -> Extra
|
||||||
- "something"
|
- "something" -> Extra (stg for event vs. physical object)
|
||||||
- relative clause with complex RP
|
- relative clause with complex RP -> postpone; discontinuous?
|
||||||
- adjectives for animates
|
- adjectives for animates -> leave to semantics (cf. Thai)
|
||||||
- weather verbs rather VP's
|
- weather verbs rather VP's -> leave to semantic lexicon
|
||||||
- markers 把(marker for direct-object), 被(marker for indirect-object)
|
- markers 把(marker for direct-object), 被(marker for indirect-object) -> fix for V2A, V3 with ba
|
||||||
- positions of the parts of Subj
|
- positions of the parts of Subj -> fix by introducing particles before or after the subject of the main clause
|
||||||
- the three de particles: 的,地,得”
|
- the three de particles: 的,地,得”-> OK now
|
||||||
的 : Adj/AP ++ "的" ++ NP
|
的 : Adj/AP ++ "的" ++ NP
|
||||||
“地”: Adv ++ “地” ++ V e.g. 飞快(fly fast)地(de)跑(run)
|
“地”: Adv ++ “地” ++ V e.g. 飞快(fly fast)地(de)跑(run)
|
||||||
“ 得”: V ++ “得” ++ Adv(complement) e.g. 跑(run)得(de)快(fast)
|
“ 得”: V ++ “得” ++ Adv(complement) e.g. 跑(run)得(de)快(fast)
|
||||||
@@ -244,25 +244,25 @@ p. 28 "who is X" vs. "X is who"
|
|||||||
|
|
||||||
p. 38 er -> liang before a measure word
|
p. 38 er -> liang before a measure word
|
||||||
|
|
||||||
p. 41 ordinals require measure words: di yi ge xuesheng
|
p. 41 ordinals require measure words: di yi ge xuesheng -> possessive + ord + class ; no the + ord
|
||||||
|
|
||||||
p. 44 how many - duoshao vs. yi
|
p. 44 how many - duoshao vs. ji -> ji sui(how many years, to kids)
|
||||||
|
|
||||||
p. 63 possessive precedes indefinite plural: wo de hen duo pengyou "many of my friends"
|
p. 63 possessive precedes indefinite plural: wo de hen duo pengyou "many of my friends"
|
||||||
|
|
||||||
p. 94 degree + adjective + de + noun: hen da de wuzi
|
p. 94 degree + adjective + de + noun: hen da de wuzi
|
||||||
|
|
||||||
p. 95 no copula in adjectival predication
|
p. 95 no copula in adjectival predication -> use hen
|
||||||
|
|
||||||
p. 96 adjectives negated by bu
|
p. 96 adjectives negated by bu
|
||||||
|
|
||||||
p. 97 AB -> AABB reduplication
|
p. 97 AB -> AABB reduplication
|
||||||
|
|
||||||
p. 104 non-gradable adjectives require shi: zhei tiao yu shi huo de
|
p. 104 non-gradable adjectives require shi: zhei tiao yu shi huo de -> keep this as general rule for APs so far
|
||||||
|
|
||||||
p. 106 it was Chinese that I studied
|
p. 106 it was Chinese that I studied -> move cleft to the end
|
||||||
|
|
||||||
p. 116 I did it better than you
|
p. 116 I did it better than you -> to implement
|
||||||
|
|
||||||
p. 128 disyllabic place words
|
p. 128 disyllabic place words
|
||||||
|
|
||||||
|
|||||||
@@ -24,6 +24,8 @@ lin
|
|||||||
possess_Prep = mkPrep "的" [];
|
possess_Prep = mkPrep "的" [];
|
||||||
with_Prep = mkPrep "一起" "和";
|
with_Prep = mkPrep "一起" "和";
|
||||||
|
|
||||||
|
ba_s = "把" ;
|
||||||
|
|
||||||
and_Conj = {s = table {
|
and_Conj = {s = table {
|
||||||
CPhr CNPhrase => mkConjForm "和" ;
|
CPhr CNPhrase => mkConjForm "和" ;
|
||||||
CPhr CAPhrase => mkConjForm "而" ;
|
CPhr CAPhrase => mkConjForm "而" ;
|
||||||
@@ -49,7 +51,7 @@ where_IAdv = mkIAdvL "哪里" ;
|
|||||||
when_IAdv = mkIAdvL "什么时候" ;
|
when_IAdv = mkIAdvL "什么时候" ;
|
||||||
how_IAdv = mkIAdvL "如何" ;
|
how_IAdv = mkIAdvL "如何" ;
|
||||||
all_Predet = ssword "所有" ;
|
all_Predet = ssword "所有" ;
|
||||||
many_Det = mkDet "多" Pl ;
|
many_Det = mkDet "很多" DTPoss ;
|
||||||
someSg_Det = mkDet (word "一些") Sg ;
|
someSg_Det = mkDet (word "一些") Sg ;
|
||||||
somePl_Det = mkDet (word "一些") Sg ;
|
somePl_Det = mkDet (word "一些") Sg ;
|
||||||
few_Det = mkDet "少" Pl ;
|
few_Det = mkDet "少" Pl ;
|
||||||
@@ -101,7 +103,7 @@ to_Prep = mkPrep "往" ; --s
|
|||||||
|
|
||||||
have_V2 = mkV2 "有" ;
|
have_V2 = mkV2 "有" ;
|
||||||
|
|
||||||
yes_Utt = ss copula_s ;
|
yes_Utt = ss "对" ;
|
||||||
no_Utt = ss neg_s ;
|
no_Utt = ss neg_s ;
|
||||||
|
|
||||||
oper
|
oper
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ concrete VerbChi of Verb = CatChi ** open ResChi, Prelude in {
|
|||||||
|
|
||||||
PassV2 v = insertObj (mkNP passive_s) (predV v) ; ----
|
PassV2 v = insertObj (mkNP passive_s) (predV v) ; ----
|
||||||
|
|
||||||
CompAP ap = insertObj (mkNP ap.s) (predV copula) ; ---- hen / bu
|
CompAP ap = insertObj (mkNP (ap.s ++ possessive_s)) (predV copula) ; ---- hen / bu
|
||||||
|
|
||||||
CompNP np = insertObj np (predV copula) ; ----
|
CompNP np = insertObj np (predV copula) ; ----
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user