32 lines
808 B
TypeScript
32 lines
808 B
TypeScript
// Local data storage for development without DB
|
|
// Each object represents a verse for a specific day
|
|
export interface localizedContent {
|
|
en: string;
|
|
de: string;
|
|
ru: string;
|
|
}
|
|
|
|
export interface BibleVerse {
|
|
reference: string;
|
|
content: localizedContent;
|
|
}
|
|
|
|
export const bibleVerses: BibleVerse[] = [
|
|
{
|
|
reference: "Epheser 2:19",
|
|
content: {
|
|
en: "So then you are no longer strangers and aliens...",
|
|
de: "So seid ihr nun nicht mehr Gäste und Fremdlinge...",
|
|
ru: "Итак вы уже не чужие и не пришельцы..."
|
|
}
|
|
},
|
|
{
|
|
reference: "Psalm 23:1",
|
|
content: {
|
|
en: "The Lord is my shepherd...",
|
|
de: "Der Herr ist mein Hirte...",
|
|
ru: "Господь — Пастырь мой..."
|
|
}
|
|
},
|
|
// Add as many as you want here
|
|
]; |