spanish-quizzer

An app to quiz you on Spanish vocabulary and verb conjugations
git clone https://git.ashermorgan.net/spanish-quizzer/
Log | Files | Refs | README

commit 691ce25e01c520550a5a43da7bcac8f5d57a370b
parent 4c485a8196eec1c7c3831941b17bcb40091cae64
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Tue, 14 Apr 2020 08:49:46 -0700

Implement transitions vocab.

Diffstat:
MReference/index.html | 1+
MReference/index.js | 7+++++++
AVocab/Transitions.csv | 48++++++++++++++++++++++++++++++++++++++++++++++++
Mindex.html | 1+
Mindex.js | 8++++++++
5 files changed, 65 insertions(+), 0 deletions(-)

diff --git a/Reference/index.html b/Reference/index.html @@ -31,6 +31,7 @@ <option>Adjectives</option> <option>Adverbs</option> <option>Prepositions</option> + <option>Transitions</option> </optgroup> <optgroup label="Spanish 1"> <option>Colors</option> diff --git a/Reference/index.js b/Reference/index.js @@ -51,6 +51,13 @@ function Load() { Sets["Prepositions"] = results.data; } }); + Papa.parse("../Vocab/Transitions.csv", { + download: true, + complete: function(results) { + // Set verbs + Sets["Transitions"] = results.data; + } + }); Papa.parse("../Vocab/Colors.csv", { download: true, complete: function(results) { diff --git a/Vocab/Transitions.csv b/Vocab/Transitions.csv @@ -0,0 +1,47 @@ +English,Spanish +Additionally,Adicionalmente +Afterwards,Más tarde +Although,Aunque +As long as,Siempre que +As soon as,Apenas +As,Como +As,Ya que +At first,Al principio +At last,Al final +Because of,A causa de +But,Pero +Despite,A pesar de +During,Durante +Even if,Aunque +Finally,Finalmente +Finally,Por último +First and foremost,Ante todo +First,Primero +For example,Por ejemplo +Furthermore,Además +However,Sin embargo +If,Si +In a word,En pocas palabras +In case,En caso de que +In other words,En otras palabras +In that case,En ese caso +In this way,De esta manera +Meanwhile,Mientras tanto +Now that,Ahora que +Now,Ahora +On the other hand,Por otro lado +Second,Segundo +Since,Como +Since,Desde +Since,Ya que +So,Entonces +Thanks to,Gracias a +That's why,Por eso +Then,Entonces +Then,Luego +Therefore,Por lo tanto +Thus,Así +To begin,Para empezar +To conclude,Para concluir +Unless,A menos que +While,Mientras +\ No newline at end of file diff --git a/index.html b/index.html @@ -30,6 +30,7 @@ <option>Adjectives</option> <option>Adverbs</option> <option>Prepositions</option> + <option>Transitions</option> </optgroup> <optgroup label="Spanish 1"> <option>Colors</option> diff --git a/index.js b/index.js @@ -64,6 +64,13 @@ function Load() { Sets["Prepositions"] = results.data; } }); + Papa.parse("Vocab/Transitions.csv", { + download: true, + complete: function(results) { + // Set verbs + Sets["Transitions"] = results.data; + } + }); Papa.parse("Vocab/Colors.csv", { download: true, complete: function(results) { @@ -207,6 +214,7 @@ function settingsSetChanged(setName) { case "Adjectives": case "Adverbs": case "Prepositions": + case "Transitions": case "Colors": case "Days": case "Months":