-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathExodus.lua
51 lines (40 loc) · 1.57 KB
/
Exodus.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
local Exodus = {}
require("Etymology")
-- function Genesis.sizeOf(chap)
-- return #Chapter[chap]
-- end
Chapter = {}
Chapter[1] = {chapNum = 1}
Chapter[1][1] = {
verse = "This is the story of the exodus of the hebrew people from the Egypt",
etWords = {theArticle, bigynnyng}--, nought, heuene, erthe}
}
Chapter[1][2] = {
verse = "Moses, the prophet chose by God",
--etWords = {}
}
Chapter[1][3] = {
verse = "Led his people through the desert",
--etWords = {}
}
Chapter[1][4] = {
verse = "For fourty year they walk across the desert until they reached Canaan",
--etWords = {}
}
Chapter[2] = {chapNum = 2}
Chapter[2][1] = {
verse = "There, they learnt many things"
}
Chapter[2][2] = "God worked many miracles"
Chapter[2][3] = "In the end of their journy, Moses did not see the promised land"
Chapter[2][4] = "For he disobeyed the Lord"
-- Chapter[3] = {chapNum = 3}
-- Chapter[3][1] = "Só em Jesus a vida podes encontrar."
-- Chapter[3][2] = "Há caminhos que ao homem parece ser bom."
-- Chapter[3][3] = "Mas seu fim não é o melhor."
-- Chapter[3][4] = "Neste mundo vão podes a Jesus encontrar."
-- Chapter[4] = {chapNum = 4}
-- Chapter[4][1] = "On anȝynne ȝesceop Ȝod heofenan and eorðan."
-- Chapter[4][2] = "Seo eorðe soðlice ƿæs idel ond æmti, ond þeostra ƿæron ofer ðære nyƿelnysse bradnysse; ond Ȝodes ȝast ƿæs ȝeferod ofer ƿæteru."
-- Chapter[4][3] = "Ȝod cƿæð ða, \"Ȝeƿurðe leoht,\" ond leoht ƿæarð ȝeƿorht."
return Exodus