waha-shared 1.0.167 → 1.0.168
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data/areas/areas.schema.json +101 -0
- package/dist/data/aslTimestamps/aslTimestamps.schema.json +82 -0
- package/dist/data/bibleAudios/bibleAudios.schema.json +61 -0
- package/dist/data/bibleBooks/bibleBooks.schema.json +124 -0
- package/dist/data/bibleChaptersList/bibleChaptersList.schema.json +19 -0
- package/dist/data/bibleStatuses/bibleStatuses.json +235 -58
- package/dist/data/bibleStatuses/bibleStatuses.schema.json +58 -0
- package/dist/data/bibleTexts/bibleTexts.schema.json +74 -0
- package/dist/data/clones/clones.schema.json +75 -0
- package/dist/data/countries/countries.schema.json +109 -0
- package/dist/data/countriesAndLanguages/countriesAndLanguages.schema.json +56 -0
- package/dist/data/crowdinLanguages/crowdinLanguages.schema.json +41 -0
- package/dist/data/curriculumFoundations/curriculumFoundations.schema.json +33 -0
- package/dist/data/curriculumQuestions/curriculumQuestions.schema.json +47 -0
- package/dist/data/curriculumTopics/curriculumTopics.schema.json +33 -0
- package/dist/data/dblAudioLicenses/dblAudioLicenses.json +6409 -0
- package/dist/data/dblTextLicenses/dblTextLicenses.json +14951 -0
- package/dist/data/iosVoiceOverLanguages/iosVoiceOverLanguages.schema.json +19 -0
- package/dist/data/iso6933LanguageCodes/iso6933LanguageCodes.schema.json +19 -0
- package/dist/data/languageAssets/languageAssets.json +499305 -0
- package/dist/data/languageAssets/languageAssets.schema.json +25 -0
- package/dist/data/languages/languages.json +2 -2
- package/dist/data/languages/languages.schema.json +374 -0
- package/dist/data/mediaDurations/mediaDurations.json +32 -0
- package/dist/data/mediaDurations/mediaDurations.schema.json +27 -0
- package/dist/data/notification/notification.schema.json +121 -0
- package/dist/data/numeralMaps/numeralMaps.schema.json +80 -0
- package/dist/data/orphanedBibleTexts/orphanedBibleTexts.json +2750 -0
- package/dist/data/phoneLanguages/phoneLanguages.schema.json +48 -0
- package/dist/data/questions/questions.schema.json +52 -0
- package/dist/data/releaseNotes/releaseNotes.json +82 -2
- package/dist/data/releaseNotes/releaseNotes.schema.json +33 -0
- package/dist/data/screenshots/screenshots.schema.json +21 -0
- package/dist/data/scripts/scripts.json +20 -0
- package/dist/data/scripts/scripts.schema.json +26 -0
- package/dist/data/sets/sets.schema.json +135 -0
- package/dist/data/specialIds/specialIds.schema.json +132 -0
- package/dist/data/translationsApp/translationsApp.json +388 -0
- package/dist/data/translationsApp/translationsApp.schema.json +1602 -0
- package/dist/data/translationsFtb/translationsFtb.json +68 -0
- package/dist/data/translationsFtb/translationsFtb.schema.json +361 -0
- package/dist/data/translationsIntroduction/translationsIntroduction.schema.json +232 -0
- package/dist/data/translationsQuestion/translationsQuestion.json +32 -0
- package/dist/data/translationsQuestion/translationsQuestion.schema.json +35 -0
- package/dist/data/translationsSet/translationsSet.json +789 -0
- package/dist/data/translationsSet/translationsSet.schema.json +96 -0
- package/dist/data/translationsSolarSpeaker/translationsSolarSpeaker.schema.json +240 -0
- package/dist/data/translationsSpokenQuestion/translationsSpokenQuestion.json +32 -0
- package/dist/data/translationsSpokenQuestion/translationsSpokenQuestion.schema.json +35 -0
- package/dist/data/youtubePlaylists/youtubePlaylists.schema.json +18 -0
- package/dist/data/youtubeVideos/youtubeVideos.schema.json +18 -0
- package/package.json +1 -1
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"title": "Geographic Areas Schema",
|
|
10
|
+
"$id": "https://waha-app.com/schemas/areas.json",
|
|
11
|
+
"description": "Schema for geographic areas with coordinates and metadata",
|
|
12
|
+
"examples": [
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
"name": "North America",
|
|
16
|
+
"id": "north-america",
|
|
17
|
+
"lat": 35,
|
|
18
|
+
"lng": -70
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "Western Europe",
|
|
22
|
+
"id": "western-europe",
|
|
23
|
+
"lat": 48.8566,
|
|
24
|
+
"lng": 2.3522
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
],
|
|
28
|
+
"items": {
|
|
29
|
+
"title": "Area",
|
|
30
|
+
"additionalProperties": false,
|
|
31
|
+
"description": "A geographic area with identification, coordinates, and display information",
|
|
32
|
+
"properties": {
|
|
33
|
+
"name": {
|
|
34
|
+
"description": "Human-readable display name for the area",
|
|
35
|
+
"examples": [
|
|
36
|
+
"North America",
|
|
37
|
+
"Latin America and the Caribbean",
|
|
38
|
+
"Western Europe"
|
|
39
|
+
],
|
|
40
|
+
"minLength": 1,
|
|
41
|
+
"type": "string"
|
|
42
|
+
},
|
|
43
|
+
"id": {
|
|
44
|
+
"description": "The geographical area identifier",
|
|
45
|
+
"enum": [
|
|
46
|
+
"north-america",
|
|
47
|
+
"latin-america-caribbean",
|
|
48
|
+
"sub-saharan-africa",
|
|
49
|
+
"middle-east-north-africa",
|
|
50
|
+
"western-asia",
|
|
51
|
+
"western-europe",
|
|
52
|
+
"eastern-europe",
|
|
53
|
+
"southern-asia",
|
|
54
|
+
"central-asia",
|
|
55
|
+
"eastern-asia",
|
|
56
|
+
"southeast-asia",
|
|
57
|
+
"oceania"
|
|
58
|
+
],
|
|
59
|
+
"type": "string"
|
|
60
|
+
},
|
|
61
|
+
"lat": {
|
|
62
|
+
"description": "Latitude coordinate for the area center point",
|
|
63
|
+
"examples": [
|
|
64
|
+
35,
|
|
65
|
+
-14.235,
|
|
66
|
+
48.8566
|
|
67
|
+
],
|
|
68
|
+
"maximum": 90,
|
|
69
|
+
"minimum": -90,
|
|
70
|
+
"type": "number"
|
|
71
|
+
},
|
|
72
|
+
"lng": {
|
|
73
|
+
"description": "Longitude coordinate for the area center point",
|
|
74
|
+
"examples": [
|
|
75
|
+
-70,
|
|
76
|
+
-51.9253,
|
|
77
|
+
2.3522
|
|
78
|
+
],
|
|
79
|
+
"maximum": 180,
|
|
80
|
+
"minimum": -180,
|
|
81
|
+
"type": "number"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"required": [
|
|
85
|
+
"id",
|
|
86
|
+
"lat",
|
|
87
|
+
"lng",
|
|
88
|
+
"name"
|
|
89
|
+
],
|
|
90
|
+
"type": "object"
|
|
91
|
+
},
|
|
92
|
+
"minItems": 1,
|
|
93
|
+
"type": "array",
|
|
94
|
+
"uniqueItems": true
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"required": [
|
|
98
|
+
"$schema",
|
|
99
|
+
"data"
|
|
100
|
+
]
|
|
101
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"items": {
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"properties": {
|
|
12
|
+
"bookId": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"description": "The book ID (e.g., GEN, EXO)"
|
|
15
|
+
},
|
|
16
|
+
"chapters": {
|
|
17
|
+
"type": "array",
|
|
18
|
+
"items": {
|
|
19
|
+
"type": "integer"
|
|
20
|
+
},
|
|
21
|
+
"minItems": 2,
|
|
22
|
+
"maxItems": 2,
|
|
23
|
+
"description": "The start and end chapter numbers for this section"
|
|
24
|
+
},
|
|
25
|
+
"section": {
|
|
26
|
+
"type": "array",
|
|
27
|
+
"items": {
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
30
|
+
"minItems": 2,
|
|
31
|
+
"maxItems": 2,
|
|
32
|
+
"description": "The start and end verse IDs for this section (e.g., GEN.1.1, GEN.2.4)"
|
|
33
|
+
},
|
|
34
|
+
"verses": {
|
|
35
|
+
"type": "array",
|
|
36
|
+
"items": {
|
|
37
|
+
"additionalProperties": false,
|
|
38
|
+
"properties": {
|
|
39
|
+
"chapter": {
|
|
40
|
+
"type": "integer",
|
|
41
|
+
"description": "The chapter number"
|
|
42
|
+
},
|
|
43
|
+
"timestamp": {
|
|
44
|
+
"type": "number",
|
|
45
|
+
"description": "The timestamp in seconds for this verse"
|
|
46
|
+
},
|
|
47
|
+
"verse": {
|
|
48
|
+
"type": "integer",
|
|
49
|
+
"description": "The verse number"
|
|
50
|
+
},
|
|
51
|
+
"verseId": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"description": "The verse ID (e.g., GEN.1.1)"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"required": [
|
|
57
|
+
"chapter",
|
|
58
|
+
"timestamp",
|
|
59
|
+
"verse",
|
|
60
|
+
"verseId"
|
|
61
|
+
],
|
|
62
|
+
"type": "object"
|
|
63
|
+
},
|
|
64
|
+
"description": "Array of verse timing information"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"required": [
|
|
68
|
+
"bookId",
|
|
69
|
+
"chapters",
|
|
70
|
+
"section",
|
|
71
|
+
"verses"
|
|
72
|
+
],
|
|
73
|
+
"type": "object"
|
|
74
|
+
},
|
|
75
|
+
"type": "array"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"required": [
|
|
79
|
+
"$schema",
|
|
80
|
+
"data"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"items": {
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"properties": {
|
|
12
|
+
"bibleAudioId": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"audioSource": {
|
|
16
|
+
"additionalProperties": false,
|
|
17
|
+
"description": "The best place to get audio bible chapters for this bible translation. Audio is hopefully available on the DBL via API.Bible when the license is granted. If not, it may be available on YouVersion. If not, the license holder may provide the audio. If not, the audio may be available to be scraped somewhere on the internet. For the last 2 options, use `custom`.",
|
|
18
|
+
"properties": {
|
|
19
|
+
"source": {
|
|
20
|
+
"enum": [
|
|
21
|
+
"dbl",
|
|
22
|
+
"youVersion",
|
|
23
|
+
"bibleBrain",
|
|
24
|
+
"custom"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"sourceId": {
|
|
28
|
+
"type": "string"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"required": [
|
|
32
|
+
"source"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"canDownload": {
|
|
36
|
+
"description": "Whether or not the audio can be downloaded for offline use on the web. Most likely false, unless the translation is creative commons.",
|
|
37
|
+
"type": "boolean"
|
|
38
|
+
},
|
|
39
|
+
"copyright": {
|
|
40
|
+
"description": "Any copyright attribution text required to be added to the app for this translation for legal purposes.",
|
|
41
|
+
"type": "string"
|
|
42
|
+
},
|
|
43
|
+
"disableStar": {
|
|
44
|
+
"description": "Star refers to adding a <star> string before the first line passed to mms forced alignment. Disabling it means that there is not any content read out before the start of verse 1. Most translations read out names of chapters or section headings, which is why adding <star> is the default behavior."
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"required": [
|
|
48
|
+
"bibleAudioId",
|
|
49
|
+
"audioSource",
|
|
50
|
+
"canDownload"
|
|
51
|
+
],
|
|
52
|
+
"type": "object"
|
|
53
|
+
},
|
|
54
|
+
"type": "array"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"required": [
|
|
58
|
+
"$schema",
|
|
59
|
+
"data"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"items": {
|
|
10
|
+
"properties": {
|
|
11
|
+
"name": {
|
|
12
|
+
"description": "The name of the book.",
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"title": {
|
|
16
|
+
"description": "The title of the book.",
|
|
17
|
+
"type": "string"
|
|
18
|
+
},
|
|
19
|
+
"bookId": {
|
|
20
|
+
"description": "The book identifier from the second JSON file.",
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"chapters": {
|
|
24
|
+
"description": "An array of chapter identifiers for the book.",
|
|
25
|
+
"items": {
|
|
26
|
+
"properties": {
|
|
27
|
+
"id": {
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
30
|
+
"verses": {
|
|
31
|
+
"type": "number"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"required": [
|
|
35
|
+
"id",
|
|
36
|
+
"verses"
|
|
37
|
+
],
|
|
38
|
+
"type": "object"
|
|
39
|
+
},
|
|
40
|
+
"type": "array"
|
|
41
|
+
},
|
|
42
|
+
"englishDivision": {
|
|
43
|
+
"description": "The English division of the book (e.g., 'Pentateuch', 'Wisdom').",
|
|
44
|
+
"type": "string"
|
|
45
|
+
},
|
|
46
|
+
"hebrewDivision": {
|
|
47
|
+
"description": "The Hebrew division of the book (e.g., 'Torah', 'Ketuvim').",
|
|
48
|
+
"type": [
|
|
49
|
+
"string",
|
|
50
|
+
"null"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
"hebrewOrder": {
|
|
54
|
+
"description": "The order of the book in the Hebrew Bible.",
|
|
55
|
+
"type": [
|
|
56
|
+
"integer",
|
|
57
|
+
"null"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
"isNt": {
|
|
61
|
+
"description": "Indicates if the book is in the New Testament.",
|
|
62
|
+
"type": "boolean"
|
|
63
|
+
},
|
|
64
|
+
"lowercase": {
|
|
65
|
+
"description": "The lowercase title of the book.",
|
|
66
|
+
"type": "string"
|
|
67
|
+
},
|
|
68
|
+
"lowercase_dashes": {
|
|
69
|
+
"description": "The lowercase title of the book with dashes.",
|
|
70
|
+
"type": "string"
|
|
71
|
+
},
|
|
72
|
+
"number": {
|
|
73
|
+
"description": "The numeric order of the book in the Bible.",
|
|
74
|
+
"type": "integer"
|
|
75
|
+
},
|
|
76
|
+
"order": {
|
|
77
|
+
"description": "The order of the book in the Bible.",
|
|
78
|
+
"type": "integer"
|
|
79
|
+
},
|
|
80
|
+
"testament": {
|
|
81
|
+
"description": "The testament of the book ('old' or 'new').",
|
|
82
|
+
"type": "string"
|
|
83
|
+
},
|
|
84
|
+
"title_dashes": {
|
|
85
|
+
"description": "The title of the book with dashes.",
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
"usfm": {
|
|
89
|
+
"description": "The USFM code for the book.",
|
|
90
|
+
"type": "string"
|
|
91
|
+
},
|
|
92
|
+
"nameAlternates": {
|
|
93
|
+
"description": "Alternative names for the book.",
|
|
94
|
+
"type": "array",
|
|
95
|
+
"items": {
|
|
96
|
+
"type": "string"
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"required": [
|
|
101
|
+
"isNt",
|
|
102
|
+
"lowercase",
|
|
103
|
+
"lowercase_dashes",
|
|
104
|
+
"number",
|
|
105
|
+
"title",
|
|
106
|
+
"title_dashes",
|
|
107
|
+
"usfm",
|
|
108
|
+
"bookId",
|
|
109
|
+
"chapters",
|
|
110
|
+
"englishDivision",
|
|
111
|
+
"name",
|
|
112
|
+
"order",
|
|
113
|
+
"testament"
|
|
114
|
+
],
|
|
115
|
+
"type": "object"
|
|
116
|
+
},
|
|
117
|
+
"type": "array"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"required": [
|
|
121
|
+
"$schema",
|
|
122
|
+
"data"
|
|
123
|
+
]
|
|
124
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"$schema": {
|
|
6
|
+
"type": "string"
|
|
7
|
+
},
|
|
8
|
+
"data": {
|
|
9
|
+
"type": "array",
|
|
10
|
+
"items": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"description": "Chapter ID in format BOOK.CHAPTER (e.g., GEN.1)"
|
|
13
|
+
},
|
|
14
|
+
"description": "List of all Bible chapter IDs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"required": ["data"],
|
|
18
|
+
"description": "Complete list of Bible chapter identifiers"
|
|
19
|
+
}
|
|
@@ -10092,64 +10092,7 @@
|
|
|
10092
10092
|
"NT"
|
|
10093
10093
|
],
|
|
10094
10094
|
"timings": [
|
|
10095
|
-
"
|
|
10096
|
-
"JDG.2",
|
|
10097
|
-
"JDG.3",
|
|
10098
|
-
"JDG.4",
|
|
10099
|
-
"JDG.5",
|
|
10100
|
-
"JDG.6",
|
|
10101
|
-
"JDG.7",
|
|
10102
|
-
"JDG.9",
|
|
10103
|
-
"JDG.10",
|
|
10104
|
-
"JDG.11",
|
|
10105
|
-
"JDG.12",
|
|
10106
|
-
"JDG.13",
|
|
10107
|
-
"JDG.14",
|
|
10108
|
-
"JDG.15",
|
|
10109
|
-
"JDG.16",
|
|
10110
|
-
"JDG.17",
|
|
10111
|
-
"JDG.18",
|
|
10112
|
-
"JDG.19",
|
|
10113
|
-
"JDG.20",
|
|
10114
|
-
"JDG.21",
|
|
10115
|
-
"GEN",
|
|
10116
|
-
"EXO",
|
|
10117
|
-
"LEV",
|
|
10118
|
-
"NUM",
|
|
10119
|
-
"DEU",
|
|
10120
|
-
"JOS",
|
|
10121
|
-
"RUT",
|
|
10122
|
-
"1SA",
|
|
10123
|
-
"2SA",
|
|
10124
|
-
"1KI",
|
|
10125
|
-
"2KI",
|
|
10126
|
-
"1CH",
|
|
10127
|
-
"2CH",
|
|
10128
|
-
"EZR",
|
|
10129
|
-
"NEH",
|
|
10130
|
-
"EST",
|
|
10131
|
-
"JOB",
|
|
10132
|
-
"PSA",
|
|
10133
|
-
"PRO",
|
|
10134
|
-
"ECC",
|
|
10135
|
-
"SNG",
|
|
10136
|
-
"ISA",
|
|
10137
|
-
"JER",
|
|
10138
|
-
"LAM",
|
|
10139
|
-
"EZK",
|
|
10140
|
-
"DAN",
|
|
10141
|
-
"HOS",
|
|
10142
|
-
"JOL",
|
|
10143
|
-
"AMO",
|
|
10144
|
-
"OBA",
|
|
10145
|
-
"JON",
|
|
10146
|
-
"MIC",
|
|
10147
|
-
"NAM",
|
|
10148
|
-
"HAB",
|
|
10149
|
-
"ZEP",
|
|
10150
|
-
"HAG",
|
|
10151
|
-
"ZEC",
|
|
10152
|
-
"MAL",
|
|
10095
|
+
"OT",
|
|
10153
10096
|
"NT"
|
|
10154
10097
|
]
|
|
10155
10098
|
},
|
|
@@ -10386,6 +10329,240 @@
|
|
|
10386
10329
|
"OT",
|
|
10387
10330
|
"NT"
|
|
10388
10331
|
]
|
|
10332
|
+
},
|
|
10333
|
+
"BCV": {
|
|
10334
|
+
"audio": [
|
|
10335
|
+
"OT",
|
|
10336
|
+
"NT"
|
|
10337
|
+
],
|
|
10338
|
+
"bookNames": {
|
|
10339
|
+
"1CH": "1 বংশাবলি",
|
|
10340
|
+
"1CO": "1 করিন্থীয়",
|
|
10341
|
+
"1JN": "1 যোহন",
|
|
10342
|
+
"1KI": "1 রাজাবলি",
|
|
10343
|
+
"1PE": "1 পিতর",
|
|
10344
|
+
"1SA": "1 শমূয়েল",
|
|
10345
|
+
"1TH": "1 থিষলনীকীয়",
|
|
10346
|
+
"1TI": "1 তিমথি",
|
|
10347
|
+
"2CH": "2 বংশাবলি",
|
|
10348
|
+
"2CO": "2 করিন্থীয়",
|
|
10349
|
+
"2JN": "2 যোহন",
|
|
10350
|
+
"2KI": "2 রাজাবলি",
|
|
10351
|
+
"2PE": "2 পিতর",
|
|
10352
|
+
"2SA": "2 শমূয়েল",
|
|
10353
|
+
"2TH": "2 থিষলনীকীয়",
|
|
10354
|
+
"2TI": "2 তিমথি",
|
|
10355
|
+
"3JN": "3 যোহন",
|
|
10356
|
+
"ACT": "প্রেরিত",
|
|
10357
|
+
"AMO": "আমোষ",
|
|
10358
|
+
"COL": "কলসীয়",
|
|
10359
|
+
"DAN": "দানিয়েল",
|
|
10360
|
+
"DEU": "দ্বিতীয় বিবরণ",
|
|
10361
|
+
"ECC": "উপদেশক",
|
|
10362
|
+
"EPH": "ইফিষীয়",
|
|
10363
|
+
"EST": "ইষ্টের",
|
|
10364
|
+
"EXO": "যাত্রা পুস্তক",
|
|
10365
|
+
"EZK": "যিহিষ্কেল",
|
|
10366
|
+
"EZR": "ইষ্রা",
|
|
10367
|
+
"GAL": "গালাতীয়",
|
|
10368
|
+
"GEN": "আদি পুস্তক",
|
|
10369
|
+
"HAB": "হবক্কূক",
|
|
10370
|
+
"HAG": "হগয়",
|
|
10371
|
+
"HEB": "ইব্রীয়",
|
|
10372
|
+
"HOS": "হোশেয়",
|
|
10373
|
+
"ISA": "যিশাইয়",
|
|
10374
|
+
"JAS": "যাকোব",
|
|
10375
|
+
"JDG": "বিচারকর্তৃগণ",
|
|
10376
|
+
"JER": "যিরমিয়",
|
|
10377
|
+
"JHN": "যোহন",
|
|
10378
|
+
"JOB": "ইয়োব",
|
|
10379
|
+
"JOL": "যোয়েল",
|
|
10380
|
+
"JON": "যোনা",
|
|
10381
|
+
"JOS": "যিহোশূয়",
|
|
10382
|
+
"JUD": "যিহূদা",
|
|
10383
|
+
"LAM": "বিলাপ",
|
|
10384
|
+
"LEV": "লেবীয় পুস্তক",
|
|
10385
|
+
"LUK": "লূক",
|
|
10386
|
+
"MAL": "মালাখি",
|
|
10387
|
+
"MAT": "মথি",
|
|
10388
|
+
"MIC": "মীখা",
|
|
10389
|
+
"MRK": "মার্ক",
|
|
10390
|
+
"NAM": "নহূম",
|
|
10391
|
+
"NEH": "নহিমিয়",
|
|
10392
|
+
"NUM": "গণনা পুস্তক",
|
|
10393
|
+
"OBA": "ওবদিয়",
|
|
10394
|
+
"PHM": "ফিলীমন",
|
|
10395
|
+
"PHP": "ফিলিপীয়",
|
|
10396
|
+
"PRO": "হিতোপদেশ",
|
|
10397
|
+
"PSA": "গীত",
|
|
10398
|
+
"REV": "প্রকাশিত বাক্য",
|
|
10399
|
+
"ROM": "রোমীয়",
|
|
10400
|
+
"RUT": "রূত",
|
|
10401
|
+
"SNG": "পরমগীত",
|
|
10402
|
+
"TIT": "তীত",
|
|
10403
|
+
"ZEC": "সখরিয়",
|
|
10404
|
+
"ZEP": "সফনিয়"
|
|
10405
|
+
},
|
|
10406
|
+
"text": [
|
|
10407
|
+
"EXO.1",
|
|
10408
|
+
"EXO.2",
|
|
10409
|
+
"EXO.3",
|
|
10410
|
+
"EXO.4",
|
|
10411
|
+
"EXO.5",
|
|
10412
|
+
"EXO.6",
|
|
10413
|
+
"EXO.7",
|
|
10414
|
+
"EXO.8",
|
|
10415
|
+
"EXO.9",
|
|
10416
|
+
"EXO.10",
|
|
10417
|
+
"EXO.11",
|
|
10418
|
+
"EXO.12",
|
|
10419
|
+
"EXO.13",
|
|
10420
|
+
"EXO.14",
|
|
10421
|
+
"EXO.15",
|
|
10422
|
+
"EXO.16",
|
|
10423
|
+
"EXO.17",
|
|
10424
|
+
"EXO.18",
|
|
10425
|
+
"EXO.19",
|
|
10426
|
+
"EXO.20",
|
|
10427
|
+
"EXO.21",
|
|
10428
|
+
"EXO.22",
|
|
10429
|
+
"EXO.23",
|
|
10430
|
+
"EXO.24",
|
|
10431
|
+
"EXO.25",
|
|
10432
|
+
"EXO.26",
|
|
10433
|
+
"EXO.27",
|
|
10434
|
+
"EXO.28",
|
|
10435
|
+
"EXO.29",
|
|
10436
|
+
"EXO.30",
|
|
10437
|
+
"EXO.31",
|
|
10438
|
+
"EXO.33",
|
|
10439
|
+
"EXO.34",
|
|
10440
|
+
"EXO.35",
|
|
10441
|
+
"EXO.36",
|
|
10442
|
+
"EXO.37",
|
|
10443
|
+
"EXO.38",
|
|
10444
|
+
"EXO.39",
|
|
10445
|
+
"EXO.40",
|
|
10446
|
+
"GEN",
|
|
10447
|
+
"LEV",
|
|
10448
|
+
"NUM",
|
|
10449
|
+
"DEU",
|
|
10450
|
+
"JOS",
|
|
10451
|
+
"JDG",
|
|
10452
|
+
"RUT",
|
|
10453
|
+
"1SA",
|
|
10454
|
+
"2SA",
|
|
10455
|
+
"1KI",
|
|
10456
|
+
"2KI",
|
|
10457
|
+
"1CH",
|
|
10458
|
+
"2CH",
|
|
10459
|
+
"EZR",
|
|
10460
|
+
"NEH",
|
|
10461
|
+
"EST",
|
|
10462
|
+
"JOB",
|
|
10463
|
+
"PSA",
|
|
10464
|
+
"PRO",
|
|
10465
|
+
"ECC",
|
|
10466
|
+
"SNG",
|
|
10467
|
+
"ISA",
|
|
10468
|
+
"JER",
|
|
10469
|
+
"LAM",
|
|
10470
|
+
"EZK",
|
|
10471
|
+
"DAN",
|
|
10472
|
+
"HOS",
|
|
10473
|
+
"JOL",
|
|
10474
|
+
"AMO",
|
|
10475
|
+
"OBA",
|
|
10476
|
+
"JON",
|
|
10477
|
+
"MIC",
|
|
10478
|
+
"NAM",
|
|
10479
|
+
"HAB",
|
|
10480
|
+
"ZEP",
|
|
10481
|
+
"HAG",
|
|
10482
|
+
"ZEC",
|
|
10483
|
+
"MAL",
|
|
10484
|
+
"NT"
|
|
10485
|
+
],
|
|
10486
|
+
"timings": [
|
|
10487
|
+
"EXO.1",
|
|
10488
|
+
"EXO.2",
|
|
10489
|
+
"EXO.3",
|
|
10490
|
+
"EXO.4",
|
|
10491
|
+
"EXO.5",
|
|
10492
|
+
"EXO.6",
|
|
10493
|
+
"EXO.7",
|
|
10494
|
+
"EXO.8",
|
|
10495
|
+
"EXO.9",
|
|
10496
|
+
"EXO.10",
|
|
10497
|
+
"EXO.11",
|
|
10498
|
+
"EXO.12",
|
|
10499
|
+
"EXO.13",
|
|
10500
|
+
"EXO.14",
|
|
10501
|
+
"EXO.15",
|
|
10502
|
+
"EXO.16",
|
|
10503
|
+
"EXO.17",
|
|
10504
|
+
"EXO.18",
|
|
10505
|
+
"EXO.19",
|
|
10506
|
+
"EXO.20",
|
|
10507
|
+
"EXO.21",
|
|
10508
|
+
"EXO.22",
|
|
10509
|
+
"EXO.23",
|
|
10510
|
+
"EXO.24",
|
|
10511
|
+
"EXO.25",
|
|
10512
|
+
"EXO.26",
|
|
10513
|
+
"EXO.27",
|
|
10514
|
+
"EXO.28",
|
|
10515
|
+
"EXO.29",
|
|
10516
|
+
"EXO.30",
|
|
10517
|
+
"EXO.31",
|
|
10518
|
+
"EXO.33",
|
|
10519
|
+
"EXO.34",
|
|
10520
|
+
"EXO.35",
|
|
10521
|
+
"EXO.36",
|
|
10522
|
+
"EXO.37",
|
|
10523
|
+
"EXO.38",
|
|
10524
|
+
"EXO.39",
|
|
10525
|
+
"EXO.40",
|
|
10526
|
+
"GEN",
|
|
10527
|
+
"LEV",
|
|
10528
|
+
"NUM",
|
|
10529
|
+
"DEU",
|
|
10530
|
+
"JOS",
|
|
10531
|
+
"JDG",
|
|
10532
|
+
"RUT",
|
|
10533
|
+
"1SA",
|
|
10534
|
+
"2SA",
|
|
10535
|
+
"1KI",
|
|
10536
|
+
"2KI",
|
|
10537
|
+
"1CH",
|
|
10538
|
+
"2CH",
|
|
10539
|
+
"EZR",
|
|
10540
|
+
"NEH",
|
|
10541
|
+
"EST",
|
|
10542
|
+
"JOB",
|
|
10543
|
+
"PSA",
|
|
10544
|
+
"PRO",
|
|
10545
|
+
"ECC",
|
|
10546
|
+
"SNG",
|
|
10547
|
+
"ISA",
|
|
10548
|
+
"JER",
|
|
10549
|
+
"LAM",
|
|
10550
|
+
"EZK",
|
|
10551
|
+
"DAN",
|
|
10552
|
+
"HOS",
|
|
10553
|
+
"JOL",
|
|
10554
|
+
"AMO",
|
|
10555
|
+
"OBA",
|
|
10556
|
+
"JON",
|
|
10557
|
+
"MIC",
|
|
10558
|
+
"NAM",
|
|
10559
|
+
"HAB",
|
|
10560
|
+
"ZEP",
|
|
10561
|
+
"HAG",
|
|
10562
|
+
"ZEC",
|
|
10563
|
+
"MAL",
|
|
10564
|
+
"NT"
|
|
10565
|
+
]
|
|
10389
10566
|
}
|
|
10390
10567
|
}
|
|
10391
10568
|
}
|