@youversion/platform-core 0.5.0 → 0.5.5
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/.turbo/turbo-build.log +7 -7
- package/CHANGELOG.md +32 -0
- package/README.md +11 -70
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +5 -4
- package/src/__tests__/MockBibles.ts +1628 -0
- package/src/__tests__/MockChapters.ts +1958 -0
- package/src/__tests__/MockPassages.ts +52 -0
- package/src/__tests__/MockVOTDs.ts +1466 -0
- package/src/__tests__/MockVerses.ts +178 -0
- package/src/__tests__/MockVersions.ts +1238 -0
- package/src/__tests__/URLBuilder.test.ts +9 -12
- package/src/__tests__/authentication.test.ts +23 -11
- package/src/__tests__/handlers.ts +98 -0
- package/src/schemas/version.ts +4 -2
|
@@ -0,0 +1,1238 @@
|
|
|
1
|
+
import type { BibleVersion } from '@/types';
|
|
2
|
+
|
|
3
|
+
export const mockVersionKJV: BibleVersion = {
|
|
4
|
+
id: 1,
|
|
5
|
+
abbreviation: 'KJV',
|
|
6
|
+
copyright_long:
|
|
7
|
+
" King James Version (KJV) The King James Version (KJV) of the holy Bible was first printed in 1611, but the main edition used today is the 1769 version. The King James Version (KJV) is also known as the Authorized (or Authorised) Version (AV) because it was authorized to be read in churches. For over 300 years it was the main English translation used in the English speaking world, and is much admired and respected. About 400 words and phrases coined or popularised by the King James Version are part the English language today. Revision The King James Version of the Bible was not a new translation but a revision of the English Bible which was commissioned by King James I of Great Britain, following the Church of England Hampton Court Conference in 1604. 54 scholars from London, Oxford and Cambridge worked on the project. They were all from the Church of England (Anglicans), but included those of traditional and Puritan views. Officially the 1586 Bishop’s Bible was used as the base for the revision, but the scholars referenced all existing Bible translations in English, such as the Geneva Bible and Tyndale, and also editions in other languages. The completed Bible was first printed in 1611, and included the Apocrypha, which is omitted from this edition. 1769 edition In 1611 English spelling and punctuation were not in standard forms, and the Bible underwent a mainly-orthographic revision by Oxford and Cambridge universities in 1769, which is the version most people use today. The rights of the King James Version of the Bible were, and still are, protected under British law and are vested in the Crown. Bible Society edition In 1804 the British and Foreign Bible Society (BFBS) was founded and they printed millions of cheap copies of the Bible for people to buy and read. Through the work of the Bible Societies the King James Version (KJV) became the most printed and most widely read book in the world. 1954 Paragraphed Edition The King James Version was printed with each new verse starting on a new line. In 1954 the British and Foreign Bible Society produced a new edition of the KJV, keeping the original 1769 text, but adding sub-titles and paragraphs, making it easier to read. In 2011 this was reprinted in a special edition, with other appendices such as a Glossary, and concordance, to mark the 400th anniversary of the King James Version. This is the text used in this on-line edition. The paragraphing, sub-headings from 1954, and other additions from 2011, are copyright the British and Foreign Bible Society. Copyright Information Rights in the Authorized (King James) Version of the Bible are vested in the Crown. Published by permission of the Crown's patentee, Cambridge University Press. This edition This edition of the King James Authorised Version was paragraphed with sub-headings added by the British and Foreign Bible Society in 1954 and released again as a special edition in 2011. BFBS additions © 2011 British and Foreign Bible Society This text is maintained by the British and Foreign Bible Society If you are interested in obtaining a printed copy, please contact the British and Foreign Bible Society at www.biblesociety.org.uk",
|
|
8
|
+
copyright_short:
|
|
9
|
+
'Rights in the Authorized (King James) Version in the United Kingdom are vested in the Crown. Published by permission of the Crown’s patentee, Cambridge University Press.',
|
|
10
|
+
info: null,
|
|
11
|
+
publisher_url: null,
|
|
12
|
+
language_tag: 'en',
|
|
13
|
+
local_abbreviation: 'KJV',
|
|
14
|
+
local_title: 'King James Version',
|
|
15
|
+
title: 'King James Version',
|
|
16
|
+
books: [
|
|
17
|
+
'GEN',
|
|
18
|
+
'EXO',
|
|
19
|
+
'LEV',
|
|
20
|
+
'NUM',
|
|
21
|
+
'DEU',
|
|
22
|
+
'JOS',
|
|
23
|
+
'JDG',
|
|
24
|
+
'RUT',
|
|
25
|
+
'1SA',
|
|
26
|
+
'2SA',
|
|
27
|
+
'1KI',
|
|
28
|
+
'2KI',
|
|
29
|
+
'1CH',
|
|
30
|
+
'2CH',
|
|
31
|
+
'EZR',
|
|
32
|
+
'NEH',
|
|
33
|
+
'EST',
|
|
34
|
+
'JOB',
|
|
35
|
+
'PSA',
|
|
36
|
+
'PRO',
|
|
37
|
+
'ECC',
|
|
38
|
+
'SNG',
|
|
39
|
+
'ISA',
|
|
40
|
+
'JER',
|
|
41
|
+
'LAM',
|
|
42
|
+
'EZK',
|
|
43
|
+
'DAN',
|
|
44
|
+
'HOS',
|
|
45
|
+
'JOL',
|
|
46
|
+
'AMO',
|
|
47
|
+
'OBA',
|
|
48
|
+
'JON',
|
|
49
|
+
'MIC',
|
|
50
|
+
'NAM',
|
|
51
|
+
'HAB',
|
|
52
|
+
'ZEP',
|
|
53
|
+
'HAG',
|
|
54
|
+
'ZEC',
|
|
55
|
+
'MAL',
|
|
56
|
+
'MAT',
|
|
57
|
+
'MRK',
|
|
58
|
+
'LUK',
|
|
59
|
+
'JHN',
|
|
60
|
+
'ACT',
|
|
61
|
+
'ROM',
|
|
62
|
+
'1CO',
|
|
63
|
+
'2CO',
|
|
64
|
+
'GAL',
|
|
65
|
+
'EPH',
|
|
66
|
+
'PHP',
|
|
67
|
+
'COL',
|
|
68
|
+
'1TH',
|
|
69
|
+
'2TH',
|
|
70
|
+
'1TI',
|
|
71
|
+
'2TI',
|
|
72
|
+
'TIT',
|
|
73
|
+
'PHM',
|
|
74
|
+
'HEB',
|
|
75
|
+
'JAS',
|
|
76
|
+
'1PE',
|
|
77
|
+
'2PE',
|
|
78
|
+
'1JN',
|
|
79
|
+
'2JN',
|
|
80
|
+
'3JN',
|
|
81
|
+
'JUD',
|
|
82
|
+
'REV',
|
|
83
|
+
],
|
|
84
|
+
youversion_deep_link: 'https://www.bible.com/versions/1',
|
|
85
|
+
organization_id: 'f819451a-bc31-4037-b4bd-0c4aa00fe0f6',
|
|
86
|
+
};
|
|
87
|
+
export const mockVersions: BibleVersion[] = [
|
|
88
|
+
{
|
|
89
|
+
id: 110,
|
|
90
|
+
abbreviation: 'NIrV',
|
|
91
|
+
copyright_long:
|
|
92
|
+
'Biblica is a global Bible ministry inspired by radical generosity. We are motivated by the belief that God’s Word radically changes lives, and that everyone everywhere deserves to experience its truth for themselves. To that end, we pioneer ways to break down barriers to the Bible, doing whatever it takes to activate Scripture where needed most.\nNow in its third century of ministry, Biblica continues to produce relevant, reliable Scripture translations and innovative resources that power the Bible ministry of hundreds of global mission organizations. Together, we invite millions to discover the love of Jesus Christ through our three core pillars of ministry:\nGateway Translation\nWe translate God’s Word for the world’s most strategic languages, catalyzing greater reach to Bibleless language communities.\nFrontline Church\nWe equip the frontlines of Gospel ministry with Scripture resources that serve the unreached, unengaged, and unseen.\nKids in Crisis\nWe develop and deploy Bible programs that bring the love of Jesus to children and youth in the world’s hardest places.',
|
|
93
|
+
copyright_short:
|
|
94
|
+
'Holy Bible, New International Reader’s Version®, NIrV®\nCopyright © 1995, 1996, 1998, 2014 by Biblica, Inc.®\nUsed by permission. All rights reserved worldwide.',
|
|
95
|
+
info: null,
|
|
96
|
+
publisher_url: 'https://www.biblica.com/yv-learn-more/',
|
|
97
|
+
language_tag: 'en',
|
|
98
|
+
local_abbreviation: 'NIrV',
|
|
99
|
+
local_title: 'New International Reader’s Version',
|
|
100
|
+
title: 'New International Reader’s Version 2014',
|
|
101
|
+
books: [
|
|
102
|
+
'GEN',
|
|
103
|
+
'EXO',
|
|
104
|
+
'LEV',
|
|
105
|
+
'NUM',
|
|
106
|
+
'DEU',
|
|
107
|
+
'JOS',
|
|
108
|
+
'JDG',
|
|
109
|
+
'RUT',
|
|
110
|
+
'1SA',
|
|
111
|
+
'2SA',
|
|
112
|
+
'1KI',
|
|
113
|
+
'2KI',
|
|
114
|
+
'1CH',
|
|
115
|
+
'2CH',
|
|
116
|
+
'EZR',
|
|
117
|
+
'NEH',
|
|
118
|
+
'EST',
|
|
119
|
+
'JOB',
|
|
120
|
+
'PSA',
|
|
121
|
+
'PRO',
|
|
122
|
+
'ECC',
|
|
123
|
+
'SNG',
|
|
124
|
+
'ISA',
|
|
125
|
+
'JER',
|
|
126
|
+
'LAM',
|
|
127
|
+
'EZK',
|
|
128
|
+
'DAN',
|
|
129
|
+
'HOS',
|
|
130
|
+
'JOL',
|
|
131
|
+
'AMO',
|
|
132
|
+
'OBA',
|
|
133
|
+
'JON',
|
|
134
|
+
'MIC',
|
|
135
|
+
'NAM',
|
|
136
|
+
'HAB',
|
|
137
|
+
'ZEP',
|
|
138
|
+
'HAG',
|
|
139
|
+
'ZEC',
|
|
140
|
+
'MAL',
|
|
141
|
+
'MAT',
|
|
142
|
+
'MRK',
|
|
143
|
+
'LUK',
|
|
144
|
+
'JHN',
|
|
145
|
+
'ACT',
|
|
146
|
+
'ROM',
|
|
147
|
+
'1CO',
|
|
148
|
+
'2CO',
|
|
149
|
+
'GAL',
|
|
150
|
+
'EPH',
|
|
151
|
+
'PHP',
|
|
152
|
+
'COL',
|
|
153
|
+
'1TH',
|
|
154
|
+
'2TH',
|
|
155
|
+
'1TI',
|
|
156
|
+
'2TI',
|
|
157
|
+
'TIT',
|
|
158
|
+
'PHM',
|
|
159
|
+
'HEB',
|
|
160
|
+
'JAS',
|
|
161
|
+
'1PE',
|
|
162
|
+
'2PE',
|
|
163
|
+
'1JN',
|
|
164
|
+
'2JN',
|
|
165
|
+
'3JN',
|
|
166
|
+
'JUD',
|
|
167
|
+
'REV',
|
|
168
|
+
],
|
|
169
|
+
youversion_deep_link: 'https://www.bible.com/versions/110',
|
|
170
|
+
organization_id: '05a9aa40-37b6-4e34-b9f1-a443fa4b1fff',
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
id: 111,
|
|
174
|
+
abbreviation: 'NIV11',
|
|
175
|
+
copyright_long:
|
|
176
|
+
'Biblica is the worldwide publisher and translation sponsor of the New International Version—one of the most widely read contemporary English versions of the Bible.\nAt Biblica, we believe that with God, all things are possible. Partnering with other ministries and people like you, we are reaching the world with God’s Word, providing Bibles that are easier to understand and faster to receive. When God’s Word is put into someone’s hands, it has the power to change everything.\nTo learn more, visit biblica.com and facebook.com/Biblica.',
|
|
177
|
+
copyright_short:
|
|
178
|
+
'The Holy Bible, New International Version® NIV®\nCopyright © 1973, 1978, 1984, 2011 by Biblica, Inc.®\nUsed by Permission of Biblica, Inc.® All rights reserved worldwide.',
|
|
179
|
+
info: null,
|
|
180
|
+
publisher_url: 'https://www.biblica.com/yv-learn-more/',
|
|
181
|
+
language_tag: 'en',
|
|
182
|
+
local_abbreviation: 'NIV',
|
|
183
|
+
local_title: 'New International Version',
|
|
184
|
+
title: 'New International Version 2011',
|
|
185
|
+
books: [
|
|
186
|
+
'GEN',
|
|
187
|
+
'EXO',
|
|
188
|
+
'LEV',
|
|
189
|
+
'NUM',
|
|
190
|
+
'DEU',
|
|
191
|
+
'JOS',
|
|
192
|
+
'JDG',
|
|
193
|
+
'RUT',
|
|
194
|
+
'1SA',
|
|
195
|
+
'2SA',
|
|
196
|
+
'1KI',
|
|
197
|
+
'2KI',
|
|
198
|
+
'1CH',
|
|
199
|
+
'2CH',
|
|
200
|
+
'EZR',
|
|
201
|
+
'NEH',
|
|
202
|
+
'EST',
|
|
203
|
+
'JOB',
|
|
204
|
+
'PSA',
|
|
205
|
+
'PRO',
|
|
206
|
+
'ECC',
|
|
207
|
+
'SNG',
|
|
208
|
+
'ISA',
|
|
209
|
+
'JER',
|
|
210
|
+
'LAM',
|
|
211
|
+
'EZK',
|
|
212
|
+
'DAN',
|
|
213
|
+
'HOS',
|
|
214
|
+
'JOL',
|
|
215
|
+
'AMO',
|
|
216
|
+
'OBA',
|
|
217
|
+
'JON',
|
|
218
|
+
'MIC',
|
|
219
|
+
'NAM',
|
|
220
|
+
'HAB',
|
|
221
|
+
'ZEP',
|
|
222
|
+
'HAG',
|
|
223
|
+
'ZEC',
|
|
224
|
+
'MAL',
|
|
225
|
+
'MAT',
|
|
226
|
+
'MRK',
|
|
227
|
+
'LUK',
|
|
228
|
+
'JHN',
|
|
229
|
+
'ACT',
|
|
230
|
+
'ROM',
|
|
231
|
+
'1CO',
|
|
232
|
+
'2CO',
|
|
233
|
+
'GAL',
|
|
234
|
+
'EPH',
|
|
235
|
+
'PHP',
|
|
236
|
+
'COL',
|
|
237
|
+
'1TH',
|
|
238
|
+
'2TH',
|
|
239
|
+
'1TI',
|
|
240
|
+
'2TI',
|
|
241
|
+
'TIT',
|
|
242
|
+
'PHM',
|
|
243
|
+
'HEB',
|
|
244
|
+
'JAS',
|
|
245
|
+
'1PE',
|
|
246
|
+
'2PE',
|
|
247
|
+
'1JN',
|
|
248
|
+
'2JN',
|
|
249
|
+
'3JN',
|
|
250
|
+
'JUD',
|
|
251
|
+
'REV',
|
|
252
|
+
],
|
|
253
|
+
youversion_deep_link: 'https://www.bible.com/versions/111',
|
|
254
|
+
organization_id: '05a9aa40-37b6-4e34-b9f1-a443fa4b1fff',
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
id: 113,
|
|
258
|
+
abbreviation: 'NIVUK11',
|
|
259
|
+
copyright_long:
|
|
260
|
+
'Biblica is the worldwide publisher and translation sponsor of the New International Version – one of the most widely read contemporary English versions of the Bible.\nAt Biblica, we believe that with God, all things are possible. Partnering with other ministries and people like you, we are reaching the world with God’s Word, providing Bibles that are easier to understand and faster to receive. When God’s Word is put into someone’s hands, it has the power to change everything.\nTo learn more, visit biblica.com and facebook.com/Biblica.',
|
|
261
|
+
copyright_short:
|
|
262
|
+
'The Holy Bible, New International Version® (Anglicised), NIV®\nCopyright © 1979, 1984, 2011 by Biblica, Inc.®\nUsed by permission of Biblica, Inc.® All rights reserved worldwide.',
|
|
263
|
+
info: null,
|
|
264
|
+
publisher_url: 'https://www.biblica.com/yv-learn-more/',
|
|
265
|
+
language_tag: 'en',
|
|
266
|
+
local_abbreviation: 'NIVUK',
|
|
267
|
+
local_title: 'New International Version (Anglicised)',
|
|
268
|
+
title: 'New International Version (Anglicized) 2011',
|
|
269
|
+
books: [
|
|
270
|
+
'GEN',
|
|
271
|
+
'EXO',
|
|
272
|
+
'LEV',
|
|
273
|
+
'NUM',
|
|
274
|
+
'DEU',
|
|
275
|
+
'JOS',
|
|
276
|
+
'JDG',
|
|
277
|
+
'RUT',
|
|
278
|
+
'1SA',
|
|
279
|
+
'2SA',
|
|
280
|
+
'1KI',
|
|
281
|
+
'2KI',
|
|
282
|
+
'1CH',
|
|
283
|
+
'2CH',
|
|
284
|
+
'EZR',
|
|
285
|
+
'NEH',
|
|
286
|
+
'EST',
|
|
287
|
+
'JOB',
|
|
288
|
+
'PSA',
|
|
289
|
+
'PRO',
|
|
290
|
+
'ECC',
|
|
291
|
+
'SNG',
|
|
292
|
+
'ISA',
|
|
293
|
+
'JER',
|
|
294
|
+
'LAM',
|
|
295
|
+
'EZK',
|
|
296
|
+
'DAN',
|
|
297
|
+
'HOS',
|
|
298
|
+
'JOL',
|
|
299
|
+
'AMO',
|
|
300
|
+
'OBA',
|
|
301
|
+
'JON',
|
|
302
|
+
'MIC',
|
|
303
|
+
'NAM',
|
|
304
|
+
'HAB',
|
|
305
|
+
'ZEP',
|
|
306
|
+
'HAG',
|
|
307
|
+
'ZEC',
|
|
308
|
+
'MAL',
|
|
309
|
+
'MAT',
|
|
310
|
+
'MRK',
|
|
311
|
+
'LUK',
|
|
312
|
+
'JHN',
|
|
313
|
+
'ACT',
|
|
314
|
+
'ROM',
|
|
315
|
+
'1CO',
|
|
316
|
+
'2CO',
|
|
317
|
+
'GAL',
|
|
318
|
+
'EPH',
|
|
319
|
+
'PHP',
|
|
320
|
+
'COL',
|
|
321
|
+
'1TH',
|
|
322
|
+
'2TH',
|
|
323
|
+
'1TI',
|
|
324
|
+
'2TI',
|
|
325
|
+
'TIT',
|
|
326
|
+
'PHM',
|
|
327
|
+
'HEB',
|
|
328
|
+
'JAS',
|
|
329
|
+
'1PE',
|
|
330
|
+
'2PE',
|
|
331
|
+
'1JN',
|
|
332
|
+
'2JN',
|
|
333
|
+
'3JN',
|
|
334
|
+
'JUD',
|
|
335
|
+
'REV',
|
|
336
|
+
],
|
|
337
|
+
youversion_deep_link: 'https://www.bible.com/versions/113',
|
|
338
|
+
organization_id: '05a9aa40-37b6-4e34-b9f1-a443fa4b1fff',
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
id: 1588,
|
|
342
|
+
abbreviation: 'AMP',
|
|
343
|
+
copyright_long:
|
|
344
|
+
'The Amplified Bible is a Literal Equivalent translation that, by using synonyms and definitions, both explains and expands the meaning of words in the text by placing amplification in parentheses, brackets, and after key words. This unique system of translation allows the reader to more completely and clearly grasp the meaning as it was understood in the original languages. Additionally, amplifications may provide further theological, historical, and other details for a better understanding of the text.',
|
|
345
|
+
copyright_short:
|
|
346
|
+
'Amplified® Bible\nCopyright © 2015 by\nThe Lockman Foundation, La Habra, CA 90631\nAll rights reserved. http://www.lockman.org',
|
|
347
|
+
info: null,
|
|
348
|
+
publisher_url: null,
|
|
349
|
+
language_tag: 'en',
|
|
350
|
+
local_abbreviation: 'AMP',
|
|
351
|
+
local_title: 'Amplified Bible',
|
|
352
|
+
title: 'Amplified Bible',
|
|
353
|
+
books: [
|
|
354
|
+
'GEN',
|
|
355
|
+
'EXO',
|
|
356
|
+
'LEV',
|
|
357
|
+
'NUM',
|
|
358
|
+
'DEU',
|
|
359
|
+
'JOS',
|
|
360
|
+
'JDG',
|
|
361
|
+
'RUT',
|
|
362
|
+
'1SA',
|
|
363
|
+
'2SA',
|
|
364
|
+
'1KI',
|
|
365
|
+
'2KI',
|
|
366
|
+
'1CH',
|
|
367
|
+
'2CH',
|
|
368
|
+
'EZR',
|
|
369
|
+
'NEH',
|
|
370
|
+
'EST',
|
|
371
|
+
'JOB',
|
|
372
|
+
'PSA',
|
|
373
|
+
'PRO',
|
|
374
|
+
'ECC',
|
|
375
|
+
'SNG',
|
|
376
|
+
'ISA',
|
|
377
|
+
'JER',
|
|
378
|
+
'LAM',
|
|
379
|
+
'EZK',
|
|
380
|
+
'DAN',
|
|
381
|
+
'HOS',
|
|
382
|
+
'JOL',
|
|
383
|
+
'AMO',
|
|
384
|
+
'OBA',
|
|
385
|
+
'JON',
|
|
386
|
+
'MIC',
|
|
387
|
+
'NAM',
|
|
388
|
+
'HAB',
|
|
389
|
+
'ZEP',
|
|
390
|
+
'HAG',
|
|
391
|
+
'ZEC',
|
|
392
|
+
'MAL',
|
|
393
|
+
'MAT',
|
|
394
|
+
'MRK',
|
|
395
|
+
'LUK',
|
|
396
|
+
'JHN',
|
|
397
|
+
'ACT',
|
|
398
|
+
'ROM',
|
|
399
|
+
'1CO',
|
|
400
|
+
'2CO',
|
|
401
|
+
'GAL',
|
|
402
|
+
'EPH',
|
|
403
|
+
'PHP',
|
|
404
|
+
'COL',
|
|
405
|
+
'1TH',
|
|
406
|
+
'2TH',
|
|
407
|
+
'1TI',
|
|
408
|
+
'2TI',
|
|
409
|
+
'TIT',
|
|
410
|
+
'PHM',
|
|
411
|
+
'HEB',
|
|
412
|
+
'JAS',
|
|
413
|
+
'1PE',
|
|
414
|
+
'2PE',
|
|
415
|
+
'1JN',
|
|
416
|
+
'2JN',
|
|
417
|
+
'3JN',
|
|
418
|
+
'JUD',
|
|
419
|
+
'REV',
|
|
420
|
+
],
|
|
421
|
+
youversion_deep_link: 'https://www.bible.com/versions/1588',
|
|
422
|
+
organization_id: '798d8fa4-f640-4155-8cfb-fa91d1d8a06c',
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
id: 100,
|
|
426
|
+
abbreviation: 'NASB1995',
|
|
427
|
+
copyright_long:
|
|
428
|
+
'NEW AMERICAN STANDARD BIBLE® Copyright © 1960, 1962, 1963, 1968, 1971, 1972, 1973, 1975, 1977, 1995 by THE LOCKMAN FOUNDATION A Corporation Not for Profit LA HABRA, CA All Rights Reserved http://www.lockman.org',
|
|
429
|
+
copyright_short:
|
|
430
|
+
'NEW AMERICAN STANDARD BIBLE® Copyright © 1960, 1962, 1963, 1968, 1971, 1972, 1973, 1975, 1977, 1995 by THE LOCKMAN FOUNDATION A Corporation Not for Profit LA HABRA, CA All Rights Reserved http://www.lockman.org',
|
|
431
|
+
info: null,
|
|
432
|
+
publisher_url: null,
|
|
433
|
+
language_tag: 'en',
|
|
434
|
+
local_abbreviation: 'NASB1995',
|
|
435
|
+
local_title: 'New American Standard Bible - NASB 1995',
|
|
436
|
+
title: 'New American Standard Bible 1995',
|
|
437
|
+
books: [
|
|
438
|
+
'GEN',
|
|
439
|
+
'EXO',
|
|
440
|
+
'LEV',
|
|
441
|
+
'NUM',
|
|
442
|
+
'DEU',
|
|
443
|
+
'JOS',
|
|
444
|
+
'JDG',
|
|
445
|
+
'RUT',
|
|
446
|
+
'1SA',
|
|
447
|
+
'2SA',
|
|
448
|
+
'1KI',
|
|
449
|
+
'2KI',
|
|
450
|
+
'1CH',
|
|
451
|
+
'2CH',
|
|
452
|
+
'EZR',
|
|
453
|
+
'NEH',
|
|
454
|
+
'EST',
|
|
455
|
+
'JOB',
|
|
456
|
+
'PSA',
|
|
457
|
+
'PRO',
|
|
458
|
+
'ECC',
|
|
459
|
+
'SNG',
|
|
460
|
+
'ISA',
|
|
461
|
+
'JER',
|
|
462
|
+
'LAM',
|
|
463
|
+
'EZK',
|
|
464
|
+
'DAN',
|
|
465
|
+
'HOS',
|
|
466
|
+
'JOL',
|
|
467
|
+
'AMO',
|
|
468
|
+
'OBA',
|
|
469
|
+
'JON',
|
|
470
|
+
'MIC',
|
|
471
|
+
'NAM',
|
|
472
|
+
'HAB',
|
|
473
|
+
'ZEP',
|
|
474
|
+
'HAG',
|
|
475
|
+
'ZEC',
|
|
476
|
+
'MAL',
|
|
477
|
+
'MAT',
|
|
478
|
+
'MRK',
|
|
479
|
+
'LUK',
|
|
480
|
+
'JHN',
|
|
481
|
+
'ACT',
|
|
482
|
+
'ROM',
|
|
483
|
+
'1CO',
|
|
484
|
+
'2CO',
|
|
485
|
+
'GAL',
|
|
486
|
+
'EPH',
|
|
487
|
+
'PHP',
|
|
488
|
+
'COL',
|
|
489
|
+
'1TH',
|
|
490
|
+
'2TH',
|
|
491
|
+
'1TI',
|
|
492
|
+
'2TI',
|
|
493
|
+
'TIT',
|
|
494
|
+
'PHM',
|
|
495
|
+
'HEB',
|
|
496
|
+
'JAS',
|
|
497
|
+
'1PE',
|
|
498
|
+
'2PE',
|
|
499
|
+
'1JN',
|
|
500
|
+
'2JN',
|
|
501
|
+
'3JN',
|
|
502
|
+
'JUD',
|
|
503
|
+
'REV',
|
|
504
|
+
],
|
|
505
|
+
youversion_deep_link: 'https://www.bible.com/versions/100',
|
|
506
|
+
organization_id: '798d8fa4-f640-4155-8cfb-fa91d1d8a06c',
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
id: 2692,
|
|
510
|
+
abbreviation: 'NASB2020',
|
|
511
|
+
copyright_long:
|
|
512
|
+
'The NASB 2020 is an update of the NASB 1995 that further improves accuracy where possible, modernizes language, and improves readability. These refinements maintain faithful accuracy to the original texts and provide a clear understanding of God’s Word to those who prefer more modern English standards. The long-established translation standard for the NASB remains the same as it always has been, that is to accurately translate the inspired Word of God from the Hebrew, Aramaic, and Greek texts into modern English that is clearly understandable today.',
|
|
513
|
+
copyright_short:
|
|
514
|
+
'NEW AMERICAN STANDARD BIBLE® NASB®\nCopyright © 1960, 1971, 1977,1995, 2020 by The Lockman Foundation\nA Corporation Not for Profit\nLa Habra, CA\nAll Rights Reserved\nwww.lockman.org',
|
|
515
|
+
info: null,
|
|
516
|
+
publisher_url: null,
|
|
517
|
+
language_tag: 'en',
|
|
518
|
+
local_abbreviation: 'NASB2020',
|
|
519
|
+
local_title: 'New American Standard Bible - NASB',
|
|
520
|
+
title: 'New American Standard Bible 2020',
|
|
521
|
+
books: [
|
|
522
|
+
'GEN',
|
|
523
|
+
'EXO',
|
|
524
|
+
'LEV',
|
|
525
|
+
'NUM',
|
|
526
|
+
'DEU',
|
|
527
|
+
'JOS',
|
|
528
|
+
'JDG',
|
|
529
|
+
'RUT',
|
|
530
|
+
'1SA',
|
|
531
|
+
'2SA',
|
|
532
|
+
'1KI',
|
|
533
|
+
'2KI',
|
|
534
|
+
'1CH',
|
|
535
|
+
'2CH',
|
|
536
|
+
'EZR',
|
|
537
|
+
'NEH',
|
|
538
|
+
'EST',
|
|
539
|
+
'JOB',
|
|
540
|
+
'PSA',
|
|
541
|
+
'PRO',
|
|
542
|
+
'ECC',
|
|
543
|
+
'SNG',
|
|
544
|
+
'ISA',
|
|
545
|
+
'JER',
|
|
546
|
+
'LAM',
|
|
547
|
+
'EZK',
|
|
548
|
+
'DAN',
|
|
549
|
+
'HOS',
|
|
550
|
+
'JOL',
|
|
551
|
+
'AMO',
|
|
552
|
+
'OBA',
|
|
553
|
+
'JON',
|
|
554
|
+
'MIC',
|
|
555
|
+
'NAM',
|
|
556
|
+
'HAB',
|
|
557
|
+
'ZEP',
|
|
558
|
+
'HAG',
|
|
559
|
+
'ZEC',
|
|
560
|
+
'MAL',
|
|
561
|
+
'MAT',
|
|
562
|
+
'MRK',
|
|
563
|
+
'LUK',
|
|
564
|
+
'JHN',
|
|
565
|
+
'ACT',
|
|
566
|
+
'ROM',
|
|
567
|
+
'1CO',
|
|
568
|
+
'2CO',
|
|
569
|
+
'GAL',
|
|
570
|
+
'EPH',
|
|
571
|
+
'PHP',
|
|
572
|
+
'COL',
|
|
573
|
+
'1TH',
|
|
574
|
+
'2TH',
|
|
575
|
+
'1TI',
|
|
576
|
+
'2TI',
|
|
577
|
+
'TIT',
|
|
578
|
+
'PHM',
|
|
579
|
+
'HEB',
|
|
580
|
+
'JAS',
|
|
581
|
+
'1PE',
|
|
582
|
+
'2PE',
|
|
583
|
+
'1JN',
|
|
584
|
+
'2JN',
|
|
585
|
+
'3JN',
|
|
586
|
+
'JUD',
|
|
587
|
+
'REV',
|
|
588
|
+
],
|
|
589
|
+
youversion_deep_link: 'https://www.bible.com/versions/2692',
|
|
590
|
+
organization_id: '798d8fa4-f640-4155-8cfb-fa91d1d8a06c',
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
id: 12,
|
|
594
|
+
abbreviation: 'ASV',
|
|
595
|
+
copyright_long: null,
|
|
596
|
+
copyright_short: null,
|
|
597
|
+
info: null,
|
|
598
|
+
publisher_url: null,
|
|
599
|
+
language_tag: 'en',
|
|
600
|
+
local_abbreviation: 'ASV',
|
|
601
|
+
local_title: 'American Standard Version',
|
|
602
|
+
title: 'American Standard Version',
|
|
603
|
+
books: [
|
|
604
|
+
'GEN',
|
|
605
|
+
'EXO',
|
|
606
|
+
'LEV',
|
|
607
|
+
'NUM',
|
|
608
|
+
'DEU',
|
|
609
|
+
'JOS',
|
|
610
|
+
'JDG',
|
|
611
|
+
'RUT',
|
|
612
|
+
'1SA',
|
|
613
|
+
'2SA',
|
|
614
|
+
'1KI',
|
|
615
|
+
'2KI',
|
|
616
|
+
'1CH',
|
|
617
|
+
'2CH',
|
|
618
|
+
'EZR',
|
|
619
|
+
'NEH',
|
|
620
|
+
'EST',
|
|
621
|
+
'JOB',
|
|
622
|
+
'PSA',
|
|
623
|
+
'PRO',
|
|
624
|
+
'ECC',
|
|
625
|
+
'SNG',
|
|
626
|
+
'ISA',
|
|
627
|
+
'JER',
|
|
628
|
+
'LAM',
|
|
629
|
+
'EZK',
|
|
630
|
+
'DAN',
|
|
631
|
+
'HOS',
|
|
632
|
+
'JOL',
|
|
633
|
+
'AMO',
|
|
634
|
+
'OBA',
|
|
635
|
+
'JON',
|
|
636
|
+
'MIC',
|
|
637
|
+
'NAM',
|
|
638
|
+
'HAB',
|
|
639
|
+
'ZEP',
|
|
640
|
+
'HAG',
|
|
641
|
+
'ZEC',
|
|
642
|
+
'MAL',
|
|
643
|
+
'MAT',
|
|
644
|
+
'MRK',
|
|
645
|
+
'LUK',
|
|
646
|
+
'JHN',
|
|
647
|
+
'ACT',
|
|
648
|
+
'ROM',
|
|
649
|
+
'1CO',
|
|
650
|
+
'2CO',
|
|
651
|
+
'GAL',
|
|
652
|
+
'EPH',
|
|
653
|
+
'PHP',
|
|
654
|
+
'COL',
|
|
655
|
+
'1TH',
|
|
656
|
+
'2TH',
|
|
657
|
+
'1TI',
|
|
658
|
+
'2TI',
|
|
659
|
+
'TIT',
|
|
660
|
+
'PHM',
|
|
661
|
+
'HEB',
|
|
662
|
+
'JAS',
|
|
663
|
+
'1PE',
|
|
664
|
+
'2PE',
|
|
665
|
+
'1JN',
|
|
666
|
+
'2JN',
|
|
667
|
+
'3JN',
|
|
668
|
+
'JUD',
|
|
669
|
+
'REV',
|
|
670
|
+
],
|
|
671
|
+
youversion_deep_link: 'https://www.bible.com/versions/12',
|
|
672
|
+
organization_id: null,
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
id: 42,
|
|
676
|
+
abbreviation: 'CPDV',
|
|
677
|
+
copyright_long: null,
|
|
678
|
+
copyright_short: null,
|
|
679
|
+
info: null,
|
|
680
|
+
publisher_url: null,
|
|
681
|
+
language_tag: 'en',
|
|
682
|
+
local_abbreviation: 'CPDV',
|
|
683
|
+
local_title: 'Catholic Public Domain Version',
|
|
684
|
+
title: 'Catholic Public Domain Version',
|
|
685
|
+
books: [
|
|
686
|
+
'GEN',
|
|
687
|
+
'EXO',
|
|
688
|
+
'LEV',
|
|
689
|
+
'NUM',
|
|
690
|
+
'DEU',
|
|
691
|
+
'JOS',
|
|
692
|
+
'JDG',
|
|
693
|
+
'RUT',
|
|
694
|
+
'1SA',
|
|
695
|
+
'2SA',
|
|
696
|
+
'1KI',
|
|
697
|
+
'2KI',
|
|
698
|
+
'1CH',
|
|
699
|
+
'2CH',
|
|
700
|
+
'EZR',
|
|
701
|
+
'NEH',
|
|
702
|
+
'TOB',
|
|
703
|
+
'JDT',
|
|
704
|
+
'EST',
|
|
705
|
+
'JOB',
|
|
706
|
+
'PSA',
|
|
707
|
+
'PRO',
|
|
708
|
+
'ECC',
|
|
709
|
+
'SNG',
|
|
710
|
+
'WIS',
|
|
711
|
+
'SIR',
|
|
712
|
+
'ISA',
|
|
713
|
+
'JER',
|
|
714
|
+
'LAM',
|
|
715
|
+
'BAR',
|
|
716
|
+
'EZK',
|
|
717
|
+
'DAN',
|
|
718
|
+
'HOS',
|
|
719
|
+
'JOL',
|
|
720
|
+
'AMO',
|
|
721
|
+
'OBA',
|
|
722
|
+
'JON',
|
|
723
|
+
'MIC',
|
|
724
|
+
'NAM',
|
|
725
|
+
'HAB',
|
|
726
|
+
'ZEP',
|
|
727
|
+
'HAG',
|
|
728
|
+
'ZEC',
|
|
729
|
+
'MAL',
|
|
730
|
+
'1MA',
|
|
731
|
+
'2MA',
|
|
732
|
+
'MAT',
|
|
733
|
+
'MRK',
|
|
734
|
+
'LUK',
|
|
735
|
+
'JHN',
|
|
736
|
+
'ACT',
|
|
737
|
+
'ROM',
|
|
738
|
+
'1CO',
|
|
739
|
+
'2CO',
|
|
740
|
+
'GAL',
|
|
741
|
+
'EPH',
|
|
742
|
+
'PHP',
|
|
743
|
+
'COL',
|
|
744
|
+
'1TH',
|
|
745
|
+
'2TH',
|
|
746
|
+
'1TI',
|
|
747
|
+
'2TI',
|
|
748
|
+
'TIT',
|
|
749
|
+
'PHM',
|
|
750
|
+
'HEB',
|
|
751
|
+
'JAS',
|
|
752
|
+
'1PE',
|
|
753
|
+
'2PE',
|
|
754
|
+
'1JN',
|
|
755
|
+
'2JN',
|
|
756
|
+
'3JN',
|
|
757
|
+
'JUD',
|
|
758
|
+
'REV',
|
|
759
|
+
],
|
|
760
|
+
youversion_deep_link: 'https://www.bible.com/versions/42',
|
|
761
|
+
organization_id: null,
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
id: 130,
|
|
765
|
+
abbreviation: 'TOJB2011',
|
|
766
|
+
copyright_long:
|
|
767
|
+
'THE ORTHODOX JEWISH TANAKH\nArtists For Israel Intl Inc.\nThis version also appears with the Orthodox Yiddish Triglot which presents the Hebrew Yiddish script in Latin script and an English word for word translation, available at afii.org/Torah\nTo donate PayPal.Me',
|
|
768
|
+
copyright_short:
|
|
769
|
+
'THE ORTHODOX JEWISH BIBLE\nFOURTH EDITION REVISED © Artists For Israel Intl Inc., 2002-2011, 2021, 2024.',
|
|
770
|
+
info: null,
|
|
771
|
+
publisher_url: null,
|
|
772
|
+
language_tag: 'en',
|
|
773
|
+
local_abbreviation: 'TOJB2011',
|
|
774
|
+
local_title: 'The Orthodox Jewish Bible',
|
|
775
|
+
title: 'The Orthodox Jewish Bible',
|
|
776
|
+
books: [
|
|
777
|
+
'GEN',
|
|
778
|
+
'EXO',
|
|
779
|
+
'LEV',
|
|
780
|
+
'NUM',
|
|
781
|
+
'DEU',
|
|
782
|
+
'JOS',
|
|
783
|
+
'JDG',
|
|
784
|
+
'1SA',
|
|
785
|
+
'2SA',
|
|
786
|
+
'1KI',
|
|
787
|
+
'2KI',
|
|
788
|
+
'ISA',
|
|
789
|
+
'JER',
|
|
790
|
+
'EZK',
|
|
791
|
+
'HOS',
|
|
792
|
+
'JOL',
|
|
793
|
+
'AMO',
|
|
794
|
+
'OBA',
|
|
795
|
+
'JON',
|
|
796
|
+
'MIC',
|
|
797
|
+
'NAM',
|
|
798
|
+
'HAB',
|
|
799
|
+
'ZEP',
|
|
800
|
+
'HAG',
|
|
801
|
+
'ZEC',
|
|
802
|
+
'MAL',
|
|
803
|
+
'PSA',
|
|
804
|
+
'PRO',
|
|
805
|
+
'JOB',
|
|
806
|
+
'SNG',
|
|
807
|
+
'RUT',
|
|
808
|
+
'LAM',
|
|
809
|
+
'ECC',
|
|
810
|
+
'EST',
|
|
811
|
+
'DAN',
|
|
812
|
+
'EZR',
|
|
813
|
+
'NEH',
|
|
814
|
+
'1CH',
|
|
815
|
+
'2CH',
|
|
816
|
+
'MAT',
|
|
817
|
+
'MRK',
|
|
818
|
+
'LUK',
|
|
819
|
+
'JHN',
|
|
820
|
+
'ACT',
|
|
821
|
+
'ROM',
|
|
822
|
+
'1CO',
|
|
823
|
+
'2CO',
|
|
824
|
+
'GAL',
|
|
825
|
+
'EPH',
|
|
826
|
+
'PHP',
|
|
827
|
+
'COL',
|
|
828
|
+
'1TH',
|
|
829
|
+
'2TH',
|
|
830
|
+
'1TI',
|
|
831
|
+
'2TI',
|
|
832
|
+
'TIT',
|
|
833
|
+
'PHM',
|
|
834
|
+
'HEB',
|
|
835
|
+
'JAS',
|
|
836
|
+
'1PE',
|
|
837
|
+
'2PE',
|
|
838
|
+
'1JN',
|
|
839
|
+
'2JN',
|
|
840
|
+
'3JN',
|
|
841
|
+
'JUD',
|
|
842
|
+
'REV',
|
|
843
|
+
],
|
|
844
|
+
youversion_deep_link: 'https://www.bible.com/versions/130',
|
|
845
|
+
organization_id: 'f2ac19b4-768c-4564-acaf-f28724235ad0',
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
id: 206,
|
|
849
|
+
abbreviation: 'engWEBUS',
|
|
850
|
+
copyright_long: 'This Public Domain Bible text is courtesy of eBible.org.',
|
|
851
|
+
copyright_short: 'PUBLIC DOMAIN (not copyrighted)',
|
|
852
|
+
info: null,
|
|
853
|
+
publisher_url: null,
|
|
854
|
+
language_tag: 'en',
|
|
855
|
+
local_abbreviation: 'WEBUS',
|
|
856
|
+
local_title: "World English Bible, American English Edition, without Strong's Numbers",
|
|
857
|
+
title: "World English Bible, American English Edition, without Strong's Numbers",
|
|
858
|
+
books: [
|
|
859
|
+
'GEN',
|
|
860
|
+
'EXO',
|
|
861
|
+
'LEV',
|
|
862
|
+
'NUM',
|
|
863
|
+
'DEU',
|
|
864
|
+
'JOS',
|
|
865
|
+
'JDG',
|
|
866
|
+
'RUT',
|
|
867
|
+
'1SA',
|
|
868
|
+
'2SA',
|
|
869
|
+
'1KI',
|
|
870
|
+
'2KI',
|
|
871
|
+
'1CH',
|
|
872
|
+
'2CH',
|
|
873
|
+
'EZR',
|
|
874
|
+
'NEH',
|
|
875
|
+
'EST',
|
|
876
|
+
'JOB',
|
|
877
|
+
'PSA',
|
|
878
|
+
'PRO',
|
|
879
|
+
'ECC',
|
|
880
|
+
'SNG',
|
|
881
|
+
'ISA',
|
|
882
|
+
'JER',
|
|
883
|
+
'LAM',
|
|
884
|
+
'EZK',
|
|
885
|
+
'DAN',
|
|
886
|
+
'HOS',
|
|
887
|
+
'JOL',
|
|
888
|
+
'AMO',
|
|
889
|
+
'OBA',
|
|
890
|
+
'JON',
|
|
891
|
+
'MIC',
|
|
892
|
+
'NAM',
|
|
893
|
+
'HAB',
|
|
894
|
+
'ZEP',
|
|
895
|
+
'HAG',
|
|
896
|
+
'ZEC',
|
|
897
|
+
'MAL',
|
|
898
|
+
'TOB',
|
|
899
|
+
'JDT',
|
|
900
|
+
'ESG',
|
|
901
|
+
'WIS',
|
|
902
|
+
'SIR',
|
|
903
|
+
'BAR',
|
|
904
|
+
'1MA',
|
|
905
|
+
'2MA',
|
|
906
|
+
'1ES',
|
|
907
|
+
'2ES',
|
|
908
|
+
'MAN',
|
|
909
|
+
'3MA',
|
|
910
|
+
'4MA',
|
|
911
|
+
'PS2',
|
|
912
|
+
'MAT',
|
|
913
|
+
'MRK',
|
|
914
|
+
'LUK',
|
|
915
|
+
'JHN',
|
|
916
|
+
'ACT',
|
|
917
|
+
'ROM',
|
|
918
|
+
'1CO',
|
|
919
|
+
'2CO',
|
|
920
|
+
'GAL',
|
|
921
|
+
'EPH',
|
|
922
|
+
'PHP',
|
|
923
|
+
'COL',
|
|
924
|
+
'1TH',
|
|
925
|
+
'2TH',
|
|
926
|
+
'1TI',
|
|
927
|
+
'2TI',
|
|
928
|
+
'TIT',
|
|
929
|
+
'PHM',
|
|
930
|
+
'HEB',
|
|
931
|
+
'JAS',
|
|
932
|
+
'1PE',
|
|
933
|
+
'2PE',
|
|
934
|
+
'1JN',
|
|
935
|
+
'2JN',
|
|
936
|
+
'3JN',
|
|
937
|
+
'JUD',
|
|
938
|
+
'REV',
|
|
939
|
+
],
|
|
940
|
+
youversion_deep_link: 'https://www.bible.com/versions/206',
|
|
941
|
+
organization_id: '73a4fa15-1b99-430a-b504-dbee75b32d96',
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
id: 1932,
|
|
945
|
+
abbreviation: 'FBV',
|
|
946
|
+
copyright_long:
|
|
947
|
+
'FBV: this translation is directly from the Hebrew and Greek text. It is licensed under a Creative Commons Attribution-ShareAlike 4.0 Unported License. This means this work can be copied and used as long as it is identified as the Free Bible Version and any adaptations are identified. Any derivative work is to be released under the same license. (A full description of the license is at https://creativecommons.org/licenses/by-sa/4.0/legalcode). The intent is to be as faithful as possible to the original meaning without being awkward or misleading. The style is contemporary English, avoiding slang or colloquialisms, speaking to our modern society in a way people will understand. The Free Bible Version is a project of Free Bible Ministry www.freebibleministry.org',
|
|
948
|
+
copyright_short:
|
|
949
|
+
'Dr. Jonathan Gallagher. Released under Creative Commons Attribution-ShareAlike 4.0 Unported License. Version 4.3. For corrections send email to jonathangallagherfbv@gmail.com',
|
|
950
|
+
info: null,
|
|
951
|
+
publisher_url: null,
|
|
952
|
+
language_tag: 'en',
|
|
953
|
+
local_abbreviation: 'FBV',
|
|
954
|
+
local_title: 'Free Bible Version',
|
|
955
|
+
title: 'Free Bible Version',
|
|
956
|
+
books: [
|
|
957
|
+
'GEN',
|
|
958
|
+
'EXO',
|
|
959
|
+
'LEV',
|
|
960
|
+
'NUM',
|
|
961
|
+
'DEU',
|
|
962
|
+
'JOS',
|
|
963
|
+
'JDG',
|
|
964
|
+
'RUT',
|
|
965
|
+
'1SA',
|
|
966
|
+
'2SA',
|
|
967
|
+
'1KI',
|
|
968
|
+
'2KI',
|
|
969
|
+
'1CH',
|
|
970
|
+
'2CH',
|
|
971
|
+
'EZR',
|
|
972
|
+
'NEH',
|
|
973
|
+
'EST',
|
|
974
|
+
'JOB',
|
|
975
|
+
'PSA',
|
|
976
|
+
'PRO',
|
|
977
|
+
'ECC',
|
|
978
|
+
'SNG',
|
|
979
|
+
'ISA',
|
|
980
|
+
'JER',
|
|
981
|
+
'LAM',
|
|
982
|
+
'EZK',
|
|
983
|
+
'DAN',
|
|
984
|
+
'HOS',
|
|
985
|
+
'JOL',
|
|
986
|
+
'AMO',
|
|
987
|
+
'OBA',
|
|
988
|
+
'JON',
|
|
989
|
+
'MIC',
|
|
990
|
+
'NAM',
|
|
991
|
+
'HAB',
|
|
992
|
+
'ZEP',
|
|
993
|
+
'HAG',
|
|
994
|
+
'ZEC',
|
|
995
|
+
'MAL',
|
|
996
|
+
'MAT',
|
|
997
|
+
'MRK',
|
|
998
|
+
'LUK',
|
|
999
|
+
'JHN',
|
|
1000
|
+
'ACT',
|
|
1001
|
+
'ROM',
|
|
1002
|
+
'1CO',
|
|
1003
|
+
'2CO',
|
|
1004
|
+
'GAL',
|
|
1005
|
+
'EPH',
|
|
1006
|
+
'PHP',
|
|
1007
|
+
'COL',
|
|
1008
|
+
'1TH',
|
|
1009
|
+
'2TH',
|
|
1010
|
+
'1TI',
|
|
1011
|
+
'2TI',
|
|
1012
|
+
'TIT',
|
|
1013
|
+
'PHM',
|
|
1014
|
+
'HEB',
|
|
1015
|
+
'JAS',
|
|
1016
|
+
'1PE',
|
|
1017
|
+
'2PE',
|
|
1018
|
+
'1JN',
|
|
1019
|
+
'2JN',
|
|
1020
|
+
'3JN',
|
|
1021
|
+
'JUD',
|
|
1022
|
+
'REV',
|
|
1023
|
+
],
|
|
1024
|
+
youversion_deep_link: 'https://www.bible.com/versions/1932',
|
|
1025
|
+
organization_id: '604c5c2e-bb75-4e58-98b2-fb39847619c2',
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
id: 2660,
|
|
1029
|
+
abbreviation: 'LSV',
|
|
1030
|
+
copyright_long:
|
|
1031
|
+
'The Literal Standard Version of The Holy Bible is a registered copyright of Covenant Press and the Covenant Christian Coalition (© 2020), but has been subsequently released under the Creative Commons Attribution-ShareAlike license (CC BY-SA) per our desire to provide God’s word freely. Covenant Press requests that the text remain unaltered in the English language and that translations based on the LSV maintain the same spirit of faithfulness to the original Hebrew, Aramaic, and Greek text. Attribution of minor citations for personal or non-commercial use can be provided as simply “LSV” or “Literal Standard Version.” Citations for commercial use, or distribution of the entire LSV Bible or entire book(s) of the LSV Bible, must be fully attributed and include both “Literal Standard Version (LSV)” and the name of our organization. Covenant Press is soliciting partnerships with Bible publishers that are interested in the LSV project. For queries about partnering with us, please email the translation team at covenantpress@ccc.one. To learn more, visit lsvbible.com. The purpose behind the LSV is to provide readers with a modern, easy-to-read, literal, and accurate translation of the Bible that is free to read, distribute, and translate from. We pray that God will use the LSV to illuminate the hearts and minds of multitudes with the good news that His Son Jesus Christ came in the flesh, died for our sins as a substitutionary sacrifice, rose bodily from the dead, and is coming back again.',
|
|
1032
|
+
copyright_short:
|
|
1033
|
+
'The Literal Standard Version of The Holy Bible is a registered copyright of Covenant Press and the Covenant Christian Coalition (© 2020), but has been subsequently released under the Creative Commons Attribution-ShareAlike license (CC BY-SA) per our desire to provide God’s word freely. Covenant Press requests that the text remain unaltered in the English language and that translations based on the LSV maintain the same spirit of faithfulness to the original Hebrew, Aramaic, and Greek text. Attribution of minor citations for personal or non-commercial use can be provided as simply “LSV” or “Literal Standard Version.” Citations for commercial use, or distribution of the entire LSV Bible or entire book(s) of the LSV Bible, must be fully attributed and include both “Literal Standard Version (LSV)” and the name of our organization. Covenant Press is soliciting partnerships with Bible publishers that are interested in the LSV project. For queries about partnering with us, please email the translation team at covenantpress@ccc.one. To learn more, visit lsvbible.com. The purpose behind the LSV is to provide readers with a modern, easy-to-read, literal, and accurate translation of the Bible that is free to read, distribute, and translate from. We pray that God will use the LSV to illuminate the hearts and minds of multitudes with the good news that His Son Jesus Christ came in the flesh, died for our sins as a substitutionary sacrifice, rose bodily from the dead, and is coming back again.',
|
|
1034
|
+
info: null,
|
|
1035
|
+
publisher_url: null,
|
|
1036
|
+
language_tag: 'en',
|
|
1037
|
+
local_abbreviation: 'LSV',
|
|
1038
|
+
local_title: 'Literal Standard Version',
|
|
1039
|
+
title: 'Literal Standard Version',
|
|
1040
|
+
books: [
|
|
1041
|
+
'GEN',
|
|
1042
|
+
'EXO',
|
|
1043
|
+
'LEV',
|
|
1044
|
+
'NUM',
|
|
1045
|
+
'DEU',
|
|
1046
|
+
'JOS',
|
|
1047
|
+
'JDG',
|
|
1048
|
+
'RUT',
|
|
1049
|
+
'1SA',
|
|
1050
|
+
'2SA',
|
|
1051
|
+
'1KI',
|
|
1052
|
+
'2KI',
|
|
1053
|
+
'1CH',
|
|
1054
|
+
'2CH',
|
|
1055
|
+
'EZR',
|
|
1056
|
+
'NEH',
|
|
1057
|
+
'EST',
|
|
1058
|
+
'JOB',
|
|
1059
|
+
'PSA',
|
|
1060
|
+
'PRO',
|
|
1061
|
+
'ECC',
|
|
1062
|
+
'SNG',
|
|
1063
|
+
'ISA',
|
|
1064
|
+
'JER',
|
|
1065
|
+
'LAM',
|
|
1066
|
+
'EZK',
|
|
1067
|
+
'DAN',
|
|
1068
|
+
'HOS',
|
|
1069
|
+
'JOL',
|
|
1070
|
+
'AMO',
|
|
1071
|
+
'OBA',
|
|
1072
|
+
'JON',
|
|
1073
|
+
'MIC',
|
|
1074
|
+
'NAM',
|
|
1075
|
+
'HAB',
|
|
1076
|
+
'ZEP',
|
|
1077
|
+
'HAG',
|
|
1078
|
+
'ZEC',
|
|
1079
|
+
'MAL',
|
|
1080
|
+
'MAT',
|
|
1081
|
+
'MRK',
|
|
1082
|
+
'LUK',
|
|
1083
|
+
'JHN',
|
|
1084
|
+
'ACT',
|
|
1085
|
+
'ROM',
|
|
1086
|
+
'1CO',
|
|
1087
|
+
'2CO',
|
|
1088
|
+
'GAL',
|
|
1089
|
+
'EPH',
|
|
1090
|
+
'PHP',
|
|
1091
|
+
'COL',
|
|
1092
|
+
'1TH',
|
|
1093
|
+
'2TH',
|
|
1094
|
+
'1TI',
|
|
1095
|
+
'2TI',
|
|
1096
|
+
'TIT',
|
|
1097
|
+
'PHM',
|
|
1098
|
+
'HEB',
|
|
1099
|
+
'JAS',
|
|
1100
|
+
'1PE',
|
|
1101
|
+
'2PE',
|
|
1102
|
+
'1JN',
|
|
1103
|
+
'2JN',
|
|
1104
|
+
'3JN',
|
|
1105
|
+
'JUD',
|
|
1106
|
+
'REV',
|
|
1107
|
+
],
|
|
1108
|
+
youversion_deep_link: 'https://www.bible.com/versions/2660',
|
|
1109
|
+
organization_id: null,
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
id: 3034,
|
|
1113
|
+
abbreviation: 'BSB',
|
|
1114
|
+
copyright_long: 'https://berean.bible/',
|
|
1115
|
+
copyright_short:
|
|
1116
|
+
"The Holy Bible, Berean Standard Bible, BSB is produced in cooperation with Bible Hub, Discovery Bible, OpenBible.com, and the Berean Bible Translation Committee. This text of God's Word has been dedicated to the public domain.",
|
|
1117
|
+
info: null,
|
|
1118
|
+
publisher_url: null,
|
|
1119
|
+
language_tag: 'en',
|
|
1120
|
+
local_abbreviation: 'BSB',
|
|
1121
|
+
local_title: 'English: Berean Standard Bible',
|
|
1122
|
+
title: 'Berean Standard Bible',
|
|
1123
|
+
books: [
|
|
1124
|
+
'GEN',
|
|
1125
|
+
'EXO',
|
|
1126
|
+
'LEV',
|
|
1127
|
+
'NUM',
|
|
1128
|
+
'DEU',
|
|
1129
|
+
'JOS',
|
|
1130
|
+
'JDG',
|
|
1131
|
+
'RUT',
|
|
1132
|
+
'1SA',
|
|
1133
|
+
'2SA',
|
|
1134
|
+
'1KI',
|
|
1135
|
+
'2KI',
|
|
1136
|
+
'1CH',
|
|
1137
|
+
'2CH',
|
|
1138
|
+
'EZR',
|
|
1139
|
+
'NEH',
|
|
1140
|
+
'EST',
|
|
1141
|
+
'JOB',
|
|
1142
|
+
'PSA',
|
|
1143
|
+
'PRO',
|
|
1144
|
+
'ECC',
|
|
1145
|
+
'SNG',
|
|
1146
|
+
'ISA',
|
|
1147
|
+
'JER',
|
|
1148
|
+
'LAM',
|
|
1149
|
+
'EZK',
|
|
1150
|
+
'DAN',
|
|
1151
|
+
'HOS',
|
|
1152
|
+
'JOL',
|
|
1153
|
+
'AMO',
|
|
1154
|
+
'OBA',
|
|
1155
|
+
'JON',
|
|
1156
|
+
'MIC',
|
|
1157
|
+
'NAM',
|
|
1158
|
+
'HAB',
|
|
1159
|
+
'ZEP',
|
|
1160
|
+
'HAG',
|
|
1161
|
+
'ZEC',
|
|
1162
|
+
'MAL',
|
|
1163
|
+
'MAT',
|
|
1164
|
+
'MRK',
|
|
1165
|
+
'LUK',
|
|
1166
|
+
'JHN',
|
|
1167
|
+
'ACT',
|
|
1168
|
+
'ROM',
|
|
1169
|
+
'1CO',
|
|
1170
|
+
'2CO',
|
|
1171
|
+
'GAL',
|
|
1172
|
+
'EPH',
|
|
1173
|
+
'PHP',
|
|
1174
|
+
'COL',
|
|
1175
|
+
'1TH',
|
|
1176
|
+
'2TH',
|
|
1177
|
+
'1TI',
|
|
1178
|
+
'2TI',
|
|
1179
|
+
'TIT',
|
|
1180
|
+
'PHM',
|
|
1181
|
+
'HEB',
|
|
1182
|
+
'JAS',
|
|
1183
|
+
'1PE',
|
|
1184
|
+
'2PE',
|
|
1185
|
+
'1JN',
|
|
1186
|
+
'2JN',
|
|
1187
|
+
'3JN',
|
|
1188
|
+
'JUD',
|
|
1189
|
+
'REV',
|
|
1190
|
+
],
|
|
1191
|
+
youversion_deep_link: 'https://www.bible.com/versions/3034',
|
|
1192
|
+
organization_id: 'c3187cfe-a191-4088-9fb2-24c306d9eb38',
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
id: 3427,
|
|
1196
|
+
abbreviation: 'TCENT',
|
|
1197
|
+
copyright_long:
|
|
1198
|
+
'Copyright © 2022 Robert Adam Boyd\nThe Text-Critical English New Testament and the Byzantine Text Version are made available to you under the terms of the Creative Commons Attribution license 4.0.\nYou are free to:\nShare — copy and redistribute the material in any medium or format\nAdapt — remix, transform, and build upon the material for any purpose, even commercially,\nUnder the following terms:\nAttribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.\nNo additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.\n"The Text-Critical English New Testament" and "Byzantine Text Version" are trademarks of Robert Adam Boyd. If you adapt, remix, transform, or in any other way change the translation or footnotes, you may not call it "The Text-Critical English New Testament" or "Byzantine Text Version".',
|
|
1199
|
+
copyright_short: 'Copyright © 2022 Robert Adam Boyd',
|
|
1200
|
+
info: null,
|
|
1201
|
+
publisher_url: null,
|
|
1202
|
+
language_tag: 'en',
|
|
1203
|
+
local_abbreviation: 'TCENT',
|
|
1204
|
+
local_title: 'The Text-Critical English New Testament',
|
|
1205
|
+
title: 'The Text-Critical English New Testament',
|
|
1206
|
+
books: [
|
|
1207
|
+
'MAT',
|
|
1208
|
+
'MRK',
|
|
1209
|
+
'LUK',
|
|
1210
|
+
'JHN',
|
|
1211
|
+
'ACT',
|
|
1212
|
+
'ROM',
|
|
1213
|
+
'1CO',
|
|
1214
|
+
'2CO',
|
|
1215
|
+
'GAL',
|
|
1216
|
+
'EPH',
|
|
1217
|
+
'PHP',
|
|
1218
|
+
'COL',
|
|
1219
|
+
'1TH',
|
|
1220
|
+
'2TH',
|
|
1221
|
+
'1TI',
|
|
1222
|
+
'2TI',
|
|
1223
|
+
'TIT',
|
|
1224
|
+
'PHM',
|
|
1225
|
+
'HEB',
|
|
1226
|
+
'JAS',
|
|
1227
|
+
'1PE',
|
|
1228
|
+
'2PE',
|
|
1229
|
+
'1JN',
|
|
1230
|
+
'2JN',
|
|
1231
|
+
'3JN',
|
|
1232
|
+
'JUD',
|
|
1233
|
+
'REV',
|
|
1234
|
+
],
|
|
1235
|
+
youversion_deep_link: 'https://www.bible.com/versions/3427',
|
|
1236
|
+
organization_id: '73a4fa15-1b99-430a-b504-dbee75b32d96',
|
|
1237
|
+
},
|
|
1238
|
+
];
|