diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index 276b8f6..0f1d8e5 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -18,5 +18,67 @@ "input_chapter_title": "Input Chapter Title:", "input_title": "Input Title:", "input_verse": "Input Verse:" - } + }, + "nodes": [ + { + "value": "loa", + "label": "Lessons on Assurance" + }, + { + "value": "tms60", + "label": "TMS60", + "children": [ + { "value": "tms-60-pack-a", "label": "Living the New Life" }, + { "value": "tms-60-pack-b", "label": "Proclaiming Christ" }, + { "value": "tms-60-pack-c", "label": "Reliance on God's Resources" }, + { "value": "tms-60-pack-d", "label": "Being Christ's Disciple" }, + { "value": "tms-60-pack-e", "label": "Growth in Christlikeness" } + ] + }, + { + "value": "dep-1", + "label": "DEP 1" + }, + { + "value": "dep-2", + "label": "DEP 2", + "children": [ + { "value": "dep-2-part-a", "label": "Why do we have Quiet Time?" }, + { "value": "dep-2-part-b", "label": "What is Quiet Time?" }, + { "value": "dep-2-part-c", "label": "Examples of Quiet Time" } + ] + }, + { + "value": "dep-3", + "label": "DEP 3", + "children": [ + { "value": "dep-3-part-a", "label": "Authority of the Word" }, + { "value": "dep-3-part-b", "label": "value of the Word" }, + { "value": "dep-3-part-c", "label": "Attitude to the Word" }, + { "value": "dep-3-part-d", "label": "How to take in the Word (Word Hand Illustration)" } + ] + }, + { + "value": "dep-4", + "label": "DEP 4", + "children": [ + { "value": "dep-4-part-a", "label": "Command of Prayer" }, + { "value": "dep-4-part-b", "label": "Promises and Blessings of Prayer" }, + { "value": "dep-4-part-c", "label": "Conditions for Answered Prayer" }, + { "value": "dep-4-part-d", "label": "Examples of Prayer" }, + { "value": "dep-4-part-e", "label": "Prayer Hand Illustration" } + ] + }, + { + "value": "dep-5", + "label": "DEP 5", + "children": [ + { "value": "dep-5-part-a", "label": "Foundation of Christian Fellowship" }, + { "value": "dep-5-part-b", "label": "Importance of fellowship" }, + { "value": "dep-5-part-c", "label": "Essentials of fellowship" }, + { "value": "dep-5-part-d", "label": "Attitude of fellowship" }, + { "value": "dep-5-part-e", "label": "Problem solving in fellowship" } + ] + } + ] } \ No newline at end of file diff --git a/public/locales/kn/translation.json b/public/locales/kn/translation.json index d29cc39..ecdbe32 100644 --- a/public/locales/kn/translation.json +++ b/public/locales/kn/translation.json @@ -1,11 +1,11 @@ { "main": { - "title": "Scripture Memory Tester (kr)", - "pick_lang": "Pick Language (kr)", - "pick_num_verses": "Pick Number of Verses: (kr)", - "num_verses_tested": "Number of Verses Tested:", + "title": "성경 암송 앱", + "pick_lang": "언어 선택", + "pick_num_verses": "암송 구절 선택:", + "num_verses_tested": "구절 수 선택:", "note_num_verses": "(It will only give you as many verses as there are in selected packs)", - "set_shuffle": "Set Shuffle:", + "set_shuffle": "무작위 설정:", "note_set_shuffle": "(Otherwise cards will appear in sequential order)", "hide_reference": "Set Hide Reference:", "note_hide_reference": "(If you also want to test the verse reference)", @@ -18,5 +18,11 @@ "input_chapter_title": "Input Chapter Title: (KR)", "input_title": "Input Title: (KR)", "input_verse": "Input Verse: (KR)" - } + }, + "nodes": [ + { + "value": "loa", + "label": "Lessons on Assurance" + } + ] } \ No newline at end of file diff --git a/src/VerseSampler.jsx b/src/VerseSampler.jsx index 681cf13..d83a2ad 100644 --- a/src/VerseSampler.jsx +++ b/src/VerseSampler.jsx @@ -14,7 +14,7 @@ import { useTranslation } from 'react-i18next'; import logo from './assets/droplet.svg'; import { Suspense } from "react"; -const GenerateTestList = ({ VerseData, packs, testCount, toShuffle, toHideReference}) => { +const GenerateTestList = ({ VerseData, packs, testCount, toShuffle, toHideReference, translate}) => { let testList = packs.reduce( // grab all elements included checked in "packs" (accumulator, currentValue) => accumulator.concat(VerseData[currentValue]), @@ -22,84 +22,28 @@ const GenerateTestList = ({ VerseData, packs, testCount, toShuffle, toHideRefere ); testList = toShuffle ? _.sample(testList, testCount) : _.first(testList, testCount); return ( - + ) } -const ArrayTester = ({ array, toHideReference }) => { +const ArrayTester = ({ array, toHideReference, translate}) => { const list = array.map((element) => ( // key needs to be unique; chose 3 elements that will separate all elements - + )) return list } - -const nodes = [ - { - value: "loa", - label: "Lessons on Assurance", - }, - { - value: "tms60", - label: "TMS60", - children: [ - { value: "tms-60-pack-a", label: "Living the New Life" }, - { value: "tms-60-pack-b", label: "Proclaiming Christ" }, - { value: "tms-60-pack-c", label: "Reliance on God's Resources" }, - { value: "tms-60-pack-d", label: "Being Christ's Disciple" }, - { value: "tms-60-pack-e", label: "Growth in Christlikeness" } - ], - }, - { - value: "dep-1", - label: "DEP 1", - }, - { - value: "dep-2", - label: "DEP 2", - children: [ - { value: "dep-2-part-a", label: "Why do we have Quiet Time?" }, - { value: "dep-2-part-b", label: "What is Quiet Time?" }, - { value: "dep-2-part-c", label: "Examples of Quiet Time" } - ], - }, - { - value: "dep-3", - label: "DEP 3", - children: [ - { value: "dep-3-part-a", label: "Authority of the Word" }, - { value: "dep-3-part-b", label: "Value of the Word" }, - { value: "dep-3-part-c", label: "Attitude to the Word" }, - { value: "dep-3-part-d", label: "How to take in the Word (Word Hand Illustration)" } - ], - }, - { - value: "dep-4", - label: "DEP 4", - children: [ - { value: "dep-4-part-a", label: "Command of Prayer" }, - { value: "dep-4-part-b", label: "Promises and Blessings of Prayer" }, - { value: "dep-4-part-c", label: "Conditions for Answered Prayer" }, - { value: "dep-4-part-d", label: "Examples of Prayer" }, - { value: "dep-4-part-e", label: "Prayer Hand Illustration" } - ], - }, - { - value: "dep-5", - label: "DEP 5", - children: [ - { value: "dep-5-part-a", label: "Foundation of Christian Fellowship" }, - { value: "dep-5-part-b", label: "Importance of fellowship" }, - { value: "dep-5-part-c", label: "Essentials of fellowship" }, - { value: "dep-5-part-d", label: "Attitude of fellowship" }, - { value: "dep-5-part-e", label: "Problem solving in fellowship" } - ], - }, -]; - -const CheckboxWidget = ({checked, expanded, setChecked, setExpanded}) => { +const CheckboxWidget = ({nodes, checked, expanded, setChecked, setExpanded}) => { return (
{ // loadCustomData const loadCustomData = (language) => { let data; - console.log(language) + // console.log(language) switch (language) { case 'kn': data = fullVerseData.kn; @@ -232,7 +176,7 @@ function Page() {

{t('main.note_num_verses')}

- Set Shuffle: + {t('main.set_shuffle')} {t('main.pick_pack')}


diff --git a/src/VerseValidator.jsx b/src/VerseValidator.jsx index 433787e..6e9f2f5 100644 --- a/src/VerseValidator.jsx +++ b/src/VerseValidator.jsx @@ -1,14 +1,10 @@ import { useState } from "react"; import "./VerseValidator.css"; import { StringDiff } from "react-string-diff"; -import { useTranslation } from 'react-i18next'; // function to render and handle logic of each of the cells -const VerseValidator = ({ element: { pack, title, chapterTitle, reference, verse } , toHideReference}) => { // useful use of destructuring here - - // setup i18 for function - const { t } = useTranslation(); +const VerseValidator = ({ element: { pack, title, chapterTitle, reference, verse } , toHideReference, t}) => { // useful use of destructuring here const [inputReference, setReference] = useState('') const [referenceBool, setReferenceBool] = useState(false) @@ -25,16 +21,15 @@ const VerseValidator = ({ element: { pack, title, chapterTitle, reference, verse // function to check correctness of verse input // so far only perform checking on full spelling of reference names const referenceChange = (e) => { - const value = e.target.value; - const string1 = String(value) .replace(/\s+/g, "") - .toLowerCase(); + .toLowerCase() + .normalize("NFC"); const string2 = String(reference) .replace(/\s+/g, "") - .toLowerCase(); - + .toLowerCase() + .normalize("NFC"); const bool = (string1 === string2); setReference(value); @@ -47,13 +42,15 @@ const VerseValidator = ({ element: { pack, title, chapterTitle, reference, verse let string1 = value; let string2 = verse; string1 = String(string1) - .replace(/[^\w\s]/g, "") + .replace(/[\p{P}\p{S}]/gu, "") .replace(/\s+/g, "") - .toLowerCase(); + .toLowerCase() + .normalize("NFC"); string2 = String(string2) - .replace(/[^\w\s]/g, "") + .replace(/[\p{P}\p{S}]/gu, "") .replace(/\s+/g, "") - .toLowerCase(); + .toLowerCase() + .normalize("NFC"); const bool = string1 === string2; @@ -67,13 +64,16 @@ const VerseValidator = ({ element: { pack, title, chapterTitle, reference, verse let string1 = value; let string2 = title; string1 = String(string1) - .replace(/[^\w\s]/g, "") - .replace(/\s+/g, "") - .toLowerCase(); + .replace(/[\p{P}\p{S}]/gu, "") // Removes punctuation and symbols + .replace(/\s+/g, "") // Removes all whitespace + .toLowerCase() + .normalize("NFC"); // Normalizes to NFC form + string2 = String(string2) - .replace(/[^\w\s]/g, "") + .replace(/[\p{P}\p{S}]/gu, "") .replace(/\s+/g, "") - .toLowerCase(); + .toLowerCase() + .normalize("NFC"); const bool = string1 === string2; @@ -84,17 +84,22 @@ const VerseValidator = ({ element: { pack, title, chapterTitle, reference, verse {/* function to check correctness of chapter title input */} const chapterTitleChange = (e) => { + + const value = e.target.value; let string1 = value; let string2 = chapterTitle; string1 = String(string1) - .replace(/[^\w\s]/g, "") + .replace(/[\p{P}\p{S}]/gu, "") .replace(/\s+/g, "") - .toLowerCase(); + .toLowerCase() + .normalize("NFC"); + string2 = String(string2) - .replace(/[^\w\s]/g, "") + .replace(/[\p{P}\p{S}]/gu, "") .replace(/\s+/g, "") - .toLowerCase(); + .toLowerCase() + .normalize("NFC"); const bool = string1 === string2; @@ -104,12 +109,27 @@ const VerseValidator = ({ element: { pack, title, chapterTitle, reference, verse const DiffViewer = ({oldValue, newValue}) => { const string1 = String(oldValue) - .replace(/[^\w\s]/g, "") - .toLowerCase(); + .replace(/[\p{P}\p{S}]/gu, "") + .toLowerCase() + .normalize("NFC"); + const string2 = String(newValue) - .replace(/[^\w\s]/g, "") - .toLowerCase(); + .replace(/[\p{P}\p{S}]/gu, "") + .toLowerCase() + .normalize("NFC"); + + return () + } + + const DiffViewerStrict = ({oldValue, newValue}) => { + const string1 = String(oldValue) + .toLowerCase() + .normalize("NFC"); + + const string2 = String(newValue) + .toLowerCase() + .normalize("NFC"); return () } @@ -179,29 +199,25 @@ const VerseValidator = ({ element: { pack, title, chapterTitle, reference, verse {/* button to toggle show answer*/}
- - + {/* */} +
- {/* This shows the answers*/} - {hintBool && ( -
-

Answers

-

Reference:
{reference}

- {chapterTitle && ( - <> -

ChapterTitle
{chapterTitle}

- - )} -

Title:
{title}

-

Verse:
{verse}

-
- )} - {/* This shows the difference between given and input answers*/} {diffBool && (

Differences

+ +

+
+ Reference: + +
+ +

{chapterTitle && (
ChapterTitle: @@ -211,15 +227,25 @@ const VerseValidator = ({ element: { pack, title, chapterTitle, reference, verse />
)} +

- Title: + Title: +
+

- Verse: + Verse: + +
-
)} ); diff --git a/src/assets/verse.json b/src/assets/verse.json index 18dcf41..9bb3696 100644 --- a/src/assets/verse.json +++ b/src/assets/verse.json @@ -1511,11 +1511,11 @@ { "loa": [ { - "pack": "Lessons on Assurance (KR)", - "title": "Assurance of Salvation", + "pack": "5확신", + "title": "구원의 확신", "chapterTitle": "", - "reference": "1 John 5:11-12", - "verse": "And this is the testimony: God has given us eternal life, and this life is in his Son. He who has the Son has life; he who does not have the Son of God does not have life." + "reference": "요한일서 5:11-12", + "verse": "또 증거는 이것이니 하나님이 우리에게 영생을 주신 것과 이 생명이 그의 아들 안에 있는 그것이니라 아들이 있는 자에게는 생명이 있고 하나님의 아들이 없는 자에게는 생명이 없느니라" }, { "pack": "Lessons on Assurance", @@ -1545,1474 +1545,6 @@ "reference": "Proverbs 3:5-6", "verse": "Trust in the LORD with all your heart and lean not on your own understanding;in all your ways acknowledge him, and he will make your paths straight." } - ], - "tms-60-pack-a": [ - { - "pack": "TMS 60 Pack A", - "title": "Christ the Center", - "chapterTitle": "", - "reference": "2 Corinthians 5:17", - "verse": "Therefore, if anyone is in Christ, he is a new creation; the old has gone, the new has come!" - }, - { - "pack": "TMS 60 Pack A", - "title": "Christ the Center", - "chapterTitle": "", - "reference": "Galatians 2:20", - "verse": "I have been crucified with Christ and I no longer live, but Christ lives in me. The life I live in the body, I live by faith in the Son of God, who loved me and gave himself for me." - }, - { - "pack": "TMS 60 Pack A", - "title": "Obedience to Christ", - "chapterTitle": "", - "reference": "Romans 12:1", - "verse": "Therefore, I urge you, brothers, in view of God's mercy, to offer your bodies as living sacrifices, holy and pleasing to God--this is your spiritual act of worship." - }, - { - "pack": "TMS 60 Pack A", - "title": "Obedience to Christ", - "chapterTitle": "", - "reference": "John 14:21", - "verse": "Whoever has my commands and obeys them, he is the one who loves me. He who loves me will be loved by my Father, and I too will love him and show myself to him" - }, - { - "pack": "TMS 60 Pack A", - "title": "The Word", - "chapterTitle": "", - "reference": "2 Timothy 3:16", - "verse": "All Scripture is God-breathed and is useful for teaching, rebuking, correcting and training in righteousness" - }, - { - "pack": "TMS 60 Pack A", - "title": "The Word", - "chapterTitle": "", - "reference": "Joshua 1:8", - "verse": "Do not let this Book of the Law depart from your mouth; meditate on it day and night, so that you may be careful to do everything written in it. Then you will be prosperous and successful." - }, - { - "pack": "TMS 60 Pack A", - "title": "Prayer", - "chapterTitle": "", - "reference": "John 15:7", - "verse": "If you remain in me and my words remain in you, ask whatever you wish, and it will be given you." - }, - { - "pack": "TMS 60 Pack A", - "title": "Prayer", - "chapterTitle": "", - "reference": "Philippians 4:6-7", - "verse": "Do not be anxious about anything, but in everything, by prayer and petition, with thanksgiving, present your requests to God. And the peace of God, which transcends all understanding, will guard your hearts and your minds in Christ Jesus." - }, - { - "pack": "TMS 60 Pack A", - "title": "Fellowship", - "chapterTitle": "", - "reference": "Matthew 18:20", - "verse": "For where two or three come together in my name, there am I with them." - }, - { - "pack": "TMS 60 Pack A", - "title": "Fellowship", - "chapterTitle": "", - "reference": "Hebrews 10:24-25", - "verse": "And let us consider how we may spur one another on toward love and good deeds. Let us not give up meeting together, as some are in the habit of doing, but let us encourage one another--and all the more as you see the Day approaching." - }, - { - "pack": "TMS 60 Pack A", - "title": "Witnessing", - "chapterTitle": "", - "reference": "Matthew 4:19", - "verse": "Come, follow me, Jesus said, and I will make you fishers of men." - }, - { - "pack": "TMS 60 Pack A", - "title": "Witnessing", - "chapterTitle": "", - "reference": "Romans 1:16", - "verse": "I am not ashamed of the gospel, because it is the power of God for the salvation of everyone who believes: first for the Jew, then for the Gentile." - } - ], - "tms-60-pack-b": [ - { - "pack": "TMS 60 Pack B", - "title": "All Have Sinned", - "chapterTitle": "", - "reference": "Romans 3:23", - "verse": "for all have sinned and fall short of the glory of God" - }, - { - "pack": "TMS 60 Pack B", - "title": "All Have Sinned", - "chapterTitle": "", - "reference": "Isaiah 53:6", - "verse": "We all, like sheep, have gone astray, each of us has turned to his own way; and the LORD has laid on him the iniquity of us all." - }, - { - "pack": "TMS 60 Pack B", - "title": "Sin's Penalty", - "chapterTitle": "", - "reference": "Romans 6:23", - "verse": "For the wages of sin is death, but the gift of God is eternal life in Christ Jesus our Lord." - }, - { - "pack": "TMS 60 Pack B", - "title": "Sin's Penalty", - "chapterTitle": "", - "reference": "Hebrews 9:27", - "verse": "Just as man is destined to die once, and after that to face judgment," - }, - { - "pack": "TMS 60 Pack B", - "title": "Christ Paid the Penalty", - "chapterTitle": "", - "reference": "Romans 5:8", - "verse": "But God demonstrates his own love for us in this: While we were still sinners, Christ died for us." - }, - { - "pack": "TMS 60 Pack B", - "title": "Christ Paid the Penalty", - "chapterTitle": "", - "reference": "1 Peter 3:18", - "verse": "For Christ died for sins once for all, the righteous for the unrighteous, to bring you to God. He was put to death in the body but made alive by the Spirit," - }, - { - "pack": "TMS 60 Pack B", - "title": "Salvation Not by Works", - "chapterTitle": "", - "reference": "Ephesians 2:8-9", - "verse": "For it is by grace you have been saved, through faith--and this not from yourselves, it is the gift of God-- not by works, so that no one can boast." - }, - { - "pack": "TMS 60 Pack B", - "title": "Salvation Not by Works", - "chapterTitle": "", - "reference": "Titus 3:5", - "verse": "he saved us, not because of righteous things we had done, but because of his mercy. He saved us through the washing of rebirth and renewal by the Holy Spirit," - }, - { - "pack": "TMS 60 Pack B", - "title": "Must Receive Christ", - "chapterTitle": "", - "reference": "John 1:12", - "verse": "Yet to all who received him, to those who believed in his name, he gave the right to become children of God--" - }, - { - "pack": "TMS 60 Pack B", - "title": "Must Receive Christ", - "chapterTitle": "", - "reference": "Revelation 3:20", - "verse": "Here I am! I stand at the door and knock. If anyone hears my voice and opens the door, I will come in and eat with him, and he with me." - }, - { - "pack": "TMS 60 Pack B", - "title": "Assurance of Salvation", - "chapterTitle": "", - "reference": "1 John 5:13", - "verse": "I write these things to you who believe in the name of the Son of God so that you may know that you have eternal life." - }, - { - "pack": "TMS 60 Pack B", - "title": "Assurance of Salvation", - "chapterTitle": "", - "reference": "John 5:24", - "verse": "I tell you the truth, whoever hears my word and believes him who sent me has eternal life and will not be condemned; he has crossed over from death to life." - } - ], - "tms-60-pack-c": [ - { - "pack": "TMS 60 Pack C", - "title": "His Spirit", - "chapterTitle": "", - "reference": "1 Corinthians 3:16", - "verse": "Don't you know that you yourselves are God's temple and that God's Spirit lives in you?" - }, - { - "pack": "TMS 60 Pack C", - "title": "His Spirit", - "chapterTitle": "", - "reference": "1 Corinthians 2:12", - "verse": "We have not received the spirit of the world but the Spirit who is from God, that we may understand what God has freely given us." - }, - { - "pack": "TMS 60 Pack C", - "title": "His Strength", - "chapterTitle": "", - "reference": "Isaiah 41:10", - "verse": "So do not fear, for I am with you; do not be dismayed, for I am your God. I will strengthen you and help you; I will uphold you with my righteous right hand." - }, - { - "pack": "TMS 60 Pack C", - "title": "His Strength", - "chapterTitle": "", - "reference": "Philippians 4:13", - "verse": "I can do everything through him who gives me strength." - }, - { - "pack": "TMS 60 Pack C", - "title": "His Faithfulness", - "chapterTitle": "", - "reference": "Lamentations 3:22-23", - "verse": "Because of the LORD's great love we are not consumed, for his compassions never fail. They are new every morning; great is your faithfulness." - }, - { - "pack": "TMS 60 Pack C", - "title": "His Faithfulness", - "chapterTitle": "", - "reference": "Numbers 23:19", - "verse": "God is not a man, that he should lie, nor a son of man, that he should change his mind. Does he speak and then not act? Does he promise and not fulfill?" - }, - { - "pack": "TMS 60 Pack C", - "title": "His Peace", - "chapterTitle": "", - "reference": "Isaiah 26:3", - "verse": "You will keep in perfect peace him whose mind is steadfast, because he trusts in you." - }, - { - "pack": "TMS 60 Pack C", - "title": "His Peace", - "chapterTitle": "", - "reference": "1 Peter 5:7", - "verse": "Cast all your anxiety on him because he cares for you." - }, - { - "pack": "TMS 60 Pack C", - "title": "His Provision", - "chapterTitle": "", - "reference": "Romans 8:32", - "verse": "He who did not spare his own Son, but gave him up for us all--how will he not also, along with him, graciously give us all things?" - }, - { - "pack": "TMS 60 Pack C", - "title": "His Provision", - "chapterTitle": "", - "reference": "Philippians 4:19", - "verse": "And my God will meet all your needs according to his glorious riches in Christ Jesus." - }, - { - "pack": "TMS 60 Pack C", - "title": "His Help in Temptation", - "chapterTitle": "", - "reference": "Hebrews 2:18", - "verse": "Because he himself suffered when he was tempted, he is able to help those who are being tempted." - }, - { - "pack": "TMS 60 Pack C", - "title": "His Help in Temptation", - "chapterTitle": "", - "reference": "Psalms 119:9,11", - "verse": "How can a young man keep his way pure? By living according to your word. I have hidden your word in my heart that I might not sin against you." - } - ], - "tms-60-pack-d": [ - { - "pack": "TMS 60 Pack D", - "title": "Put Christ First", - "chapterTitle": "", - "reference": "Matthew 6:33", - "verse": "But seek first his kingdom and his righteousness, and all these things will be given to you as well." - }, - { - "pack": "TMS 60 Pack D", - "title": "Put Christ First", - "chapterTitle": "", - "reference": "Luke 9:23", - "verse": "Then he said to them all: If anyone would come after me, he must deny himself and take up his cross daily and follow me." - }, - { - "pack": "TMS 60 Pack D", - "title": "Separate from the World", - "chapterTitle": "", - "reference": "1 John 2:15,16", - "verse": "Do not love the world or anything in the world. If anyone loves the world, the love of the Father is not in him. For everything in the world--the cravings of sinful man, the lust of his eyes and the boasting of what he has and does--comes not from the Father but from the world." - }, - { - "pack": "TMS 60 Pack D", - "title": "Separate from the World", - "chapterTitle": "", - "reference": "Romans 12:2", - "verse": "Do not conform any longer to the pattern of this world, but be transformed by the renewing of your mind. Then you will be able to test and approve what God's will is--his good, pleasing and perfect will." - }, - { - "pack": "TMS 60 Pack D", - "title": "Be Steadfast", - "chapterTitle": "", - "reference": "1 Corinthians 15:58", - "verse": "Therefore, my dear brothers, stand firm. Let nothing move you. Always give yourselves fully to the work of the Lord, because you know that your labor in the Lord is not in vain." - }, - { - "pack": "TMS 60 Pack D", - "title": "Be Steadfast", - "chapterTitle": "", - "reference": "Hebrews 12:3", - "verse": "Consider him who endured such opposition from sinful men, so that you will not grow weary and lose heart." - }, - { - "pack": "TMS 60 Pack D", - "title": "Serve Others", - "chapterTitle": "", - "reference": "Mark 10:45", - "verse": "For even the Son of Man did not come to be served, but to serve, and to give his life as a ransom for many." - }, - { - "pack": "TMS 60 Pack D", - "title": "Serve Others", - "chapterTitle": "", - "reference": "2 Corinthians 4:5", - "verse": "For we do not preach ourselves, but Jesus Christ as Lord, and ourselves as your servants for Jesus' sake." - }, - { - "pack": "TMS 60 Pack D", - "title": "Give Generously", - "chapterTitle": "", - "reference": "Proverbs 3:9,10", - "verse": "Honor the LORD with your wealth, with the firstfruits of all your crops; then your barns will be filled to overflowing, and your vats will brim over with new wine." - }, - { - "pack": "TMS 60 Pack D", - "title": "Give Generously", - "chapterTitle": "", - "reference": "2 Corinthians 9:6,7", - "verse": "Remember this: Whoever sows sparingly will also reap sparingly, and whoever sows generously will also reap generously. Each man should give what he has decided in his heart to give, not reluctantly or under compulsion, for God loves a cheerful giver." - }, - { - "pack": "TMS 60 Pack D", - "title": "Develop World Vision", - "chapterTitle": "", - "reference": "Acts 1:8", - "verse": "But you will receive power when the Holy Spirit comes on you; and you will be my witnesses in Jerusalem, and in all Judea and Samaria, and to the ends of the earth." - }, - { - "pack": "TMS 60 Pack D", - "title": "Develop World Vision", - "chapterTitle": "", - "reference": "Matthew 28:19-20", - "verse": "Therefore go and make disciples of all nations, baptizing them in the name of the Father and of the Son and of the Holy Spirit, and teaching them to obey everything I have commanded you. And surely I am with you always, to the very end of the age." - } - ], - "tms-60-pack-e": [ - { - "pack": "TMS 60 Pack E", - "title": "Love", - "chapterTitle": "", - "reference": "John 13:34-35", - "verse": "A new command I give you: Love one another. As I have loved you, so you must love one another. By this all men will know that you are my disciples, if you love one another." - }, - { - "pack": "TMS 60 Pack E", - "title": "Love", - "chapterTitle": "", - "reference": "1 John 3:18", - "verse": "Dear children, let us not love with words or tongue but with actions and in truth." - }, - { - "pack": "TMS 60 Pack E", - "title": "Humility", - "chapterTitle": "", - "reference": "Philippians 2:3-4", - "verse": "Do nothing out of selfish ambition or vain conceit, but in humility consider others better than yourselves. Each of you should look not only to your own interests, but also to the interests of others." - }, - { - "pack": "TMS 60 Pack E", - "title": "Humility", - "chapterTitle": "", - "reference": "1 Peter 5:5-6", - "verse": "Young men, in the same way be submissive to those who are older. All of you, clothe yourselves with humility toward one another, because, God opposes the proud but gives grace to the humble. Humble yourselves, therefore, under God's mighty hand, that he may lift you up in due time." - }, - { - "pack": "TMS 60 Pack E", - "title": "Purity", - "chapterTitle": "", - "reference": "Ephesians 5:3", - "verse": "But among you there must not be even a hint of sexual immorality, or of any kind of impurity, or of greed, because these are improper for God's holy people." - }, - { - "pack": "TMS 60 Pack E", - "title": "Purity", - "chapterTitle": "", - "reference": "1 Peter 2:11", - "verse": "Dear friends, I urge you, as aliens and strangers in the world, to abstain from sinful desires, which war against your soul." - }, - { - "pack": "TMS 60 Pack E", - "title": "Honesty", - "chapterTitle": "", - "reference": "Leviticus 19:11", - "verse": "Do not steal. Do not lie. Do not deceive one another." - }, - { - "pack": "TMS 60 Pack E", - "title": "Honesty", - "chapterTitle": "", - "reference": "Acts 24:16", - "verse": "So I strive always to keep my conscience clear before God and man." - }, - { - "pack": "TMS 60 Pack E", - "title": "Faith", - "chapterTitle": "", - "reference": "Hebrews 11:6", - "verse": "And without faith it is impossible to please God, because anyone who comes to him must believe that he exists and that he rewards those who earnestly seek him." - }, - { - "pack": "TMS 60 Pack E", - "title": "Faith", - "chapterTitle": "", - "reference": "Romans 4:20,21", - "verse": "Yet he did not waver through unbelief regarding the promise of God, but was strengthened in his faith and gave glory to God, being fully persuaded that God had power to do what he had promised." - }, - { - "pack": "TMS 60 Pack E", - "title": "Good Works", - "chapterTitle": "", - "reference": "Galatians 6:9,10", - "verse": "Let us not become weary in doing good, for at the proper time we will reap a harvest if we do not give up. Therefore, as we have opportunity, let us do good to all people, especially to those who belong to the family of believers." - }, - { - "pack": "TMS 60 Pack E", - "title": "Good Works", - "chapterTitle": "", - "reference": "Matthew 5:16", - "verse": "In the same way, let your light shine before men, that they may see your good deeds and praise your Father in heaven." - } - ], - "dep-1": [ - { - "pack": "DEP 1", - "title": "Can be assured", - "chapterTitle": "", - "reference": "2 Corinthians 13:5", - "verse": "Examine yourselves to see whether you are in the faith; test yourselves. Do you not realize that Christ Jesus is in you--unless, of course, you fail the test?" - }, - { - "pack": "DEP 1", - "title": "Can be assured", - "chapterTitle": "", - "reference": "1 John 5:11-12", - "verse": "And this is the testimony: God has given us eternal life, and this life is in his Son. He who has the Son has life; he who does not have the Son of God does not have life." - }, - { - "pack": "DEP 1", - "title": "Assured of having eternal life", - "chapterTitle": "", - "reference": "1 John 5:13", - "verse": "I write these things to you who believe in the name of the Son of God so that you may know that you have eternal life." - }, - { - "pack": "DEP 1", - "title": "Assured of having eternal life", - "chapterTitle": "", - "reference": "John 6:47", - "verse": "I tell you the truth, he who believes has everlasting life." - }, - { - "pack": "DEP 1", - "title": "Forgiveness of sin", - "chapterTitle": "", - "reference": "Ephesians 1:7", - "verse": "In him we have redemption through his blood, the forgiveness of sins, in accordance with the riches of God's grace" - }, - { - "pack": "DEP 1", - "title": "Forgiveness of sin", - "chapterTitle": "", - "reference": "Romans 8:1", - "verse": "Therefore, there is now no condemnation for those who are in Christ Jesus" - }, - { - "pack": "DEP 1", - "title": "Justified", - "chapterTitle": "", - "reference": "Romans 3:24", - "verse": "and are justified freely by his grace through the redemption that came by Christ Jesus." - }, - { - "pack": "DEP 1", - "title": "Justified", - "chapterTitle": "", - "reference": "Romans 5:1", - "verse": "Therefore, since we have been justified through faith, we have peace with God through our Lord Jesus Christ" - }, - { - "pack": "DEP 1", - "title": "Born again in Christ", - "chapterTitle": "", - "reference": "1 Peter 1:3", - "verse": "Praise be to the God and Father of our Lord Jesus Christ! In his great mercy he has given us new birth into a living hope through the resurrection of Jesus Christ from the dead" - }, - { - "pack": "DEP 1", - "title": "Born again in Christ", - "chapterTitle": "", - "reference": "Titus 3:5", - "verse": "he saved us, not because of righteous things we had done, but because of his mercy. He saved us through the washing of rebirth and renewal by the Holy Spirit" - }, - { - "pack": "DEP 1", - "title": "Being children of God", - "chapterTitle": "", - "reference": "Galatians 3:26", - "verse": "You are all sons of God through faith in Christ Jesus" - }, - { - "pack": "DEP 1", - "title": "Being children of God", - "chapterTitle": "", - "reference": "Romans 8:14", - "verse": "because those who are led by the Spirit of God are sons of God." - }, - { - "pack": "DEP 1", - "title": "Holy Spirit living in believers", - "chapterTitle": "", - "reference": "Romans 8:9", - "verse": "You, however, are controlled not by the sinful nature but by the Spirit, if the Spirit of God lives in you. And if anyone does not have the Spirit of Christ, he does not belong to Christ." - }, - { - "pack": "DEP 1", - "title": "Holy Spirit living in believers", - "chapterTitle": "", - "reference": "John 14:16-17", - "verse": "And I will ask the Father, and he will give you another Counselor to be with you forever -- the Spirit of truth. The world cannot accept him, because it neither sees him nor knows him. But you know him, for he lives with you and will be in you." - }, - { - "pack": "DEP 1", - "title": "Salvation never to be lost", - "chapterTitle": "", - "reference": "John 10:28-29", - "verse": "I give them eternal life, and they shall never perish; no one can snatch them out of my hand. My Father, who has given them to me, is greater than all; no one can snatch them out of my Father's hand." - }, - { - "pack": "DEP 1", - "title": "Salvation never to be lost", - "chapterTitle": "", - "reference": "Romans 8:39", - "verse": "neither height nor depth, nor anything else in all creation, will be able to separate us from the love of God that is in Christ Jesus our Lord." - }, - { - "pack": "DEP 1", - "title": "Assurance based on the Word", - "chapterTitle": "", - "reference": "1 Peter 1:23", - "verse": "For you have been born again, not of perishable seed, but of imperishable, through the living and enduring word of God." - }, - { - "pack": "DEP 1", - "title": "Assurance based on the Word", - "chapterTitle": "", - "reference": "Ephesians 1:13", - "verse": "And you also were included in Christ when you heard the word of truth, the gospel of your salvation. Having believed, you were marked in him with a seal, the promised Holy Spirit" - } - ], - "dep-2-part-a": [ - { - "pack": "DEP 2", - "title": "God wants to fellowship with us", - "chapterTitle": "Why do we have Quiet Time", - "reference": "1 Corinthians 1:9", - "verse": "God, who has called you into fellowship with his Son Jesus Christ our Lord, is faithful." - }, - { - "pack": "DEP 2", - "title": "God wants to fellowship with us", - "chapterTitle": "Why do we have Quiet Time", - "reference": "Isaiah 30:18", - "verse": "Yet the LORD longs to be gracious to you; he rises to show you compassion. For the LORD is a God of justice. Blessed are all who wait for him!" - }, - { - "pack": "DEP 2", - "title": "God's Command", - "chapterTitle": "Why do we have Quiet Time", - "reference": "Isaiah 55:6", - "verse": "Seek the LORD while he may be found; call on him while he is near." - }, - { - "pack": "DEP 2", - "title": "God's Command", - "chapterTitle": "Why do we have Quiet Time", - "reference": "Psalms 27:8 (KJV)", - "verse": "When thou saidst, Seek ye my face; my heart said unto thee, Thy face, LORD, will I seek." - }, - { - "pack": "DEP 2", - "title": "Promise of Blessings", - "chapterTitle": "Why do we have Quiet Time", - "reference": "John 15:5", - "verse": "I am the vine; you are the branches. If a man remains in me and I in him, he will bear much fruit; apart from me you can do nothing." - }, - { - "pack": "DEP 2", - "title": "Promise of Blessings", - "chapterTitle": "Why do we have Quiet Time", - "reference": "Psalms 34:10", - "verse": "The lions may grow weak and hungry, but those who seek the LORD lack no good thing." - }, - { - "pack": "DEP 2", - "title": "To discern and obey God's will", - "chapterTitle": "Why do we have Quiet Time", - "reference": "Habakkuk 2:1", - "verse": "I will stand at my watch and station myself on the ramparts; I will look to see what he will say to me, and what answer I am to give to this complaint." - }, - { - "pack": "DEP 2", - "title": "To discern and obey God's will", - "chapterTitle": "Why do we have Quiet Time", - "reference": "Psalms 143:8,10", - "verse": "Let the morning bring me word of your unfailing love, for I have put my trust in you. Show me the way I should go, for to you I lift up my soul. Teach me to do your will, for you are my God; may your good Spirit lead me on level ground." - } - ], - "dep-2-part-b": [ - { - "pack": "DEP 2", - "title": "Looking on the Lord", - "chapterTitle": "What is Quiet Time", - "reference": "Hebrews 12:2", - "verse": "Let us fix our eyes on Jesus, the author and perfecter of our faith, who for the joy set before him endured the cross, scorning its shame, and sat down at the right hand of the throne of God." - }, - { - "pack": "DEP 2", - "title": "Looking on the Lord", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 42:11", - "verse": "Why are you downcast, O my soul? Why so disturbed within me? Put your hope in God, for I will yet praise him, my Savior and my God." - }, - { - "pack": "DEP 2", - "title": "Coming to the Lord with thirst", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 42:1", - "verse": "As the deer pants for streams of water, so my soul pants for you, O God." - }, - { - "pack": "DEP 2", - "title": "Coming to the Lord with thirst", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 130:5,6", - "verse": "I wait for the LORD, my soul waits, and in his word I put my hope. My soul waits for the Lord more than watchmen wait for the morning, more than watchmen wait for the morning." - }, - { - "pack": "DEP 2", - "title": "Casting our burdens on the Lord", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 55:22", - "verse": "Cast your cares on the LORD and he will sustain you; he will never let the righteous fall." - }, - { - "pack": "DEP 2", - "title": "Casting our burdens on the Lord", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 68:19", - "verse": "Praise be to the Lord, to God our Savior, who daily bears our burdens. Selah" - }, - { - "pack": "DEP 2", - "title": "Taking refuge and rest in the Lord", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 91:9-10", - "verse": "If you make the Most High your dwelling- even the LORD, who is my refuge- then no harm will befall you, no disaster will come near your tent." - }, - { - "pack": "DEP 2", - "title": "Taking refuge and rest in the Lord", - "chapterTitle": "What is Quiet Time", - "reference": "Matthew 11:28-29", - "verse": "Come to me, all you who are weary and burdened, and I will give you rest. Take my yoke upon you and learn from me, for I am gentle and humble in heart, and you will find rest for your souls." - }, - { - "pack": "DEP 2", - "title": "Meeting the Lord in the Word and Prayer", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 119:147-148", - "verse": "I rise before dawn and cry for help; I have put my hope in your word. My eyes stay open through the watches of the night, that I may meditate on your promises." - }, - { - "pack": "DEP 2", - "title": "Meeting the Lord in the Word and Prayer", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 5:3", - "verse": "In the morning, O LORD, you hear my voice; in the morning I lay my requests before you and wait in expectation." - }, - { - "pack": "DEP 2", - "title": "Worshipping the Lord", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 95:6", - "verse": "Come, let us bow down in worship, let us kneel before the LORD our Maker;" - }, - { - "pack": "DEP 2", - "title": "Worshipping the Lord", - "chapterTitle": "What is Quiet Time", - "reference": "Hebrews 13:5", - "verse": "Through Jesus, therefore, let us continually offer to God a sacrifice of praise -- the fruit of lips that confess his name." - }, - { - "pack": "DEP 2", - "title": "Getting daily satisfaction", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 90:14", - "verse": "Satisfy us in the morning with your unfailing love, that we may sing for joy and be glad all our days." - }, - { - "pack": "DEP 2", - "title": "Getting daily satisfaction", - "chapterTitle": "What is Quiet Time", - "reference": "Psalms 107:9", - "verse": "for he satisfies the thirsty and fills the hungry with good things." - } - ], - "dep-2-part-c": [ - { - "pack": "DEP 2", - "title": "Jesus - praying very early in the morning", - "chapterTitle": "Examples of Quiet Time", - "reference": "Mark 1:35", - "verse": "Very early in the morning, while it was still dark, Jesus got up, left the house and went off to a solitary place, where he prayed." - }, - { - "pack": "DEP 2", - "title": "Moses - personal fellowship with the Lord", - "chapterTitle": "Examples of Quiet Time", - "reference": "Exodus 33:11", - "verse": "The LORD would speak to Moses face to face, as a man speaks with his friend. Then Moses would return to the camp, but his young aide Joshua son of Nun did not leave the tent." - }, - { - "pack": "DEP 2", - "title": "Daniel - giving top priority to the fellowship", - "chapterTitle": "Examples of Quiet Time", - "reference": "Daniel 6:10", - "verse": "Now when Daniel learned that the decree had been published, he went home to his upstairs room where the windows opened toward Jerusalem. Three times a day he got down on his knees and prayed, giving thanks to his God, just as he had done before." - }, - { - "pack": "DEP 2", - "title": "Disciples - understanding the Word when alone with Jesus", - "chapterTitle": "Examples of Quiet Time", - "reference": "Mark 4:34", - "verse": "He did not say anything to them without using a parable. But when he was alone with his own disciples, he explained everything." - } - ], - "dep-3-part-a": [ - { - "pack": "DEP 3", - "title": "Inspired by God", - "chapterTitle": "Authority of the Word", - "reference": "2 Timothy 3:16", - "verse": "All Scripture is God-breathed and is useful for teaching, rebuking, correcting and training in righteousness," - }, - { - "pack": "DEP 3", - "title": "Inspired by God", - "chapterTitle": "Authority of the Word", - "reference": "2 Peter 1:21", - "verse": "For prophecy never had its origin in the will of man, but men spoke from God as they were carried along by the Holy Spirit." - }, - { - "pack": "DEP 3", - "title": "Standing forever and never changing", - "chapterTitle": "Authority of the Word", - "reference": "Matthew 24:35", - "verse": "Heaven and earth will pass away, but my words will never pass away." - }, - { - "pack": "DEP 3", - "title": "Standing forever and never changing", - "chapterTitle": "Authority of the Word", - "reference": "1 Peter 1:24-25", - "verse": "For, All men are like grass, and all their glory is like the flowers of the field; the grass withers and the flowers fall, but the word of the Lord stands forever. And this is the word that was preached to you." - }, - { - "pack": "DEP 3", - "title": "Being the truth", - "chapterTitle": "Authority of the Word", - "reference": "John 17:17", - "verse": "Sanctify them by the truth; your word is truth." - }, - { - "pack": "DEP 3", - "title": "Being the truth", - "chapterTitle": "Authority of the Word", - "reference": "2 Samuel 7:28", - "verse": "O Sovereign LORD, you are God! Your words are trustworthy, and you have promised these good things to your servant." - }, - { - "pack": "DEP 3", - "title": "Having Power", - "chapterTitle": "Authority of the Word", - "reference": "Jeremiah 23:29", - "verse": "Is not my word like fire, declares the LORD, and like a hammer that breaks a rock in pieces?" - }, - { - "pack": "DEP 3", - "title": "Having Power", - "chapterTitle": "Authority of the Word", - "reference": "2 Timothy 2:9", - "verse": "for which I am suffering even to the point of being chained like a criminal. But God's word is not chained." - }, - { - "pack": "DEP 3", - "title": "Jesus also confirmed the Word", - "chapterTitle": "Authority of the Word", - "reference": "Matthew 4:4", - "verse": "Jesus answered, It is written: 'Man does not live on bread alone, but on every word that comes from the mouth of God.'" - }, - { - "pack": "DEP 3", - "title": "Jesus also confirmed the Word", - "chapterTitle": "Authority of the Word", - "reference": "Luke 24:27", - "verse": "And beginning with Moses and all the Prophets, he explained to them what was said in all the Scriptures concerning himself." - } - ], - "dep-3-part-b": [ - { - "pack": "DEP 3", - "title": "Making us born again", - "chapterTitle": "Value of the Word", - "reference": "1 Peter 1:23", - "verse": "For you have been born again, not of perishable seed, but of imperishable, through the living and enduring word of God." - }, - { - "pack": "DEP 3", - "title": "Making us born again", - "chapterTitle": "Value of the Word", - "reference": "James 1:18", - "verse": "He chose to give us birth through the word of truth, that we might be a kind of firstfruits of all he created." - }, - { - "pack": "DEP 3", - "title": "Helping us grow up", - "chapterTitle": "Value of the Word", - "reference": "1 Peter 2:2", - "verse": "Like newborn babies, crave pure spiritual milk, so that by it you may grow up in your salvation" - }, - { - "pack": "DEP 3", - "title": "Helping us grow up", - "chapterTitle": "Value of the Word", - "reference": "Acts 20:32", - "verse": "Now I commit you to God and to the word of his grace, which can build you up and give you an inheritance among all those who are sanctified." - }, - { - "pack": "DEP 3", - "title": "Giving guidance", - "chapterTitle": "Value of the Word", - "reference": "Psalms 119:105", - "verse": "Your word is a lamp to my feet and a light for my path." - }, - { - "pack": "DEP 3", - "title": "Giving guidance", - "chapterTitle": "Value of the Word", - "reference": "Proverbs 6:22-23", - "verse": "When you walk, they will guide you; when you sleep, they will watch over you; when you awake, they will speak to you. For these commands are a lamp, this teaching is a light, and the corrections of discipline are the way to life" - }, - { - "pack": "DEP 3", - "title": "Solving Problems", - "chapterTitle": "Value of the Word", - "reference": "Psalms 107:20", - "verse": "He sent forth his word and healed them; he rescued them from the grave." - }, - { - "pack": "DEP 3", - "title": "Solving Problems", - "chapterTitle": "Value of the Word", - "reference": "Matthew 8:8", - "verse": "The centurion replied, Lord, I do not deserve to have you come under my roof. But just say the word, and my servant will be healed." - }, - { - "pack": "DEP 3", - "title": "Being our joy and delight", - "chapterTitle": "Value of the Word", - "reference": "Jeremiah 15:16", - "verse": "When your words came, I ate them; they were my joy and my heart's delight, for I bear your name, O LORD God Almighty." - }, - { - "pack": "DEP 3", - "title": "Being our joy and delight", - "chapterTitle": "Value of the Word", - "reference": "Psalms 119:111", - "verse": "Your statutes are my heritage forever; they are the joy of my heart." - }, - { - "pack": "DEP 3", - "title": "Being spiritual weapons", - "chapterTitle": "Value of the Word", - "reference": "Ephesians 6:17", - "verse": "Take the helmet of salvation and the sword of the Spirit, which is the word of God." - }, - { - "pack": "DEP 3", - "title": "Being spiritual weapons", - "chapterTitle": "Value of the Word", - "reference": "Hebrews 4:12", - "verse": "For the word of God is living and active. Sharper than any double--edged sword, it penetrates even to dividing soul and spirit, joints and marrow; it judges the thoughts and attitudes of the heart." - } - ], - "dep-3-part-c": [ - { - "pack": "DEP 3", - "title": "Search the Word every day", - "chapterTitle": "Attitude to the Word", - "reference": "Acts 17:11 (1st)", - "verse": "Now the Bereans were of more noble character than the Thessalonians, for they received the message with great eagerness and examined the Scriptures every day to see if what Paul said was true." - }, - { - "pack": "DEP 3", - "title": "Meditate on the Word all day long", - "chapterTitle": "Attitude to the Word", - "reference": "Psalms 119:97", - "verse": "Oh, how I love your law! I meditate on it all day long." - }, - { - "pack": "DEP 3", - "title": "Obey the Word before teaching", - "chapterTitle": "Attitude to the Word", - "reference": "Ezra 7:10", - "verse": "For Ezra had devoted himself to the study and observance of the Law of the LORD, and to teaching its decrees and laws in Israel." - - }, - { - "pack": "DEP 3", - "title": "Treasure the Word more than daily bread", - "chapterTitle": "Attitude to the Word", - "reference": "Job 23:12", - "verse": "I have not departed from the commands of his lips; I have treasured the words of his mouth more than my daily bread." - }, - { - "pack": "DEP 3", - "title": "Trust and Obey the Word", - "chapterTitle": "Attitude to the Word", - "reference": "Luke 5:5-6", - "verse": "Simon answered, Master, we've worked hard all night and haven't caught anything. But because you say so, I will let down the nets. When they had done so, they caught such a large number of fish that their nets began to break." - } - ], - "dep-3-part-d": [ - { - "pack": "DEP 3", - "title": "Hearing", - "chapterTitle": "How to take in the Word (Word Hand Illustration)", - "reference": "Romans 10:17", - "verse": "Consequently, faith comes from hearing the message, and the message is heard through the word of Christ." - }, - { - "pack": "DEP 3", - "title": "Hearing", - "chapterTitle": "How to take in the Word (Word Hand Illustration)", - "reference": "Luke 11:28", - "verse": "He replied, Blessed rather are those who hear the word of God and obey it" - }, - { - "pack": "DEP 3", - "title": "Reading", - "chapterTitle": "How to take in the Word (Word Hand Illustration)", - "reference": "Revelation 1:3", - "verse": "Blessed is the one who reads the words of this prophecy, and blessed are those who hear it and take to heart what is written in it, because the time is near." - }, - { - "pack": "DEP 3", - "title": "Reading", - "chapterTitle": "How to take in the Word (Word Hand Illustration)", - "reference": "Deuteronomy 17:19", - "verse": "It is to be with him, and he is to read it all the days of his life so that he may learn to revere the LORD his God and follow carefully all the words of this law and these decrees" - }, - { - "pack": "DEP 3", - "title": "Studying", - "chapterTitle": "How to take in the Word (Word Hand Illustration)", - "reference": "Acts 17:11 (2nd)", - "verse": "Now the Bereans were of more noble character than the Thessalonians, for they received the message with great eagerness and examined the Scriptures every day to see if what Paul said was true." - }, - { - "pack": "DEP 3", - "title": "Studying", - "chapterTitle": "How to take in the Word (Word Hand Illustration)", - "reference": "2 Timothy 2:15", - "verse": "Do your best to present yourself to God as one approved, a workman who does not need to be ashamed and who correctly handles the word of truth." - }, - { - "pack": "DEP 3", - "title": "Memorizing", - "chapterTitle": "How to take in the Word (Word Hand Illustration)", - "reference": "Deuteronomy 6:6", - "verse": "These commandments that I give you today are to be upon your hearts." - }, - { - "pack": "DEP 3", - "title": "Memorizing", - "chapterTitle": "How to take in the Word (Word Hand Illustration)", - "reference": "Proverbs 7:1-2", - "verse": "My son, keep my words and store up my commands within you. Keep my commands and you will live; guard my teachings as the apple of your eye. Bind them on your fingers; write them on the tablet of your heart." - }, - { - "pack": "DEP 3", - "title": "Meditating", - "chapterTitle": "How to take in the Word (Word Hand Illustration)", - "reference": "Psalms 1:1-2", - "verse": "Blessed is the man who does not walk in the counsel of the wicked or stand in the way of sinners or sit in the seat of mockers. But his delight is in the law of the LORD, and on his law he meditates day and night." - }, - { - "pack": "DEP 3", - "title": "Meditating", - "chapterTitle": "How to take in the Word (Word Hand Illustration)", - "reference": "Joshua 1:8", - "verse": "Do not let this Book of the Law depart from your mouth; meditate on it day and night, so that you may be careful to do everything written in it. Then you will be prosperous and successful." - } - ], - "dep-4-part-a": [ - { - "pack": "DEP 4", - "title": "Cease not to pray", - "chapterTitle": "Command of Prayer", - "reference": "1 Thessalonians 5:17 (KJV)", - "verse": "Pray without ceasing." - }, - { - "pack": "DEP 4", - "title": "Devote yourself to prayer", - "chapterTitle": "Command of Prayer", - "reference": "Colossians 4:2", - "verse": "Devote yourselves to prayer, being watchful and thankful." - }, - { - "pack": "DEP 4", - "title": "Be alert to pray", - "chapterTitle": "Command of Prayer", - "reference": "1 Peter 4:7", - "verse": "The end of all things is near. Therefore be clear minded and self-controlled so that you can pray." - }, - { - "pack": "DEP 4", - "title": "Pray for everyone", - "chapterTitle": "Command of Prayer", - "reference": "1 Timothy 2:1-2", - "verse": "I urge, then, first of all, that requests, prayers, intercession and thanksgiving be made for everyone--for kings and all those in authority, that we may live peaceful and quiet lives in all godliness and holiness." - } - ], - "dep-4-part-b": [ - { - "pack": "DEP 4", - "title": "Promise to answer", - "chapterTitle": "Promises and blessings of prayer", - "reference": "John 14:13-14", - "verse": "And I will do whatever you ask in my name, so that the Son may bring glory to the Father. You may ask me for anything in my name, and I will do it." - }, - { - "pack": "DEP 4", - "title": "Immeasurable answer", - "chapterTitle": "Promises and blessings of prayer", - "reference": "Ephesians 3:20", - "verse": "Now to him who is able to do immeasurably more than all we ask or imagine, according to his power that is at work within us" - }, - { - "pack": "DEP 4", - "title": "Understanding God's will", - "chapterTitle": "Promises and blessings of prayer", - "reference": "Jeremiah 33:3", - "verse": "Call to me and I will answer you and tell you great and unsearchable things you do not know." - }, - { - "pack": "DEP 4", - "title": "Getting the wisdom from God", - "chapterTitle": "Promises and blessings of prayer", - "reference": "James 1:5", - "verse": "If any of you lacks wisdom, he should ask God, who gives generously to all without finding fault, and it will be given to him." - }, - { - "pack": "DEP 4", - "title": "Delivering us from fears", - "chapterTitle": "Promises and blessings of prayer", - "reference": "Psalms 34:4", - "verse": "I sought the LORD, and he answered me; he delivered me from all my fears." - }, - { - "pack": "DEP 4", - "title": "Delivering us from trouble", - "chapterTitle": "Promises and blessings of prayer", - "reference": "Psalms 50:15", - "verse": "and call upon me in the day of trouble; I will deliver you, and you will honor me." - }, - { - "pack": "DEP 4", - "title": "Giving us boldness", - "chapterTitle": "Promises and blessings of prayer", - "reference": "Acts 4:31", - "verse": "After they prayed, the place where they were meeting was shaken. And they were all filled with the Holy Spirit and spoke the word of God boldly." - }, - { - "pack": "DEP 4", - "title": "Giving us opportunities for the gospel", - "chapterTitle": "Promises and blessings of prayer", - "reference": "Colossians 4:3", - "verse": "And pray for us, too, that God may open a door for our message, so that we may proclaim the mystery of Christ, for which I am in chains." - } - ], - "dep-4-part-c": [ - { - "pack": "DEP 4", - "title": "Pray in the name of Jesus", - "chapterTitle": "Conditions for answered prayer", - "reference": "John 16:24", - "verse": "Until now you have not asked for anything in my name. Ask and you will receive, and your joy will be complete." - }, - { - "pack": "DEP 4", - "title": "Pray in faith", - "chapterTitle": "Conditions for answered prayer", - "reference": "Matthew 21:22", - "verse": "If you believe, you will receive whatever you ask for in prayer." - }, - { - "pack": "DEP 4", - "title": "Pray in the Spirit", - "chapterTitle": "Conditions for answered prayer", - "reference": "Ephesians 6:18", - "verse": "And pray in the Spirit on all occasions with all kinds of prayers and requests. With this in mind, be alert and always keep on praying for all the saints." - }, - { - "pack": "DEP 4", - "title": "Pray in God's will", - "chapterTitle": "Conditions for answered prayer", - "reference": "1 John 5:14-15", - "verse": "This is the confidence we have in approaching God: that if we ask anything according to his will, he hears us. And if we know that he hears us--whatever we ask--we know that we have what we asked of him." - }, - { - "pack": "DEP 4", - "title": "Confess and renounce the sin", - "chapterTitle": "Conditions for answered prayer", - "reference": "Psalms 66:18", - "verse": "If I had cherished sin in my heart, the Lord would not have listened" - }, - { - "pack": "DEP 4", - "title": "Obey the Lord", - "chapterTitle": "Conditions for answered prayer", - "reference": "1 John 3:22", - "verse": "and receive from him anything we ask, because we obey his commands and do what pleases him." - }, - { - "pack": "DEP 4", - "title": "Pray with one accord", - "chapterTitle": "Conditions for answered prayer", - "reference": "Matthew 18:19", - "verse": "Again, I tell you that if two of you on earth agree about anything you ask for, it will be done for you by my Father in heaven." - }, - { - "pack": "DEP 4", - "title": "Ask and act", - "chapterTitle": "Conditions for answered prayer", - "reference": "Matthew 7:7-8", - "verse": "Ask and it will be given to you; seek and you will find; knock and the door will be opened to you. For everyone who asks receives; he who seeks finds; and to him who knocks, the door will be opened." - }, - { - "pack": "DEP 4", - "title": "Pray with all your heart", - "chapterTitle": "Conditions for answered prayer", - "reference": "Jeremiah 29:12-13", - "verse": "Then you will call upon me and come and pray to me, and I will listen to you. You will seek me and find me when you seek me with all your heart." - }, - { - "pack": "DEP 4", - "title": "Pray in claiming the promise", - "chapterTitle": "Conditions for answered prayer", - "reference": "Nehemiah 1:8-9", - "verse": "Remember the instruction you gave your servant Moses, saying, 'If you are unfaithful, I will scatter you among the nations, but if you return to me and obey my commands, then even if your exiled people are at the farthest horizon, I will gather them from there and bring them to the place I have chosen as a dwelling for my Name.'" - } - ], - "dep-4-part-d": [ - { - "pack": "DEP 4", - "title": "Praying at the risk of life", - "chapterTitle": "Examples of prayer", - "reference": "Daniel 6:10", - "verse": "Now when Daniel learned that the decree had been published, he went home to his upstairs room where the windows opened toward Jerusalem. Three times a day he got down on his knees and prayed, giving thanks to his God, just as he had done before." - }, - { - "pack": "DEP 4", - "title": "Giving priority to prayer", - "chapterTitle": "Examples of prayer", - "reference": "Luke 5:15-16", - "verse": "Yet the news about him spread all the more, so that crowds of people came to hear him and to be healed of their sicknesses. But Jesus often withdrew to lonely places and prayed." - }, - { - "pack": "DEP 4", - "title": "Praying all through the night", - "chapterTitle": "Examples of prayer", - "reference": "Luke 6:12", - "verse": "One of those days Jesus went out to a mountainside to pray, and spent the night praying to God." - }, - { - "pack": "DEP 4", - "title": "Praying earnestly", - "chapterTitle": "Examples of prayer", - "reference": "James 5:17-18", - "verse": "Elijah was a man just like us. He prayed earnestly that it would not rain, and it did not rain on the land for three and a half years. Again he prayed, and the heavens gave rain, and the earth produced its crops." - }, - { - "pack": "DEP 4", - "title": "Praying in the midst of hardship", - "chapterTitle": "Examples of prayer", - "reference": "Acts 16:25", - "verse": "About midnight Paul and Silas were praying and singing hymns to God, and the other prisoners were listening to them." - } - ], - "dep-4-part-e": [ - { - "pack": "DEP 4", - "title": "Praising", - "chapterTitle": "Prayer Hand Illustration", - "reference": "1 Chronicles 29:11-13", - "verse": "Yours, O LORD, is the greatness and the power and the glory and the majesty and the splendor, for everything in heaven and earth is yours. Yours, O LORD, is the kingdom; you are exalted as head over all. Wealth and honor come from you; you are the ruler of all things. In your hands are strength and power to exalt and give strength to all. Now, our God, we give you thanks, and praise your glorious name." - }, - { - "pack": "DEP 4", - "title": "Intercession", - "chapterTitle": "Prayer Hand Illustration", - "reference": "1 Timothy 2:1-2", - "verse": "I urge, then, first of all, that requests, prayers, intercession and thanksgiving be made for everyone-- for kings and all those in authority, that we may live peaceful and quiet lives in all godliness and holiness." - }, - { - "pack": "DEP 4", - "title": "Thanksgiving", - "chapterTitle": "Prayer Hand Illustration", - "reference": "1 Thessalonians 5:18", - "verse": "give thanks in all circumstances, for this is God's will for you in Christ Jesus." - }, - { - "pack": "DEP 4", - "title": "Confession", - "chapterTitle": "Prayer Hand Illustration", - "reference": "1 John 1:9", - "verse": "If we confess our sins, he is faithful and just and will forgive us our sins and purify us from all unrighteousness." - }, - { - "pack": "DEP 4", - "title": "Supplication", - "chapterTitle": "Prayer Hand Illustration", - "reference": "Philippians 4:6-7", - "verse": "Do not be anxious about anything, but in everything, by prayer and petition, with thanksgiving, present your requests to God. And the peace of God, which transcends all understanding, will guard your hearts and your minds in Christ Jesus." - } - ], - "dep-5-part-a": [ - { - "pack": "DEP 5", - "title": "The blood of Christ", - "chapterTitle": "Foundation of Christian Fellowship", - "reference": "Ephesians 2:13", - "verse": "But now in Christ Jesus you who once were far away have been brought near through the blood of Christ." - }, - { - "pack": "DEP 5", - "title": "The blood of Christ", - "chapterTitle": "Foundation of Christian Fellowship", - "reference": "Colossians 1:20", - "verse": "and through him to reconcile to himself all things, whether things on earth or things in heaven, by making peace through his blood, shed on the cross." - }, - { - "pack": "DEP 5", - "title": "God - the Father, the Son, the Holy Spirit", - "chapterTitle": "Foundation of Christian Fellowship", - "reference": "1 John 1:3", - "verse": "We proclaim to you what we have seen and heard, so that you also may have fellowship with us. And our fellowship is with the Father and with his Son, Jesus Christ." - }, - { - "pack": "DEP 5", - "title": "God - the Father, the Son, the Holy Spirit", - "chapterTitle": "Foundation of Christian Fellowship", - "reference": "2 Corinthians 13:14", - "verse": "May the grace of the Lord Jesus Christ, and the love of God, and the fellowship of the Holy Spirit be with you all." - } - ], - "dep-5-part-b": [ - { - "pack": "DEP 5", - "title": "Promise of being with us", - "chapterTitle": "Importance of fellowship", - "reference": "Matthew 18:20", - "verse": "For where two or three come together in my name, there am I with them." - }, - { - "pack": "DEP 5", - "title": "Bestowing His Blessings", - "chapterTitle": "Importance of fellowship", - "reference": "Psalms 133:1-3", - "verse": "How good and pleasant it is when brothers live together in unity! It is like precious oil poured on the head, running down on the beard, running down on Aaron's beard, down upon the collar of his robes. It is as if the dew of Hermon were falling on Mount Zion. For there the LORD bestows his blessing, even life forevermore." - }, - { - "pack": "DEP 5", - "title": "Protection against sins", - "chapterTitle": "Importance of fellowship", - "reference": "Hebrews 3:13", - "verse": "But encourage one another daily, as long as it is called Today, so that none of you may be hardened by sin's deceitfulness." - }, - { - "pack": "DEP 5", - "title": "Helping up each other", - "chapterTitle": "Importance of fellowship", - "reference": "Ecclesiastes 4:9,10", - "verse": "Two are better than one, because they have a good return for their work: If one falls down, his friend can help him up. But pity the man who falls and has no one to help him up!" - }, - { - "pack": "DEP 5", - "title": "Training in godly life", - "chapterTitle": "Importance of fellowship", - "reference": "2 Timothy 2:22", - "verse": "Flee the evil desires of youth, and pursue righteousness, faith, love and peace, along with those who call on the Lord out of a pure heart." - }, - { - "pack": "DEP 5", - "title": "Developing godly character", - "chapterTitle": "Importance of fellowship", - "reference": "Proverbs 27:17,19", - "verse": "As iron sharpens iron, so one man sharpens another. As water reflects a face, so a man's heart reflects the man." - }, - { - "pack": "DEP 5", - "title": "Getting God's wisdom", - "chapterTitle": "Importance of fellowship", - "reference": "Proverbs 13:20", - "verse": "He who walks with the wise grows wise, but a companion of fools suffers harm." - }, - { - "pack": "DEP 5", - "title": "Attaining maturity", - "chapterTitle": "Importance of fellowship", - "reference": "Ephesians 4:13", - "verse": "until we all reach unity in the faith and in the knowledge of the Son of God and become mature, attaining to the whole measure of the fullness of Christ." - }, - { - "pack": "DEP 5", - "title": "Fruitful in the ministry", - "chapterTitle": "Importance of fellowship", - "reference": "Acts 2:42,47", - "verse": "They devoted themselves to the apostles' teaching and to the fellowship, to the breaking of bread and to prayer. praising God and enjoying the favor of all the people. And the Lord added to their number daily those who were being saved." - } - ], - "dep-5-part-c": [ - { - "pack": "DEP 5", - "title": "Partnering in the gospel", - "chapterTitle": "Essentials of fellowship", - "reference": "Philippians 1:5,27", - "verse": "because of your partnership in the gospel from the first day until now, Whatever happens, conduct yourselves in a manner worthy of the gospel of Christ. Then, whether I come and see you or only hear about you in my absence, I will know that you stand firm in one spirit, contending as one man for the faith of the gospel" - }, - { - "pack": "DEP 5", - "title": "Spurring one another", - "chapterTitle": "Essentials of fellowship", - "reference": "Hebrews 10:24,25", - "verse": "And let us consider how we may spur one another on toward love and good deeds. Let us not give up meeting together, as some are in the habit of doing, but let us encourage one another--and all the more as you see the Day approaching." - }, - { - "pack": "DEP 5", - "title": "Meeting the needs", - "chapterTitle": "Essentials of fellowship", - "reference": "2 Corinthians 8:3,4", - "verse": "For I testify that they gave as much as they were able, and even beyond their ability. Entirely on their own, they urgently pleaded with us for the privilege of sharing in this service to the saints." - }, - { - "pack": "DEP 5", - "title": "Participating in the sufferings of Christ", - "chapterTitle": "Essentials of fellowship", - "reference": "1 Peter 4:13", - "verse": "But rejoice that you participate in the sufferings of Christ, so that you may be overjoyed when his glory is revealed." - }, - { - "pack": "DEP 5", - "title": "Carrying each other's burdens", - "chapterTitle": "Essentials of fellowship", - "reference": "Galatians 6:2", - "verse": "Carry each other's burdens, and in this way you will fulfill the law of Christ." - } - ], - "dep-5-part-d": [ - { - "pack": "DEP 5", - "title": "Be like-minded", - "chapterTitle": "Attitude of fellowship", - "reference": "Philippians 2:1-2", - "verse": "If you have any encouragement from being united with Christ, if any comfort from his love, if any fellowship with the Spirit, if any tenderness and compassion, then make my joy complete by being like-minded, having the same love, being one in spirit and purpose." - }, - { - "pack": "DEP 5", - "title": "Be humble", - "chapterTitle": "Attitude of fellowship", - "reference": "Philippians 2:3-4", - "verse": "Do nothing out of selfish ambition or vain conceit, but in humility consider others better than yourselves. Each of you should look not only to your own interests, but also to the interests of others." - }, - { - "pack": "DEP 5", - "title": "Open your heart wide", - "chapterTitle": "Attitude of fellowship", - "reference": "2 Corinthians 6:12-13", - "verse": "We are not withholding our affection from you, but you are withholding yours from us. As a fair exchange--I speak as to my children--open wide your hearts also." - }, - { - "pack": "DEP 5", - "title": "Submit to one another", - "chapterTitle": "Attitude of fellowship", - "reference": "Ephesians 5:21", - "verse": "Submit to one another out of reverence for Christ." - }, - { - "pack": "DEP 5", - "title": "Do not compare with others", - "chapterTitle": "Attitude of fellowship", - "reference": "Mark 9:34-35", - "verse": "But they kept quiet because on the way they had argued about who was the greatest. Sitting down, Jesus called the Twelve and said, 'If anyone wants to be first, he must be the very last, and the servant of all.'" - }, - { - "pack": "DEP 5", - "title": "Let no bitter root grow up", - "chapterTitle": "Attitude of fellowship", - "reference": "Hebrews 12:15", - "verse": "See to it that no one misses the grace of God and that no bitter root grows up to cause trouble and defile many." - }, - { - "pack": "DEP 5", - "title": "Part from the fruitless things", - "chapterTitle": "Attitude of fellowship", - "reference": "Ephesians 5:11", - "verse": "Have nothing to do with the fruitless deeds of darkness, but rather expose them." - }, - { - "pack": "DEP 5", - "title": "Be available", - "chapterTitle": "Attitude of fellowship", - "reference": "2 Timothy 2:4", - "verse": "No one serving as a soldier gets involved in civilian affairs-he wants to please his commanding officer." - } - ], - "dep-5-part-e": [ - { - "pack": "DEP 5", - "title": "In relation to believers", - "chapterTitle": "Problem solving in fellowship", - "reference": "Matthew 5:23-24", - "verse": "Therefore, if you are offering your gift at the altar and there remember that your brother has something against you, leave your gift there in front of the altar. First go and be reconciled to your brother; then come and offer your gift." - }, - { - "pack": "DEP 5", - "title": "In relation to believers", - "chapterTitle": "Problem solving in fellowship", - "reference": "Matthew 18:15", - "verse": "If your brother sins against you, go and show him his fault, just between the two of you. If he listens to you, you have won your brother over." - }, - { - "pack": "DEP 5", - "title": "In relation to God", - "chapterTitle": "Problem solving in fellowship", - "reference": "1 John 1:9", - "verse": "If we confess our sins, he is faithful and just and will forgive us our sins and purify us from all unrighteousness." - }, - { - "pack": "DEP 5", - "title": "In relation to God", - "chapterTitle": "Problem solving in fellowship", - "reference": "Proverbs 28:13", - "verse": "He who conceals his sins does not prosper, but whoever confesses and renounces them finds mercy." - } ] } -} \ No newline at end of file +}