daidai 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +31 -0
- data/LICENSE +674 -0
- data/NOTICE +42 -0
- data/README.md +267 -0
- data/lib/daidai/conjugator.rb +122 -0
- data/lib/daidai/deinflector.rb +211 -0
- data/lib/daidai/kabosu.rb +134 -0
- data/lib/daidai/resources/conj.csv +14 -0
- data/lib/daidai/resources/conjo.csv +1138 -0
- data/lib/daidai/resources/conotes.csv +18 -0
- data/lib/daidai/resources/japanese-transforms.json +8847 -0
- data/lib/daidai/resources/kwpos.csv +93 -0
- data/lib/daidai/tables.rb +55 -0
- data/lib/daidai/version.rb +5 -0
- data/lib/daidai/word.rb +134 -0
- data/lib/daidai.rb +75 -0
- metadata +121 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
id note
|
|
2
|
+
1 "Irregular conjugation. Note that this not the same as the definition
|
|
3
|
+
of ""irregular verb"" commonly found in textbooks (typically する and
|
|
4
|
+
来る). It denotes okurigana that is different than other words of
|
|
5
|
+
the same class. Thus the past tense of 行く (行った) is an irregular
|
|
6
|
+
conjugation because other く (v5k) verbs use いた as the okurigana for
|
|
7
|
+
this conjugation. します is not an irregular conjugation because if
|
|
8
|
+
we take する to behave as a v1 verb the okurigana is the same as other
|
|
9
|
+
v1 verbs despite the sound change of the stem (す) part of the verb
|
|
10
|
+
to し."
|
|
11
|
+
2 na-adjectives and nouns are usually used with the なら nara conditional, instead of with であれば de areba. なら is a contracted and more common form of ならば.
|
|
12
|
+
3 では is often contracted to じゃ in colloquial speech.
|
|
13
|
+
4 The (first) non-abbreviated form is obtained by applying sequentially the causative, then passive conjugations.
|
|
14
|
+
5 The -まい negative form is literary and rather rare.
|
|
15
|
+
6 The ら is sometimes dropped from -られる, etc. in the potential form in conversational Japanese, but it is not regarded as grammatically correct.
|
|
16
|
+
7 "'n' and 'adj-na' words when used as predicates are followed by the
|
|
17
|
+
copula <a href=""entr.py?svc=jmdict&sid=&q=2089020.jmdict"">だ</a> which is what is conjugated (<a href=""conj.py?svc=jmdict&sid=&q=2089020.jmdict"">conjugations</a>)."
|
|
18
|
+
8 'vs' words are followed by <a href="entr.py?svc=jmdict&sid=&q=1157170.jmdict">する</a> which is what is conjugated (<a href=""conj.py?svc=jmdict&sid=&q=1157170.jmdict"">conjugations</a>).
|