kiran srigiri <sirig...@gmail.com> čálii:

> Trying to make after adding words in .dix but hit with this error

Hi,

It takes some practice to read error messages. This one says that it
failed to parse somewhere on/after line 6. In your <sdefs>, you should
have only <sdef> elements (that's what "expecting (sdef)+" means), but
instead it found a CDATA in between all those sdefs. CDATA is e.g. plain
text, not xml. You would get such an error if you had e.g.

<sdefs>
    <sdef n="n"         c="Noun"/>
    <sdef n="np"        c="Proper noun"/>
    SOME TEXT HERE
    <sdef n="top"   c="Toponym"/>
</sdefs>

(You may want to try http://wiki.apertium.org/wiki/Apertium-viewer which
has an XML editor that can catch dix errors.)

Attachment: signature.asc
Description: PGP signature

_______________________________________________
Apertium-stuff mailing list
Apertium-stuff@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/apertium-stuff

Reply via email to