~repos /only-bible-app

#kotlin#android#ios

git clone https://pyrossh.dev/repos/only-bible-app.git

The only bible app you will ever need. No ads. No in-app purchases. No distractions.



ui/src/consts.ts



export class Bible {
constructor(
public filename: string,
public code: string,
public language: string,
public version: string,
public name: string,
public voice: string,
public settingsText: string
) { }
}
export const BIBLES = [
new Bible("en_kjv.txt", "en", "English", "KJV", "English", "en-GB-RyanNeural", "Text Settings"),
new Bible("en_bsb.txt", "en", "English", "BSB", "English", "en-GB-RyanNeural", "Text Settings"),
new Bible("bn.txt", "bn", "Bengali", "BN", "বাংলা", "bn-IN-TanishaaNeural", "সেটিংস"),
new Bible("gu.txt", "gu", "Gujarati", "GU", "ગુજરાતી", "gu-IN-DhwaniNeural", "સેટિંગ્સ"),
new Bible("hi.txt", "hi", "Hindi", "HI", "हिन्दी", "hi-IN-SwaraNeural", "समायोजन"),
new Bible("kn.txt", "kn", "Kannada", "KN", "ಕನ್ನಡ", "kn-IN-GaganNeural", "ಸಂಯೋಜನೆಗಳು"),
new Bible("ml.txt", "ml", "Malayalam", "ML", "മലയാളം", "ml-IN-SobhanaNeural", "ക്രമീകരണങ്ങൾ"),
new Bible("ne.txt", "ne", "Nepali", "NE", "नेपाली", "ne-NP-HemkalaNeural", "सेटिङहरू"),
new Bible("or.txt", "or", "Odia", "OR", "ଓଡ଼ିଆ", "or-IN-SubhasiniNeural", "ସେଟିଂସମୂହ"),
new Bible("pa.txt", "pa", "Punjabi", "PA", "ਪੰਜਾਬੀ", "pa-IN-OjasNeural", "ਸੈਟਿੰਗਾਂ"),
new Bible("ta.txt", "ta", "Tamil", "TA", "தமிழ்", "ta-IN-PallaviNeural", "அமைப்புகள்"),
new Bible("te.txt", "te", "Telugu", "TE", "తెలుగు", "te-IN-ShrutiNeural", "సెట్టింగ్\\\\u200Cలు"),
]
export const BOOKS = {
"Genesis": 50,
"Exodus": 40,
"Leviticus": 27,
"Numbers": 36,
"Deuteronomy": 34,
"Joshua": 24,
"Judges": 21,
"Ruth": 4,
"1 Samuel": 31,
"2 Samuel": 24,
"1 Kings": 22,
"2 Kings": 25,
"1 Chronicles": 29,
"2 Chronicles": 36,
"Ezra": 10,
"Nehemiah": 13,
"Esther": 10,
"Job": 42,
"Psalms": 150,
"Proverbs": 31,
"Ecclesiastes": 12,
"Song of Solomon": 8,
"Isaiah": 66,
"Jeremiah": 52,
"Lamentations": 5,
"Ezekiel": 48,
"Daniel": 12,
"Hosea": 14,
"Joel": 3,
"Amos": 9,
"Obadiah": 1,
"Jonah": 4,
"Micah": 7,
"Nahum": 3,
"Habakkuk": 3,
"Zephaniah": 3,
"Haggai": 2,
"Zechariah": 14,
"Malachi": 4,
"Matthew": 28,
"Mark": 16,
"Luke": 24,
"John": 21,
"Acts": 28,
"Romans": 16,
"1 Corinthians": 16,
"2 Corinthians": 13,
"Galatians": 6,
"Ephesians": 6,
"Philippians": 4,
"Colossians": 4,
"1 Thessalonians": 5,
"2 Thessalonians": 3,
"1 Timothy": 6,
"2 Timothy": 4,
"Titus": 3,
"Philemon": 1,
"Hebrews": 13,
"James": 5,
"1 Peter": 5,
"2 Peter": 3,
"1 John": 5,
"2 John": 1,
"3 John": 1,
"Jude": 1,
"Revelation": 22
}