Spaces:
Runtime error
Runtime error
Commit ·
b83218c
1
Parent(s): d6d2d0d
enabled 1/137 mod by default
Browse files
app.py
CHANGED
|
@@ -258,7 +258,7 @@ with gr.Blocks() as app:
|
|
| 258 |
psalm_name_input = gr.Textbox(label="Name (optional)")
|
| 259 |
psalm_date_input = Calendar(label="Date", type="date")
|
| 260 |
with gr.Row():
|
| 261 |
-
psalm_adjusted_sum_check = gr.Checkbox(label="Journal Sum + (Journal Sum / 137)", value=
|
| 262 |
psalm_language = gr.Dropdown(choices=list(LANGUAGES.keys()), value="English", label="Language",
|
| 263 |
interactive=True)
|
| 264 |
with gr.Row():
|
|
@@ -272,7 +272,7 @@ with gr.Blocks() as app:
|
|
| 272 |
sura_name_input = gr.Textbox(label="Name (optional)")
|
| 273 |
sura_date_input = Calendar(label="Date", type="date")
|
| 274 |
with gr.Row():
|
| 275 |
-
sura_adjusted_sum_check = gr.Checkbox(label="Journal Sum + (Journal Sum / 137)", value=
|
| 276 |
sura_language = gr.Dropdown(choices=list(LANGUAGES.keys()), value="English", label="Language",
|
| 277 |
interactive=True)
|
| 278 |
with gr.Row():
|
|
@@ -286,7 +286,7 @@ with gr.Blocks() as app:
|
|
| 286 |
bible_name_input = gr.Textbox(label="Name (optional)")
|
| 287 |
bible_date_input = Calendar(label="Date", type="date")
|
| 288 |
with gr.Row():
|
| 289 |
-
bible_adjusted_sum_check = gr.Checkbox(label="Journal Sum + (Journal Sum / 137)", value=
|
| 290 |
bible_language = gr.Dropdown(choices=list(LANGUAGES.keys()), value="English", label="Language",
|
| 291 |
interactive=True)
|
| 292 |
with gr.Row():
|
|
|
|
| 258 |
psalm_name_input = gr.Textbox(label="Name (optional)")
|
| 259 |
psalm_date_input = Calendar(label="Date", type="date")
|
| 260 |
with gr.Row():
|
| 261 |
+
psalm_adjusted_sum_check = gr.Checkbox(label="Journal Sum + (Journal Sum / 137)", value=True)
|
| 262 |
psalm_language = gr.Dropdown(choices=list(LANGUAGES.keys()), value="English", label="Language",
|
| 263 |
interactive=True)
|
| 264 |
with gr.Row():
|
|
|
|
| 272 |
sura_name_input = gr.Textbox(label="Name (optional)")
|
| 273 |
sura_date_input = Calendar(label="Date", type="date")
|
| 274 |
with gr.Row():
|
| 275 |
+
sura_adjusted_sum_check = gr.Checkbox(label="Journal Sum + (Journal Sum / 137)", value=True)
|
| 276 |
sura_language = gr.Dropdown(choices=list(LANGUAGES.keys()), value="English", label="Language",
|
| 277 |
interactive=True)
|
| 278 |
with gr.Row():
|
|
|
|
| 286 |
bible_name_input = gr.Textbox(label="Name (optional)")
|
| 287 |
bible_date_input = Calendar(label="Date", type="date")
|
| 288 |
with gr.Row():
|
| 289 |
+
bible_adjusted_sum_check = gr.Checkbox(label="Journal Sum + (Journal Sum / 137)", value=True)
|
| 290 |
bible_language = gr.Dropdown(choices=list(LANGUAGES.keys()), value="English", label="Language",
|
| 291 |
interactive=True)
|
| 292 |
with gr.Row():
|