Difference between revisions of "Talk:Módulo de procesamiento de expresiones separables"

From Apertium
Jump to navigation Jump to search
m (New page: ==Example for Afrikaans== <pre> <sep> <declarations> <sequence-decl n="pronoun"> <word tags="prn.*"/> </sequence-decl> <sequence-decl n="SN1"> <word tags="det.*"/> <word ...)
 
Line 1: Line 1:
 
==Example for Afrikaans==
 
==Example for Afrikaans==
  +
  +
;Separable
  +
  +
* Sterrekundiges '''kondig''' [die ontdekking] '''aan'''.
  +
* Astronomers '''announce''' [the discovery].
  +
  +
;Past tense
  +
  +
* Sterrekundiges '''het''' [die ontdekking] '''aangekondig'''.
  +
* Astronomers '''have announced''' [the discovery].
  +
  +
 
<pre>
 
<pre>
 
<sep>
 
<sep>

Revision as of 11:11, 22 April 2008

Example for Afrikaans

Separable
  • Sterrekundiges kondig [die ontdekking] aan.
  • Astronomers announce [the discovery].
Past tense
  • Sterrekundiges het [die ontdekking] aangekondig.
  • Astronomers have announced [the discovery].


<sep>
<declarations>
  <sequence-decl n="pronoun">
    <word tags="prn.*"/>
  </sequence-decl>
  <sequence-decl n="SN1">
    <word tags="det.*"/>
    <word tags="adj.*"/>
    <word tags="n.*"/>
  <sequence-decl>
  <list-decl n=”het”>
    <word lemma=”hê” tags=”vblex.*”/>
  </list>
</declarations>
<expressions>
  <expression name="past tense">
    <list n="het”/>
    <sequence n="SN1"/>
    <word lemma="ge" tags="pref.past"/>
    <word lemma="*" tags="vblex.*"/>
  </expression>
</expressions>
</sep>