waha-shared 1.0.1

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.
Files changed (135) hide show
  1. package/.DS_Store +0 -0
  2. package/README.md +10 -0
  3. package/__init__.py +0 -0
  4. package/copy.ts +37 -0
  5. package/data/README.md +45 -0
  6. package/data/__init__.py +0 -0
  7. package/data/aslTimestamps.json +192788 -0
  8. package/data/bibleAudios.json +394 -0
  9. package/data/bibleAudios.ts +4 -0
  10. package/data/bibleResources/audioBibleLicenses.json +6235 -0
  11. package/data/bibleResources/bibleBooks.json +6071 -0
  12. package/data/bibleResources/bibleBooks.ts +4 -0
  13. package/data/bibleResources/bibleChaptersList.json +1191 -0
  14. package/data/bibleResources/bibleChaptersList.ts +4 -0
  15. package/data/bibleResources/textBibleLicenses.json +14603 -0
  16. package/data/bibleStatuses.json +9196 -0
  17. package/data/bibleStatuses.ts +4 -0
  18. package/data/bibleTexts.json +527 -0
  19. package/data/bibleTexts.ts +4 -0
  20. package/data/clones.json +13 -0
  21. package/data/countryResources/areas.json +74 -0
  22. package/data/countryResources/areas.ts +4 -0
  23. package/data/countryResources/countries.json +3362 -0
  24. package/data/countryResources/countries.ts +4 -0
  25. package/data/foundationsCurriculums.json +130 -0
  26. package/data/foundationsCurriculums.ts +4 -0
  27. package/data/languageResources/countriesAndLanguages.json +11718 -0
  28. package/data/languageResources/countriesAndLanguages.ts +16 -0
  29. package/data/languageResources/crowdinLanguages.json +2172 -0
  30. package/data/languageResources/iosVoiceOverLanguages.json +64 -0
  31. package/data/languageResources/iso6933LanguageCodes.json +7927 -0
  32. package/data/languageResources/mmsLanguages.json +28164 -0
  33. package/data/languageResources/phoneLanguages.json +1532 -0
  34. package/data/languageResources/phoneLanguages.ts +14 -0
  35. package/data/languages.json +7045 -0
  36. package/data/languages.ts +4 -0
  37. package/data/mediaDurations.json +32364 -0
  38. package/data/mediaDurations.ts +4 -0
  39. package/data/notification.json +69 -0
  40. package/data/notification.ts +4 -0
  41. package/data/numeralMaps.json +26 -0
  42. package/data/numeralMaps.ts +4 -0
  43. package/data/orphanedBibleTexts.json +2747 -0
  44. package/data/questions.json +317 -0
  45. package/data/questions.ts +4 -0
  46. package/data/questionsCurriculums.json +753 -0
  47. package/data/questionsCurriculums.ts +4 -0
  48. package/data/releaseNotes.json +2381 -0
  49. package/data/releaseNotes.ts +4 -0
  50. package/data/schemas/appTranslations.schema.json +802 -0
  51. package/data/schemas/areas.schema.json +76 -0
  52. package/data/schemas/aslTimestamps.schema.json +59 -0
  53. package/data/schemas/bibleAudios.schema.json +37 -0
  54. package/data/schemas/bibleBooks.schema.json +112 -0
  55. package/data/schemas/bibleChapters.schema.json +61 -0
  56. package/data/schemas/bibleStatuses.schema.json +41 -0
  57. package/data/schemas/bibleTexts.schema.json +60 -0
  58. package/data/schemas/clones.schema.json +63 -0
  59. package/data/schemas/countries.schema.json +84 -0
  60. package/data/schemas/foundationsCurriculums.schema.json +20 -0
  61. package/data/schemas/introductionTranslations.schema.json +101 -0
  62. package/data/schemas/languages.schema.json +365 -0
  63. package/data/schemas/mediaDurations.schema.json +41 -0
  64. package/data/schemas/notification.schema.json +111 -0
  65. package/data/schemas/numeralMaps.schema.json +57 -0
  66. package/data/schemas/questionTranslations.schema.json +20 -0
  67. package/data/schemas/questions.schema.json +29 -0
  68. package/data/schemas/questionsCurriculums.schema.json +34 -0
  69. package/data/schemas/releaseNotes.schema.json +21 -0
  70. package/data/schemas/screenshots.schema.json +23 -0
  71. package/data/schemas/setTranslations.schema.json +70 -0
  72. package/data/schemas/sets.schema.json +109 -0
  73. package/data/schemas/topicsCurriculums.schema.json +20 -0
  74. package/data/screenshots.json +17 -0
  75. package/data/screenshots.ts +4 -0
  76. package/data/sets.json +12258 -0
  77. package/data/sets.ts +4 -0
  78. package/data/specialIds.json +72 -0
  79. package/data/specialIds.ts +19 -0
  80. package/data/timings/som.json +9150 -0
  81. package/data/topicsCurriculums.json +131 -0
  82. package/data/topicsCurriculums.ts +4 -0
  83. package/data/typescript/appTranslations.ts +322 -0
  84. package/data/typescript/areas.ts +45 -0
  85. package/data/typescript/aslTimestamps.ts +36 -0
  86. package/data/typescript/bibleAudioAvailableChapters.ts +35 -0
  87. package/data/typescript/bibleAudios.ts +32 -0
  88. package/data/typescript/bibleBookNames.ts +97 -0
  89. package/data/typescript/bibleBooks.ts +63 -0
  90. package/data/typescript/bibleChapters.ts +40 -0
  91. package/data/typescript/bibleStatuses.ts +54 -0
  92. package/data/typescript/bibleTextAvailableChapters.ts +35 -0
  93. package/data/typescript/bibleTexts.ts +63 -0
  94. package/data/typescript/clones.ts +35 -0
  95. package/data/typescript/countries.ts +152 -0
  96. package/data/typescript/foundationsCurriculums.ts +15 -0
  97. package/data/typescript/introductionTranslations.ts +60 -0
  98. package/data/typescript/languages.ts +369 -0
  99. package/data/typescript/mediaDurations.ts +89 -0
  100. package/data/typescript/notification.ts +189 -0
  101. package/data/typescript/numeralMaps.ts +74 -0
  102. package/data/typescript/questionTranslations.ts +6 -0
  103. package/data/typescript/questions.ts +25 -0
  104. package/data/typescript/questionsCurriculums.ts +26 -0
  105. package/data/typescript/releaseNotes.ts +10 -0
  106. package/data/typescript/screenshots.ts +52 -0
  107. package/data/typescript/setTranslations.ts +39 -0
  108. package/data/typescript/sets.ts +105 -0
  109. package/data/typescript/topicsCurriculums.ts +15 -0
  110. package/data/youtube/playlists.json +28 -0
  111. package/data/youtube/videos.json +262 -0
  112. package/data/youtube/videos.ts +2 -0
  113. package/functions/activeCampaign.ts +127 -0
  114. package/functions/bibleChapterUtils.ts +241 -0
  115. package/functions/crowdin.ts +51 -0
  116. package/functions/languages.ts +284 -0
  117. package/functions/scripturePassages.ts +368 -0
  118. package/functions/sets.ts +495 -0
  119. package/package.json +10 -0
  120. package/translations/appTranslations.json +10239 -0
  121. package/translations/appTranslations.ts +4 -0
  122. package/translations/introductionTranslations.json +422 -0
  123. package/translations/introductionTranslations.ts +4 -0
  124. package/translations/questionTranslations.json +1472 -0
  125. package/translations/questionTranslations.ts +4 -0
  126. package/translations/setTranslations.json +30257 -0
  127. package/translations/setTranslations.ts +4 -0
  128. package/translations/spokenQuestionTranslations.json +1472 -0
  129. package/types/analytics.ts +147 -0
  130. package/types/completions.ts +9 -0
  131. package/types/feedback.ts +27 -0
  132. package/types/languages.ts +37 -0
  133. package/types/notifications.ts +37 -0
  134. package/types/sets.ts +84 -0
  135. package/types/users.ts +162 -0
