None

@!tr('The Openteacher 2 file format')!@

@!tr('The Openteacher 2 file format is an XML 1.0 file with UTF-8 encoding.')!@

@!tr('An XML-scheme of the file format can be downloaded here.')!@

@!tr('NOTE: For the OpenTeacher 3 file format, please refer to the wiki.')!@

@!tr('Node structure')!@

- <root>
-- <title>
-- <question_language>
-- <answer_language>
-- <word>
--- <known>
--- <foreign>
--- <results>

(@!tr('The title of the word list')!@)
(@!tr('The name of the question language')!@)
(@!tr('The name of the answer language')!@)

(@!tr('This word in the question language')!@)
(@!tr('This word in the answer language')!@)
(@!tr('The results of this word in the format of 0/0')!@)

@!tr('Example a word list saved in the OpenTeacher 2 format')!@

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <title>Example</title>
    <question_language>Dutch</question_language>
    <answer_language>English</answer_language>
    <word>
        <known>een</known>
        <foreign>one</foreign>
        <results>0/0</results>
    </word>
    <word>
        <known>twee</known>
        <foreign>two</foreign>
        <results>0/0</results>
    </word>
    <word>
        <known>drie</known>
        <foreign>three</foreign>
        <results>0/0</results>
    </word>
</root>