-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
LAPTOP\Stefán Ö Sigmundsson
committed
Nov 28, 2019
0 parents
commit 2f9d742
Showing
1,239 changed files
with
86,735 additions
and
0 deletions.
There are no files selected for viewing
113 changes: 113 additions & 0 deletions
113
Software build/Console Application/eMI Spanish Verb Conjugator/Conjugations/Conjugations.xsd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright © 2019 eMedia Intellect. | ||
This file is part of eMI Spanish Verb Conjugator. | ||
eMI Spanish Verb Conjugator is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
eMI Spanish Verb Conjugator is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with eMI Spanish Verb Conjugator. If not, see http://www.gnu.org/licenses/. | ||
--> | ||
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations" xmlns:xs="http://www.w3.org/2001/XMLSchema"> | ||
<xs:element name="verb"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="form" minOccurs="1" maxOccurs="3"> | ||
<xs:complexType> | ||
<xs:simpleContent> | ||
<xs:extension base="xs:string"> | ||
<xs:attribute name="type" use="required"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="infinitive"/> | ||
<xs:enumeration value="gerund"/> | ||
<xs:enumeration value="past-participle"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:attribute> | ||
<xs:attribute name="defective" type="xs:boolean" use="optional"/> | ||
</xs:extension> | ||
</xs:simpleContent> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="mood" minOccurs="0" maxOccurs="4"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="tense" minOccurs="1" maxOccurs="5"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element name="conjugation" minOccurs="0" maxOccurs="6"> | ||
<xs:complexType> | ||
<xs:simpleContent> | ||
<xs:extension base="xs:string"> | ||
<xs:attribute name="number" use="required"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="singular"/> | ||
<xs:enumeration value="plural"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:attribute> | ||
<xs:attribute name="person" use="required"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:unsignedByte"> | ||
<xs:enumeration value="1"/> | ||
<xs:enumeration value="2"/> | ||
<xs:enumeration value="3"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:attribute> | ||
</xs:extension> | ||
</xs:simpleContent> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
<xs:attribute name="type" use="optional"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="present"/> | ||
<xs:enumeration value="imperfect"/> | ||
<xs:enumeration value="preterite"/> | ||
<xs:enumeration value="future"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:attribute> | ||
<xs:attribute name="variant" use="optional"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="affirmative"/> | ||
<xs:enumeration value="negative"/> | ||
<xs:enumeration value="ra"/> | ||
<xs:enumeration value="se"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:attribute> | ||
<xs:attribute name="defective" type="xs:boolean" use="optional"/> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
<xs:attribute name="type" use="required"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="indicative"/> | ||
<xs:enumeration value="subjunctive"/> | ||
<xs:enumeration value="imperative"/> | ||
<xs:enumeration value="conditional"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:attribute> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |
1 change: 1 addition & 0 deletions
1
Software build/Console Application/eMI Spanish Verb Conjugator/Conjugations/Defective.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
soler |
51 changes: 51 additions & 0 deletions
51
...ild/Console Application/eMI Spanish Verb Conjugator/Conjugations/Irregular/ar/abrazar.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright © 2019 eMedia Intellect. | ||
This file is part of eMI Spanish Verb Conjugator. | ||
eMI Spanish Verb Conjugator is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
eMI Spanish Verb Conjugator is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with eMI Spanish Verb Conjugator. If not, see http://www.gnu.org/licenses/. | ||
--> | ||
<verb xmlns="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations ../../Conjugations.xsd"> | ||
<form type="infinitive">abrazar</form> | ||
<mood type="indicative"> | ||
<tense type="preterite"> | ||
<conjugation number="singular" person="1">abracé</conjugation> | ||
</tense> | ||
</mood> | ||
<mood type="subjunctive"> | ||
<tense type="present"> | ||
<conjugation number="singular" person="1">abrace</conjugation> | ||
<conjugation number="singular" person="2">abraces</conjugation> | ||
<conjugation number="singular" person="3">abrace</conjugation> | ||
<conjugation number="plural" person="1">abracemos</conjugation> | ||
<conjugation number="plural" person="2">abracéis</conjugation> | ||
<conjugation number="plural" person="3">abracen</conjugation> | ||
</tense> | ||
</mood> | ||
<mood type="imperative"> | ||
<tense variant="affirmative"> | ||
<conjugation number="singular" person="3">abrace</conjugation> | ||
<conjugation number="plural" person="1">abracemos</conjugation> | ||
<conjugation number="plural" person="3">abracen</conjugation> | ||
</tense> | ||
<tense variant="negative"> | ||
<conjugation number="singular" person="2">abraces</conjugation> | ||
<conjugation number="singular" person="3">abrace</conjugation> | ||
<conjugation number="plural" person="1">abracemos</conjugation> | ||
<conjugation number="plural" person="2">abracéis</conjugation> | ||
<conjugation number="plural" person="3">abracen</conjugation> | ||
</tense> | ||
</mood> | ||
</verb> |
51 changes: 51 additions & 0 deletions
51
...ild/Console Application/eMI Spanish Verb Conjugator/Conjugations/Irregular/ar/acercar.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright © 2019 eMedia Intellect. | ||
This file is part of eMI Spanish Verb Conjugator. | ||
eMI Spanish Verb Conjugator is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
eMI Spanish Verb Conjugator is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with eMI Spanish Verb Conjugator. If not, see http://www.gnu.org/licenses/. | ||
--> | ||
<verb xmlns="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations ../../Conjugations.xsd"> | ||
<form type="infinitive">acercar</form> | ||
<mood type="indicative"> | ||
<tense type="preterite"> | ||
<conjugation number="singular" person="1">acerqué</conjugation> | ||
</tense> | ||
</mood> | ||
<mood type="subjunctive"> | ||
<tense type="present"> | ||
<conjugation number="singular" person="1">acerque</conjugation> | ||
<conjugation number="singular" person="2">acerques</conjugation> | ||
<conjugation number="singular" person="3">acerque</conjugation> | ||
<conjugation number="plural" person="1">acerquemos</conjugation> | ||
<conjugation number="plural" person="2">acerquéis</conjugation> | ||
<conjugation number="plural" person="3">acerquen</conjugation> | ||
</tense> | ||
</mood> | ||
<mood type="imperative"> | ||
<tense variant="affirmative"> | ||
<conjugation number="singular" person="3">acerque</conjugation> | ||
<conjugation number="plural" person="1">acerquemos</conjugation> | ||
<conjugation number="plural" person="3">acerquen</conjugation> | ||
</tense> | ||
<tense variant="negative"> | ||
<conjugation number="singular" person="2">acerques</conjugation> | ||
<conjugation number="singular" person="3">acerque</conjugation> | ||
<conjugation number="plural" person="1">acerquemos</conjugation> | ||
<conjugation number="plural" person="2">acerquéis</conjugation> | ||
<conjugation number="plural" person="3">acerquen</conjugation> | ||
</tense> | ||
</mood> | ||
</verb> |
50 changes: 50 additions & 0 deletions
50
...ild/Console Application/eMI Spanish Verb Conjugator/Conjugations/Irregular/ar/acordar.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright © 2019 eMedia Intellect. | ||
This file is part of eMI Spanish Verb Conjugator. | ||
eMI Spanish Verb Conjugator is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
eMI Spanish Verb Conjugator is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with eMI Spanish Verb Conjugator. If not, see http://www.gnu.org/licenses/. | ||
--> | ||
<verb xmlns="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations ../../Conjugations.xsd"> | ||
<form type="infinitive">acordar</form> | ||
<mood type="indicative"> | ||
<tense type="present"> | ||
<conjugation number="singular" person="1">acuerdo</conjugation> | ||
<conjugation number="singular" person="2">acuerdas</conjugation> | ||
<conjugation number="singular" person="3">acuerda</conjugation> | ||
<conjugation number="plural" person="3">acuerdan</conjugation> | ||
</tense> | ||
</mood> | ||
<mood type="subjunctive"> | ||
<tense type="present"> | ||
<conjugation number="singular" person="1">acuerde</conjugation> | ||
<conjugation number="singular" person="2">acuerdes</conjugation> | ||
<conjugation number="singular" person="3">acuerde</conjugation> | ||
<conjugation number="plural" person="3">acuerden</conjugation> | ||
</tense> | ||
</mood> | ||
<mood type="imperative"> | ||
<tense variant="affirmative"> | ||
<conjugation number="singular" person="2">acuerda</conjugation> | ||
<conjugation number="singular" person="3">acuerde</conjugation> | ||
<conjugation number="plural" person="3">acuerden</conjugation> | ||
</tense> | ||
<tense variant="negative"> | ||
<conjugation number="singular" person="2">acuerdes</conjugation> | ||
<conjugation number="singular" person="3">acuerde</conjugation> | ||
<conjugation number="plural" person="3">acuerden</conjugation> | ||
</tense> | ||
</mood> | ||
</verb> |
50 changes: 50 additions & 0 deletions
50
...ild/Console Application/eMI Spanish Verb Conjugator/Conjugations/Irregular/ar/acostar.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright © 2019 eMedia Intellect. | ||
This file is part of eMI Spanish Verb Conjugator. | ||
eMI Spanish Verb Conjugator is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
eMI Spanish Verb Conjugator is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with eMI Spanish Verb Conjugator. If not, see http://www.gnu.org/licenses/. | ||
--> | ||
<verb xmlns="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations ../../Conjugations.xsd"> | ||
<form type="infinitive">acostar</form> | ||
<mood type="indicative"> | ||
<tense type="present"> | ||
<conjugation number="singular" person="1">acuesto</conjugation> | ||
<conjugation number="singular" person="2">acuestas</conjugation> | ||
<conjugation number="singular" person="3">acuesta</conjugation> | ||
<conjugation number="plural" person="3">acuestan</conjugation> | ||
</tense> | ||
</mood> | ||
<mood type="subjunctive"> | ||
<tense type="present"> | ||
<conjugation number="singular" person="1">acueste</conjugation> | ||
<conjugation number="singular" person="2">acuestes</conjugation> | ||
<conjugation number="singular" person="3">acueste</conjugation> | ||
<conjugation number="plural" person="3">acuesten</conjugation> | ||
</tense> | ||
</mood> | ||
<mood type="imperative"> | ||
<tense variant="affirmative"> | ||
<conjugation number="singular" person="2">acuesta</conjugation> | ||
<conjugation number="singular" person="3">acueste</conjugation> | ||
<conjugation number="plural" person="3">acuesten</conjugation> | ||
</tense> | ||
<tense variant="negative"> | ||
<conjugation number="singular" person="2">acuestes</conjugation> | ||
<conjugation number="singular" person="3">acueste</conjugation> | ||
<conjugation number="plural" person="3">acuesten</conjugation> | ||
</tense> | ||
</mood> | ||
</verb> |
50 changes: 50 additions & 0 deletions
50
...uild/Console Application/eMI Spanish Verb Conjugator/Conjugations/Irregular/ar/actuar.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright © 2019 eMedia Intellect. | ||
This file is part of eMI Spanish Verb Conjugator. | ||
eMI Spanish Verb Conjugator is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
eMI Spanish Verb Conjugator is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with eMI Spanish Verb Conjugator. If not, see http://www.gnu.org/licenses/. | ||
--> | ||
<verb xmlns="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://emi.is/eMI-Spanish-Verb-Conjugator/Conjugations ../../Conjugations.xsd"> | ||
<form type="infinitive">actuar</form> | ||
<mood type="indicative"> | ||
<tense type="present"> | ||
<conjugation number="singular" person="1">actúo</conjugation> | ||
<conjugation number="singular" person="2">actúas</conjugation> | ||
<conjugation number="singular" person="3">actúa</conjugation> | ||
<conjugation number="plural" person="3">actúan</conjugation> | ||
</tense> | ||
</mood> | ||
<mood type="subjunctive"> | ||
<tense type="present"> | ||
<conjugation number="singular" person="1">actúe</conjugation> | ||
<conjugation number="singular" person="2">actúes</conjugation> | ||
<conjugation number="singular" person="3">actúe</conjugation> | ||
<conjugation number="plural" person="3">actúen</conjugation> | ||
</tense> | ||
</mood> | ||
<mood type="imperative"> | ||
<tense variant="affirmative"> | ||
<conjugation number="singular" person="2">actúa</conjugation> | ||
<conjugation number="singular" person="3">actúe</conjugation> | ||
<conjugation number="plural" person="3">actúen</conjugation> | ||
</tense> | ||
<tense variant="negative"> | ||
<conjugation number="singular" person="2">actúes</conjugation> | ||
<conjugation number="singular" person="3">actúe</conjugation> | ||
<conjugation number="plural" person="3">actúen</conjugation> | ||
</tense> | ||
</mood> | ||
</verb> |
Oops, something went wrong.