@@ -0,0 +1,802 @@
1
+ {
2
+ "$id": "https://waha_app/schemas/appTranslations_schema_json",
3
+ "title": "App Translations",
4
+ "type": "object",
5
+ "description": "Schema for appTranslations_json_ Root keys are 3-letter language identifiers (ISO-639 style)_ Each language object contains well-defined translation collections_",
6
+ "propertyNames": {
7
+ "pattern": "^[a-z]{3}$",
8
+ "description": "Language id (3 lowercase letters)."
9
+ },
10
+ "additionalProperties": {
11
+ "type": "object",
12
+ "description": "Translations for a single language (identified by a 3-letter code)_",
13
+ "properties": {
14
+ "percent_available": { "type": "string", "minLength": 1 },
15
+ "name": { "type": "string", "minLength": 1 },
16
+ "version": { "type": "string", "minLength": 1 },
17
+ "a11y_add_secondary_language_hint": {
18
+ "type": "string",
19
+ "minLength": 1
20
+ },
21
+ "a11y_article_hint": { "type": "string", "minLength": 1 },
22
+ "a11y_banner_dismiss_hint": { "type": "string", "minLength": 1 },
23
+ "a11y_bible_audio_controls_label": { "type": "string", "minLength": 1 },
24
+ "a11y_bible_translation_hint": { "type": "string", "minLength": 1 },
25
+ "a11y_bookmark_hint": { "type": "string", "minLength": 1 },
26
+ "a11y_bookmark_label": { "type": "string", "minLength": 1 },
27
+ "a11y_change_languages_hint": { "type": "string", "minLength": 1 },
28
+ "a11y_chapter_button_hint": { "type": "string", "minLength": 1 },
29
+ "a11y_choose_primary_language_hint": {
30
+ "type": "string",
31
+ "minLength": 1
32
+ },
33
+ "a11y_clear_passcode_hint": { "type": "string", "minLength": 1 },
34
+ "a11y_download_set_label": { "type": "string", "minLength": 1 },
35
+ "a11y_extra_controls_hint": { "type": "string", "minLength": 1 },
36
+ "a11y_extra_controls_label": { "type": "string", "minLength": 1 },
37
+ "a11y_font_size_decrement_label": { "type": "string", "minLength": 1 },
38
+ "a11y_font_size_increment_label": { "type": "string", "minLength": 1 },
39
+ "a11y_font_size_label": { "type": "string", "minLength": 1 },
40
+ "a11y_give_button_hint": { "type": "string", "minLength": 1 },
41
+ "a11y_group_help_hint": { "type": "string", "minLength": 1 },
42
+ "a11y_lesson_actions_hint": { "type": "string", "minLength": 1 },
43
+ "a11y_lesson_actions_label": { "type": "string", "minLength": 1 },
44
+ "a11y_lesson_hint": { "type": "string", "minLength": 1 },
45
+ "a11y_lesson_label": { "type": "string", "minLength": 1 },
46
+ "a11y_lesson_question_label": { "type": "string", "minLength": 1 },
47
+ "a11y_lesson_text_hint": { "type": "string", "minLength": 1 },
48
+ "a11y_mute_label": { "type": "string", "minLength": 1 },
49
+ "a11y_play_button_label": { "type": "string", "minLength": 1 },
50
+ "a11y_playback_speed_decrement_label": {
51
+ "type": "string",
52
+ "minLength": 1
53
+ },
54
+ "a11y_playback_speed_increment_label": {
55
+ "type": "string",
56
+ "minLength": 1
57
+ },
58
+ "a11y_playback_speed_label": { "type": "string", "minLength": 1 },
59
+ "a11y_radio_hint": { "type": "string", "minLength": 1 },
60
+ "a11y_remove_language_label": { "type": "string", "minLength": 1 },
61
+ "a11y_scrubber_decrement_label": { "type": "string", "minLength": 1 },
62
+ "a11y_scrubber_increment_label": { "type": "string", "minLength": 1 },
63
+ "a11y_scrubber_label": { "type": "string", "minLength": 1 },
64
+ "a11y_search_hint": { "type": "string", "minLength": 1 },
65
+ "a11y_security_mode_label": { "type": "string", "minLength": 1 },
66
+ "a11y_set_hint": { "type": "string", "minLength": 1 },
67
+ "a11y_share_lesson_label": { "type": "string", "minLength": 1 },
68
+ "a11y_tab_hint": { "type": "string", "minLength": 1 },
69
+ "a11y_video_label": { "type": "string", "minLength": 1 },
70
+ "a11y_view_bible_hint": { "type": "string", "minLength": 1 },
71
+ "a11y_view_in_progress_language_hint": {
72
+ "type": "string",
73
+ "minLength": 1
74
+ },
75
+ "a11y_view_launched_language_hint": {
76
+ "type": "string",
77
+ "minLength": 1
78
+ },
79
+ "about": { "type": "string", "minLength": 1 },
80
+ "add_language": { "type": "string", "minLength": 1 },
81
+ "all": { "type": "string", "minLength": 1 },
82
+ "all_languages": { "type": "string", "minLength": 1 },
83
+ "app_store_listing_title": { "type": "string", "minLength": 1 },
84
+ "app_store_listing_description": { "type": "string", "minLength": 1 },
85
+ "app_store_listing_screenshot_foundations": {
86
+ "type": "string",
87
+ "minLength": 1
88
+ },
89
+ "app_store_listing_screenshot_languages": {
90
+ "type": "string",
91
+ "minLength": 1
92
+ },
93
+ "app_store_listing_screenshot_learn": {
94
+ "type": "string",
95
+ "minLength": 1
96
+ },
97
+ "app_store_listing_screenshot_lesson": {
98
+ "type": "string",
99
+ "minLength": 1
100
+ },
101
+ "app_store_listing_screenshot_reviews_1": {
102
+ "type": "string",
103
+ "minLength": 1
104
+ },
105
+ "app_store_listing_screenshot_reviews_2": {
106
+ "type": "string",
107
+ "minLength": 1
108
+ },
109
+ "app_store_listing_screenshot_set": {
110
+ "type": "string",
111
+ "minLength": 1
112
+ },
113
+ "app_store_listing_screenshot_share": {
114
+ "type": "string",
115
+ "minLength": 1
116
+ },
117
+ "app_store_listing_screenshot_testimonial": {
118
+ "type": "string",
119
+ "minLength": 1
120
+ },
121
+ "app_store_listing_screenshot_topics": {
122
+ "type": "string",
123
+ "minLength": 1
124
+ },
125
+ "app_store_listing_subtitle": { "type": "string", "minLength": 1 },
126
+ "appearance": { "type": "string", "minLength": 1 },
127
+ "application": { "type": "string", "minLength": 1 },
128
+ "article_categories_65004e85fba2e8c9d281a73e": {
129
+ "type": "string",
130
+ "minLength": 1
131
+ },
132
+ "article_categories_65004e8eaf7c1d3f8289315a": {
133
+ "type": "string",
134
+ "minLength": 1
135
+ },
136
+ "article_categories_65004f8eead7951cf3c33243": {
137
+ "type": "string",
138
+ "minLength": 1
139
+ },
140
+ "article_categories_65005061a72598db83565c66": {
141
+ "type": "string",
142
+ "minLength": 1
143
+ },
144
+ "article_categories_65400527806b42d2e6ae4fd0": {
145
+ "type": "string",
146
+ "minLength": 1
147
+ },
148
+ "article_categories_65ca47557375e35a56523645": {
149
+ "type": "string",
150
+ "minLength": 1
151
+ },
152
+ "article_cta_body": { "type": "string", "minLength": 1 },
153
+ "article_cta_header": { "type": "string", "minLength": 1 },
154
+ "articles": { "type": "string", "minLength": 1 },
155
+ "audio": { "type": "string", "minLength": 1 },
156
+ "back": { "type": "string", "minLength": 1 },
157
+ "bible": { "type": "string", "minLength": 1 },
158
+ "bookmarks": { "type": "string", "minLength": 1 },
159
+ "bookmarks_description": { "type": "string", "minLength": 1 },
160
+ "bridge_language_explanation": { "type": "string", "minLength": 1 },
161
+ "calculator": { "type": "string", "minLength": 1 },
162
+ "calculator_description": { "type": "string", "minLength": 1 },
163
+ "cancel": { "type": "string", "minLength": 1 },
164
+ "cant_share_until_download": { "type": "string", "minLength": 1 },
165
+ "cast_to_tv": { "type": "string", "minLength": 1 },
166
+ "casting": { "type": "string", "minLength": 1 },
167
+ "change_chapter": { "type": "string", "minLength": 1 },
168
+ "change_languages": { "type": "string", "minLength": 1 },
169
+ "change_passcode": { "type": "string", "minLength": 1 },
170
+ "change_security_app": { "type": "string", "minLength": 1 },
171
+ "change_security_app_description": { "type": "string", "minLength": 1 },
172
+ "change_timeout": { "type": "string", "minLength": 1 },
173
+ "change_video_language": { "type": "string", "minLength": 1 },
174
+ "changing_layout_direction": { "type": "string", "minLength": 1 },
175
+ "chapter_fetching": { "type": "string", "minLength": 1 },
176
+ "chapter_not_available": { "type": "string", "minLength": 1 },
177
+ "chapter_offline": { "type": "string", "minLength": 1 },
178
+ "choose_passcode": { "type": "string", "minLength": 1 },
179
+ "clear": { "type": "string", "minLength": 1 },
180
+ "close": { "type": "string", "minLength": 1 },
181
+ "confirm": { "type": "string", "minLength": 1 },
182
+ "confirm_passcode": { "type": "string", "minLength": 1 },
183
+ "connect_to_continue": { "type": "string", "minLength": 1 },
184
+ "contact_us": { "type": "string", "minLength": 1 },
185
+ "continue": { "type": "string", "minLength": 1 },
186
+ "contribute": { "type": "string", "minLength": 1 },
187
+ "copied_to_clipboard": { "type": "string", "minLength": 1 },
188
+ "dark": { "type": "string", "minLength": 1 },
189
+ "dark_mode": { "type": "string", "minLength": 1 },
190
+ "default": { "type": "string", "minLength": 1 },
191
+ "disciple_making_course": { "type": "string", "minLength": 1 },
192
+ "dm_course_locked_blurb": { "type": "string", "minLength": 1 },
193
+ "done": { "type": "string", "minLength": 1 },
194
+ "download": { "type": "string", "minLength": 1 },
195
+ "download_app": { "type": "string", "minLength": 1 },
196
+ "download_paused": { "type": "string", "minLength": 1 },
197
+ "downloading": { "type": "string", "minLength": 1 },
198
+ "downloading_to_share": { "type": "string", "minLength": 1 },
199
+ "edit": { "type": "string", "minLength": 1 },
200
+ "email": { "type": "string", "minLength": 1 },
201
+ "enter_passcode": { "type": "string", "minLength": 1 },
202
+ "favorites": { "type": "string", "minLength": 1 },
203
+ "fellowship": { "type": "string", "minLength": 1 },
204
+ "filter_articles": { "type": "string", "minLength": 1 },
205
+ "font_size": { "type": "string", "minLength": 1 },
206
+ "foundations": { "type": "string", "minLength": 1 },
207
+ "get_started_foundations": { "type": "string", "minLength": 1 },
208
+ "get_started_training": { "type": "string", "minLength": 1 },
209
+ "give": { "type": "string", "minLength": 1 },
210
+ "give_blurb": { "type": "string", "minLength": 1 },
211
+ "give_to_language": { "type": "string", "minLength": 1 },
212
+ "got_it": { "type": "string", "minLength": 1 },
213
+ "help_tips": { "type": "string", "minLength": 1 },
214
+ "heres_whats_new": { "type": "string", "minLength": 1 },
215
+ "home": { "type": "string", "minLength": 1 },
216
+ "in_development": { "type": "string", "minLength": 1 },
217
+ "instant": { "type": "string", "minLength": 1 },
218
+ "internet_required_download": { "type": "string", "minLength": 1 },
219
+ "internet_required_download_share": {
220
+ "type": "string",
221
+ "minLength": 1
222
+ },
223
+ "introduction": { "type": "string", "minLength": 1 },
224
+ "language_types_app_interface": { "type": "string", "minLength": 1 },
225
+ "language_types_meet": { "type": "string", "minLength": 1 },
226
+ "language_types_meet_primary": { "type": "string", "minLength": 1 },
227
+ "language_types_meet_secondary": { "type": "string", "minLength": 1 },
228
+ "language_types_video_bridge": { "type": "string", "minLength": 1 },
229
+ "learn": { "type": "string", "minLength": 1 },
230
+ "learn_more": { "type": "string", "minLength": 1 },
231
+ "light": { "type": "string", "minLength": 1 },
232
+ "listen_to_story_again": { "type": "string", "minLength": 1 },
233
+ "loading_file_size": { "type": "string", "minLength": 1 },
234
+ "mark_complete": { "type": "string", "minLength": 1 },
235
+ "meet": { "type": "string", "minLength": 1 },
236
+ "meeting_history": { "type": "string", "minLength": 1 },
237
+ "megabyte": { "type": "string", "minLength": 1 },
238
+ "message": { "type": "string", "minLength": 1 },
239
+ "more": { "type": "string", "minLength": 1 },
240
+ "my_primary_language": { "type": "string", "minLength": 1 },
241
+ "no_connection": { "type": "string", "minLength": 1 },
242
+ "no_files_to_delete": { "type": "string", "minLength": 1 },
243
+ "no_languages_found": { "type": "string", "minLength": 1 },
244
+ "not_now": { "type": "string", "minLength": 1 },
245
+ "note_add": { "type": "string", "minLength": 1 },
246
+ "note_delete": { "type": "string", "minLength": 1 },
247
+ "note_edit": { "type": "string", "minLength": 1 },
248
+ "note_placeholder": { "type": "string", "minLength": 1 },
249
+ "note_saved": { "type": "string", "minLength": 1 },
250
+ "notes_view": { "type": "string", "minLength": 1 },
251
+ "notifications_enable": { "type": "string", "minLength": 1 },
252
+ "ok": { "type": "string", "minLength": 1 },
253
+ "passcode_set": { "type": "string", "minLength": 1 },
254
+ "piano": { "type": "string", "minLength": 1 },
255
+ "piano_description": { "type": "string", "minLength": 1 },
256
+ "playback_speed": { "type": "string", "minLength": 1 },
257
+ "popups_app_interface_help": { "type": "string", "minLength": 1 },
258
+ "popups_casting_stop_confirm": { "type": "string", "minLength": 1 },
259
+ "popups_code_request_success_message": {
260
+ "type": "string",
261
+ "minLength": 1
262
+ },
263
+ "popups_codes_no_match_title": { "type": "string", "minLength": 1 },
264
+ "popups_codes_no_match_message": { "type": "string", "minLength": 1 },
265
+ "popups_foundations_description_believer": {
266
+ "type": "string",
267
+ "minLength": 1
268
+ },
269
+ "popups_foundations_description_seeker": {
270
+ "type": "string",
271
+ "minLength": 1
272
+ },
273
+ "popups_group_help_title": { "type": "string", "minLength": 1 },
274
+ "popups_group_help_message": { "type": "string", "minLength": 1 },
275
+ "popups_meet_help": { "type": "string", "minLength": 1 },
276
+ "popups_notification_opt_in_title": {
277
+ "type": "string",
278
+ "minLength": 1
279
+ },
280
+ "popups_notification_opt_in_message": {
281
+ "type": "string",
282
+ "minLength": 1
283
+ },
284
+ "popups_play_help_title": { "type": "string", "minLength": 1 },
285
+ "popups_play_help_message": { "type": "string", "minLength": 1 },
286
+ "popups_remove_meeting_title": { "type": "string", "minLength": 1 },
287
+ "popups_remove_meeting_message": { "type": "string", "minLength": 1 },
288
+ "popups_submit_feedback_error_title": {
289
+ "type": "string",
290
+ "minLength": 1
291
+ },
292
+ "popups_submit_feedback_error_message": {
293
+ "type": "string",
294
+ "minLength": 1
295
+ },
296
+ "popups_submit_feedback_success_title": {
297
+ "type": "string",
298
+ "minLength": 1
299
+ },
300
+ "popups_submit_feedback_success_message": {
301
+ "type": "string",
302
+ "minLength": 1
303
+ },
304
+ "popups_topics_description": { "type": "string", "minLength": 1 },
305
+ "popups_training_description_believer": {
306
+ "type": "string",
307
+ "minLength": 1
308
+ },
309
+ "popups_unlock_successful_title": { "type": "string", "minLength": 1 },
310
+ "popups_unlock_successful_message": {
311
+ "type": "string",
312
+ "minLength": 1
313
+ },
314
+ "popups_unlocked_learn_help_title": {
315
+ "type": "string",
316
+ "minLength": 1
317
+ },
318
+ "popups_unlocked_learn_help_message": {
319
+ "type": "string",
320
+ "minLength": 1
321
+ },
322
+ "popups_watch_on_youtube_blurb": { "type": "string", "minLength": 1 },
323
+ "privacy_policy": { "type": "string", "minLength": 1 },
324
+ "question": { "type": "string", "minLength": 1 },
325
+ "question_dm_course": { "type": "string", "minLength": 1 },
326
+ "question_god_journey_option_1": { "type": "string", "minLength": 1 },
327
+ "question_god_journey_option_2": { "type": "string", "minLength": 1 },
328
+ "question_god_journey_option_3": { "type": "string", "minLength": 1 },
329
+ "question_god_journey_option_4": { "type": "string", "minLength": 1 },
330
+ "question_god_journey_question": { "type": "string", "minLength": 1 },
331
+ "question_hear_waha": { "type": "string", "minLength": 1 },
332
+ "question_how_familiar_bible_option_1_body": {
333
+ "type": "string",
334
+ "minLength": 1
335
+ },
336
+ "question_how_familiar_bible_option_1_title": {
337
+ "type": "string",
338
+ "minLength": 1
339
+ },
340
+ "question_how_familiar_bible_option_2_body": {
341
+ "type": "string",
342
+ "minLength": 1
343
+ },
344
+ "question_how_familiar_bible_option_2_title": {
345
+ "type": "string",
346
+ "minLength": 1
347
+ },
348
+ "question_how_familiar_bible_option_3_body": {
349
+ "type": "string",
350
+ "minLength": 1
351
+ },
352
+ "question_how_familiar_bible_option_3_title": {
353
+ "type": "string",
354
+ "minLength": 1
355
+ },
356
+ "question_how_familiar_bible_question": {
357
+ "type": "string",
358
+ "minLength": 1
359
+ },
360
+ "question_how_long_bible_option_1": {
361
+ "type": "string",
362
+ "minLength": 1
363
+ },
364
+ "question_how_long_bible_option_2": {
365
+ "type": "string",
366
+ "minLength": 1
367
+ },
368
+ "question_how_long_bible_question": {
369
+ "type": "string",
370
+ "minLength": 1
371
+ },
372
+ "rate_waha": { "type": "string", "minLength": 1 },
373
+ "recommended": { "type": "string", "minLength": 1 },
374
+ "recommended_for_you": { "type": "string", "minLength": 1 },
375
+ "remove": { "type": "string", "minLength": 1 },
376
+ "remove_download": { "type": "string", "minLength": 1 },
377
+ "report_a_problem": { "type": "string", "minLength": 1 },
378
+ "report_problem_help": { "type": "string", "minLength": 1 },
379
+ "request_passcode": { "type": "string", "minLength": 1 },
380
+ "required": { "type": "string", "minLength": 1 },
381
+ "return_home": { "type": "string", "minLength": 1 },
382
+ "save_and_close": { "type": "string", "minLength": 1 },
383
+ "search": { "type": "string", "minLength": 1 },
384
+ "search_meet": { "type": "string", "minLength": 1 },
385
+ "secondary_languages": { "type": "string", "minLength": 1 },
386
+ "security": { "type": "string", "minLength": 1 },
387
+ "security_mode": { "type": "string", "minLength": 1 },
388
+ "security_mode_blurb": { "type": "string", "minLength": 1 },
389
+ "security_onboarding_page_1_message": {
390
+ "type": "string",
391
+ "minLength": 1
392
+ },
393
+ "security_onboarding_page_1_title": {
394
+ "type": "string",
395
+ "minLength": 1
396
+ },
397
+ "security_onboarding_page_2_message": {
398
+ "type": "string",
399
+ "minLength": 1
400
+ },
401
+ "security_onboarding_page_2_title": {
402
+ "type": "string",
403
+ "minLength": 1
404
+ },
405
+ "security_onboarding_page_3_message": {
406
+ "type": "string",
407
+ "minLength": 1
408
+ },
409
+ "security_onboarding_page_3_title": {
410
+ "type": "string",
411
+ "minLength": 1
412
+ },
413
+ "security_onboarding_page_4_message": {
414
+ "type": "string",
415
+ "minLength": 1
416
+ },
417
+ "security_onboarding_page_4_title": {
418
+ "type": "string",
419
+ "minLength": 1
420
+ },
421
+ "see_help": { "type": "string", "minLength": 1 },
422
+ "select_bible": { "type": "string", "minLength": 1 },
423
+ "select_book": { "type": "string", "minLength": 1 },
424
+ "select_initial_languages_blurb": { "type": "string", "minLength": 1 },
425
+ "send_invite": { "type": "string", "minLength": 1 },
426
+ "settings": { "type": "string", "minLength": 1 },
427
+ "share": { "type": "string", "minLength": 1 },
428
+ "share_app": { "type": "string", "minLength": 1 },
429
+ "share_lesson_audio": { "type": "string", "minLength": 1 },
430
+ "share_lesson_link": { "type": "string", "minLength": 1 },
431
+ "share_lesson_text": { "type": "string", "minLength": 1 },
432
+ "share_lesson_video": { "type": "string", "minLength": 1 },
433
+ "share_passcode": { "type": "string", "minLength": 1 },
434
+ "share_story": { "type": "string", "minLength": 1 },
435
+ "share_story_text": { "type": "string", "minLength": 1 },
436
+ "share_with_group": { "type": "string", "minLength": 1 },
437
+ "sharing_messages_invite": { "type": "string", "minLength": 1 },
438
+ "sharing_messages_unlock_code": { "type": "string", "minLength": 1 },
439
+ "show_less": { "type": "string", "minLength": 1 },
440
+ "show_more": { "type": "string", "minLength": 1 },
441
+ "show_original": { "type": "string", "minLength": 1 },
442
+ "show_translation": { "type": "string", "minLength": 1 },
443
+ "skip": { "type": "string", "minLength": 1 },
444
+ "special_thanks": { "type": "string", "minLength": 1 },
445
+ "stop_casting": { "type": "string", "minLength": 1 },
446
+ "storage": { "type": "string", "minLength": 1 },
447
+ "story": { "type": "string", "minLength": 1 },
448
+ "submit": { "type": "string", "minLength": 1 },
449
+ "submitting": { "type": "string", "minLength": 1 },
450
+ "support_development": { "type": "string", "minLength": 1 },
451
+ "system": { "type": "string", "minLength": 1 },
452
+ "text": { "type": "string", "minLength": 1 },
453
+ "topics": { "type": "string", "minLength": 1 },
454
+ "trailer": { "type": "string", "minLength": 1 },
455
+ "training": { "type": "string", "minLength": 1 },
456
+ "training_video": { "type": "string", "minLength": 1 },
457
+ "translated_with_ai": { "type": "string", "minLength": 1 },
458
+ "unlock_onboarding_page_1_message": {
459
+ "type": "string",
460
+ "minLength": 1
461
+ },
462
+ "unlock_onboarding_page_1_title": { "type": "string", "minLength": 1 },
463
+ "unlock_onboarding_page_2_message": {
464
+ "type": "string",
465
+ "minLength": 1
466
+ },
467
+ "unlock_onboarding_page_2_title": { "type": "string", "minLength": 1 },
468
+ "unmatched_message": { "type": "string", "minLength": 1 },
469
+ "up_next": { "type": "string", "minLength": 1 },
470
+ "view": { "type": "string", "minLength": 1 },
471
+ "view_all": { "type": "string", "minLength": 1 },
472
+ "view_copyright": { "type": "string", "minLength": 1 },
473
+ "view_lesson_notes": { "type": "string", "minLength": 1 },
474
+ "visit_website": { "type": "string", "minLength": 1 },
475
+ "volunteer": { "type": "string", "minLength": 1 },
476
+ "waiting_to_start_download": { "type": "string", "minLength": 1 },
477
+ "watch_on_youtube": { "type": "string", "minLength": 1 },
478
+ "week": { "type": "string", "minLength": 1 },
479
+ "welcome_blurb": { "type": "string", "minLength": 1 },
480
+ "yes": { "type": "string", "minLength": 1 },
481
+ "retry": { "type": "string", "minLength": 1 },
482
+ "fetch_bible_no_internet": { "type": "string", "minLength": 1 },
483
+ "fetch_bible_error": { "type": "string", "minLength": 1 },
484
+ "language_names": {
485
+ "type": "object",
486
+ "description": "Mapping of language codes (ISO 639 or internal codes) to their localized display names",
487
+ "propertyNames": {
488
+ "pattern": "^[a-z]{3}$",
489
+ "description": "Language id (3 lowercase letters)."
490
+ },
491
+ "additionalProperties": {
492
+ "type": "string",
493
+ "minLength": 1
494
+ }
495
+ }
496
+ },
497
+ "required": [
498
+ "name",
499
+ "version",
500
+ "a11y_add_secondary_language_hint",
501
+ "a11y_article_hint",
502
+ "a11y_banner_dismiss_hint",
503
+ "a11y_bible_audio_controls_label",
504
+ "a11y_bible_translation_hint",
505
+ "a11y_bookmark_hint",
506
+ "a11y_bookmark_label",
507
+ "a11y_change_languages_hint",
508
+ "a11y_chapter_button_hint",
509
+ "a11y_choose_primary_language_hint",
510
+ "a11y_clear_passcode_hint",
511
+ "a11y_download_set_label",
512
+ "a11y_extra_controls_hint",
513
+ "a11y_extra_controls_label",
514
+ "a11y_font_size_decrement_label",
515
+ "a11y_font_size_increment_label",
516
+ "a11y_font_size_label",
517
+ "a11y_give_button_hint",
518
+ "a11y_group_help_hint",
519
+ "a11y_lesson_actions_hint",
520
+ "a11y_lesson_actions_label",
521
+ "a11y_lesson_hint",
522
+ "a11y_lesson_label",
523
+ "a11y_lesson_question_label",
524
+ "a11y_lesson_text_hint",
525
+ "a11y_mute_label",
526
+ "a11y_play_button_label",
527
+ "a11y_playback_speed_decrement_label",
528
+ "a11y_playback_speed_increment_label",
529
+ "a11y_playback_speed_label",
530
+ "a11y_radio_hint",
531
+ "a11y_remove_language_label",
532
+ "a11y_scrubber_decrement_label",
533
+ "a11y_scrubber_increment_label",
534
+ "a11y_scrubber_label",
535
+ "a11y_search_hint",
536
+ "a11y_security_mode_label",
537
+ "a11y_set_hint",
538
+ "a11y_share_lesson_label",
539
+ "a11y_tab_hint",
540
+ "a11y_video_label",
541
+ "a11y_view_bible_hint",
542
+ "a11y_view_in_progress_language_hint",
543
+ "a11y_view_launched_language_hint",
544
+ "about",
545
+ "add_language",
546
+ "all",
547
+ "all_languages",
548
+ "app_store_listing_title",
549
+ "app_store_listing_description",
550
+ "app_store_listing_screenshot_foundations",
551
+ "app_store_listing_screenshot_languages",
552
+ "app_store_listing_screenshot_learn",
553
+ "app_store_listing_screenshot_lesson",
554
+ "app_store_listing_screenshot_reviews_1",
555
+ "app_store_listing_screenshot_reviews_2",
556
+ "app_store_listing_screenshot_set",
557
+ "app_store_listing_screenshot_share",
558
+ "app_store_listing_screenshot_testimonial",
559
+ "app_store_listing_screenshot_topics",
560
+ "app_store_listing_subtitle",
561
+ "appearance",
562
+ "application",
563
+ "article_categories_65004e85fba2e8c9d281a73e",
564
+ "article_categories_65004e8eaf7c1d3f8289315a",
565
+ "article_categories_65004f8eead7951cf3c33243",
566
+ "article_categories_65005061a72598db83565c66",
567
+ "article_categories_65400527806b42d2e6ae4fd0",
568
+ "article_categories_65ca47557375e35a56523645",
569
+ "article_cta_body",
570
+ "article_cta_header",
571
+ "articles",
572
+ "audio",
573
+ "back",
574
+ "bible",
575
+ "bookmarks",
576
+ "bookmarks_description",
577
+ "bridge_language_explanation",
578
+ "calculator",
579
+ "calculator_description",
580
+ "cancel",
581
+ "cant_share_until_download",
582
+ "cast_to_tv",
583
+ "casting",
584
+ "change_chapter",
585
+ "change_languages",
586
+ "change_passcode",
587
+ "change_security_app",
588
+ "change_security_app_description",
589
+ "change_timeout",
590
+ "change_video_language",
591
+ "changing_layout_direction",
592
+ "chapter_fetching",
593
+ "chapter_not_available",
594
+ "chapter_offline",
595
+ "choose_passcode",
596
+ "clear",
597
+ "close",
598
+ "confirm",
599
+ "confirm_passcode",
600
+ "connect_to_continue",
601
+ "contact_us",
602
+ "continue",
603
+ "contribute",
604
+ "copied_to_clipboard",
605
+ "dark",
606
+ "dark_mode",
607
+ "default",
608
+ "disciple_making_course",
609
+ "dm_course_locked_blurb",
610
+ "done",
611
+ "download",
612
+ "download_app",
613
+ "download_paused",
614
+ "downloading",
615
+ "downloading_to_share",
616
+ "edit",
617
+ "email",
618
+ "enter_passcode",
619
+ "favorites",
620
+ "fellowship",
621
+ "filter_articles",
622
+ "font_size",
623
+ "foundations",
624
+ "get_started_foundations",
625
+ "get_started_training",
626
+ "give",
627
+ "give_blurb",
628
+ "give_to_language",
629
+ "got_it",
630
+ "help_tips",
631
+ "heres_whats_new",
632
+ "home",
633
+ "in_development",
634
+ "instant",
635
+ "internet_required_download",
636
+ "internet_required_download_share",
637
+ "introduction",
638
+ "language_types_app_interface",
639
+ "language_types_meet",
640
+ "language_types_meet_primary",
641
+ "language_types_meet_secondary",
642
+ "language_types_video_bridge",
643
+ "learn",
644
+ "learn_more",
645
+ "light",
646
+ "listen_to_story_again",
647
+ "loading_file_size",
648
+ "mark_complete",
649
+ "meet",
650
+ "meeting_history",
651
+ "megabyte",
652
+ "message",
653
+ "more",
654
+ "my_primary_language",
655
+ "no_connection",
656
+ "no_files_to_delete",
657
+ "no_languages_found",
658
+ "not_now",
659
+ "note_add",
660
+ "note_delete",
661
+ "note_edit",
662
+ "note_placeholder",
663
+ "note_saved",
664
+ "notes_view",
665
+ "notifications_enable",
666
+ "ok",
667
+ "passcode_set",
668
+ "piano",
669
+ "piano_description",
670
+ "playback_speed",
671
+ "popups_app_interface_help",
672
+ "popups_casting_stop_confirm",
673
+ "popups_code_request_success_message",
674
+ "popups_codes_no_match_title",
675
+ "popups_codes_no_match_message",
676
+ "popups_foundations_description_believer",
677
+ "popups_foundations_description_seeker",
678
+ "popups_group_help_title",
679
+ "popups_group_help_message",
680
+ "popups_meet_help",
681
+ "popups_notification_opt_in_title",
682
+ "popups_notification_opt_in_message",
683
+ "popups_play_help_title",
684
+ "popups_play_help_message",
685
+ "popups_remove_meeting_title",
686
+ "popups_remove_meeting_message",
687
+ "popups_submit_feedback_error_title",
688
+ "popups_submit_feedback_error_message",
689
+ "popups_submit_feedback_success_title",
690
+ "popups_submit_feedback_success_message",
691
+ "popups_topics_description",
692
+ "popups_training_description_believer",
693
+ "popups_unlock_successful_title",
694
+ "popups_unlock_successful_message",
695
+ "popups_unlocked_learn_help_title",
696
+ "popups_unlocked_learn_help_message",
697
+ "popups_watch_on_youtube_blurb",
698
+ "privacy_policy",
699
+ "question",
700
+ "question_dm_course",
701
+ "question_god_journey_option_1",
702
+ "question_god_journey_option_2",
703
+ "question_god_journey_option_3",
704
+ "question_god_journey_option_4",
705
+ "question_god_journey_question",
706
+ "question_hear_waha",
707
+ "question_how_familiar_bible_option_1_body",
708
+ "question_how_familiar_bible_option_1_title",
709
+ "question_how_familiar_bible_option_2_body",
710
+ "question_how_familiar_bible_option_2_title",
711
+ "question_how_familiar_bible_option_3_body",
712
+ "question_how_familiar_bible_option_3_title",
713
+ "question_how_familiar_bible_question",
714
+ "question_how_long_bible_option_1",
715
+ "question_how_long_bible_option_2",
716
+ "question_how_long_bible_question",
717
+ "rate_waha",
718
+ "recommended",
719
+ "recommended_for_you",
720
+ "remove",
721
+ "remove_download",
722
+ "report_a_problem",
723
+ "report_problem_help",
724
+ "request_passcode",
725
+ "required",
726
+ "return_home",
727
+ "save_and_close",
728
+ "search",
729
+ "search_meet",
730
+ "secondary_languages",
731
+ "security",
732
+ "security_mode",
733
+ "security_mode_blurb",
734
+ "security_onboarding_page_1_message",
735
+ "security_onboarding_page_1_title",
736
+ "security_onboarding_page_2_message",
737
+ "security_onboarding_page_2_title",
738
+ "security_onboarding_page_3_message",
739
+ "security_onboarding_page_3_title",
740
+ "security_onboarding_page_4_message",
741
+ "security_onboarding_page_4_title",
742
+ "see_help",
743
+ "select_bible",
744
+ "select_book",
745
+ "select_initial_languages_blurb",
746
+ "send_invite",
747
+ "settings",
748
+ "share",
749
+ "share_app",
750
+ "share_lesson_audio",
751
+ "share_lesson_link",
752
+ "share_lesson_text",
753
+ "share_lesson_video",
754
+ "share_passcode",
755
+ "share_story",
756
+ "share_story_text",
757
+ "share_with_group",
758
+ "sharing_messages_invite",
759
+ "sharing_messages_unlock_code",
760
+ "show_less",
761
+ "show_more",
762
+ "show_original",
763
+ "show_translation",
764
+ "skip",
765
+ "special_thanks",
766
+ "stop_casting",
767
+ "storage",
768
+ "story",
769
+ "submit",
770
+ "submitting",
771
+ "support_development",
772
+ "system",
773
+ "text",
774
+ "topics",
775
+ "trailer",
776
+ "training",
777
+ "training_video",
778
+ "translated_with_ai",
779
+ "unlock_onboarding_page_1_message",
780
+ "unlock_onboarding_page_1_title",
781
+ "unlock_onboarding_page_2_message",
782
+ "unlock_onboarding_page_2_title",
783
+ "unmatched_message",
784
+ "up_next",
785
+ "view",
786
+ "view_all",
787
+ "view_copyright",
788
+ "view_lesson_notes",
789
+ "visit_website",
790
+ "volunteer",
791
+ "waiting_to_start_download",
792
+ "watch_on_youtube",
793
+ "week",
794
+ "welcome_blurb",
795
+ "yes",
796
+ "language_names",
797
+ "retry",
798
+ "fetch_bible_no_internet",
799
+ "fetch_bible_error"
800
+ ]
801
+ }
802
+ }