grammar.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | site Language Lines
  6. |--------------------------------------------------------------------------
  7. |
  8. |
  9. */
  10. 'n' => 'noun',
  11. 'n.short' => 'n',
  12. 'ti' => 'three genders',
  13. 'ti.short' => '3g',
  14. 'v' => 'verb',
  15. 'v.short' => 'v',
  16. 'v:ind' => 'indeclinable verb',
  17. 'v:ind.short' => 'v.ind',
  18. 'ind' => 'indeclinable',
  19. 'ind.short' => 'ind',
  20. 'm' => 'masculine',
  21. 'm.short' => 'm',
  22. 'nt' => 'neuter',
  23. 'nt.short' => 'nt',
  24. 'f' => 'feminine',
  25. 'f.short' => 'f',
  26. 'sg' => 'singular',
  27. 'sg.short' => 'sg',
  28. 'pl' => 'plural',
  29. 'pl.short' => 'pl',
  30. 'nom' => 'nominative',
  31. 'nom.short' => 'nom',
  32. 'acc' => 'accusative',
  33. 'acc.short' => 'acc',
  34. 'gen' => 'genitive',
  35. 'gen.short' => 'gen',
  36. 'dat' => 'dative',
  37. 'dat.short' => 'dat',
  38. 'inst' => 'instrumental',
  39. 'inst.short' => 'ins',
  40. 'voc' => 'vocative',
  41. 'voc.short' => 'voc',
  42. 'abl' => 'ablative',
  43. 'abl.short' => 'abl',
  44. 'loc' => 'locative',
  45. 'loc.short' => 'loc',
  46. 'base' => 'stem',
  47. 'base.short' => 'stem',
  48. 'imp' => 'imperative',
  49. 'imp.short' => 'imp',
  50. 'cond' => 'conditional',
  51. 'cond.short' => 'cond',
  52. 'opt' => 'optative',
  53. 'opt.short' => 'opt',
  54. 'pres' => 'present',
  55. 'pres.short' => 'pres',
  56. 'aor' => 'aorist',
  57. 'aor.short' => 'aor',
  58. 'pf' => 'perfect',
  59. 'pf.short' => 'pf',
  60. 'fut' => 'future',
  61. 'fut.short' => 'fut',
  62. 'act' => 'active',
  63. 'act.short' => 'act',
  64. 'refl' => 'reflexive',
  65. 'refl.short' => 'refl',
  66. '1p' => 'first person',
  67. '1p.short' => '1p',
  68. '2p' => 'second person',
  69. '2p.short' => '2p',
  70. '3p' => 'third person',
  71. '3p.short' => '3p',
  72. 'prp' => 'present participle',
  73. 'prp.short' => 'prp',
  74. 'prpp' => 'passive present participle',
  75. 'prpp.short' => 'prpp',
  76. 'pp' => 'past participle',
  77. 'pp.short' => 'pp',
  78. 'ppa' => 'active past participle',
  79. 'ppa.short' => 'ppa',
  80. 'ppp' => 'passive past participle',
  81. 'ppp.short' => 'ppp',
  82. 'futp' => 'future participle',
  83. 'futp.short' => 'futp',
  84. 'fpa.short' => 'fpa',
  85. 'grd' => 'gerundive',
  86. 'grd.short' => 'grd',
  87. 'pass' => 'passive',
  88. 'pass.short' => 'pass',
  89. 'caus' => 'causative',
  90. 'caus.short' => 'caus',
  91. 'desid' => 'desiderative',
  92. 'desid.short' => 'desid',
  93. 'intens' => 'intensive',
  94. 'intens.short' => 'intens',
  95. 'denom' => 'denominative',
  96. 'denom.short' => 'denom',
  97. 'ger' => 'gerund',
  98. 'ger.short' => 'ger',
  99. 'abs' => 'absolutive',
  100. 'abs.short' => 'abs',
  101. 'inf' => 'infinitive',
  102. 'inf.short' => 'inf',
  103. 'adj' => 'adjective',
  104. 'adj.short' => 'adj',
  105. 'pron' => 'pronoun',
  106. 'pron.short' => 'pron',
  107. 'num' => 'numeral',
  108. 'num.short' => 'num',
  109. 'adv' => 'adverb',
  110. 'adv.short' => 'adv',
  111. 'conj' => 'conjunction',
  112. 'conj.short' => 'conj',
  113. 'prep' => 'preposition',
  114. 'prep.short' => 'prep',
  115. 'interj' => 'interjection',
  116. 'interj.short' => 'interj',
  117. 'pre' => 'prefix',
  118. 'pre.short' => 'pre',
  119. 'suf' => 'suffix',
  120. 'suf.short' => 'suf',
  121. 'end' => 'ending',
  122. 'end.short' => 'end',
  123. 'part' => 'component',
  124. 'part.short' => 'comp',
  125. 'un' => 'sandhi',
  126. 'un.short' => 'sandhi',
  127. 'none' => 'none',
  128. 'none.short' => '_',
  129. 'null' => 'null',
  130. 'null.short' => '_',
  131. '?' => '?',
  132. '?.short' => '?',
  133. 'ti:base' => 'three-gender stem',
  134. 'ti:base.short' => '3g.stem',
  135. 'n:base' => 'noun stem',
  136. 'n:base.short' => 'n.stem',
  137. 'v:base' => 'verb stem',
  138. 'v:base.short' => 'v.stem',
  139. 'adj:base' => 'adjective stem',
  140. 'adj:base.short' => 'adj.stem',
  141. 'fpp' => 'future passive participle',
  142. 'fpp.short' => 'fpp',
  143. 'cp.short' => 'comp',
  144. 'cp' => 'compound component',
  145. 'indconj.short' => 'conj',
  146. 'indconj' => 'indeclinable conjunction',
  147. 'pron:base.short' => 'pron.stem',
  148. 'pron:base' => 'pronoun stem',
  149. 'note.short' => 'note',
  150. 'note' => 'note',
  151. 'vind.short' => 'v.ind',
  152. 'vind' => 'indeclinable verb',
  153. 'vdn' => 'verbal noun',
  154. 'vdn.short' => 'v.n',
  155. "relations.iad.label" => "adjunct modifier",
  156. "relations.asv.label" => "agent → verb",
  157. "relations.aov.label" => "object → verb",
  158. "relations.daso-p.label" => "subject → copula",
  159. "relations.daso-s.label" => "predicate → copula",
  160. "relations.nio.label" => "described (subject) → qualifier (predicate)",
  161. "relations.nid.label" => "named → naming",
  162. "relations.dasd-p.label" => "<naming> subject → copula",
  163. "relations.dasd-s.label" => "<naming> predicate → copula",
  164. "relations.dao-p.label" => "passive double object - primary",
  165. "relations.dao-s.label" => "passive double object - secondary",
  166. "relations.iov.label" => "object → verb",
  167. "relations.dio-p.label" => "double object <primary> → verb",
  168. "relations.dio-s.label" => "double object <secondary> → verb",
  169. "relations.dis-p.label" => "subject → copula (passive)",
  170. "relations.dis-s.label" => "predicate → copula (passive)",
  171. "relations.stc.label" => "spatiotemporal context → ongoing action",
  172. "relations.adv.label" => "verb modifier → verb",
  173. "relations.imp.label" => "manner → verb",
  174. "relations.soe.label" => "accompaniment <with conjunction>",
  175. "relations.soi.label" => "accompaniment <without conjunction>",
  176. "relations.isv.label" => "<non-nominative> agent → verb",
  177. "relations.cau.label" => "cause → effect / attribution",
  178. "relations.iov-c.label" => "causative object → verb",
  179. "relations.adj.label" => "noun modifier → modified",
  180. "relations.rec.label" => "recipient → giving",
  181. "relations.pur.label" => "purpose → verb",
  182. "relations.det.label" => "departure point → departure",
  183. "relations.coc.label" => "distinction / comparison",
  184. "relations.pos.label" => "possessor → possessed",
  185. "relations.coi.label" => "whole [set] → contained [subset] / collection → individual element",
  186. "relations.lov.label" => "container → verb / container → contained",
  187. "relations.mot.label" => "manifestation → having manifestation",
  188. "relations.whp.label" => "whole → part",
  189. "relations.def.label" => "defining characteristic",
  190. "relations.ac.label" => "absolute clause",
  191. "relations.avc.label" => "absolute voice clause",
  192. "relations.qus.label" => "inside quote → quotation mark",
  193. "relations.qum.label" => "quotation mark → outside quote",
  194. "relations.enu.label" => "enumeration → dash",
  195. "relations.enm.label" => "dash → enumerated",
  196. ];