@4alldigital/foundation-ui--core 3.0.0

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 (470) hide show
  1. package/LICENSE.txt +21 -0
  2. package/package.json +35 -0
  3. package/src/__mocks__/_examples/cnbc.ts +146 -0
  4. package/src/__mocks__/_examples/nrg.ts +222 -0
  5. package/src/__mocks__/empty-module.js +0 -0
  6. package/src/__mocks__/fileMock.js +3 -0
  7. package/src/__mocks__/fileTransformer.js +8 -0
  8. package/src/__mocks__/mockSearchData.js +511 -0
  9. package/src/__mocks__/nrglogo.svg +74 -0
  10. package/src/__mocks__/styleMock.js +3 -0
  11. package/src/__mocks__/tempPolyFills.js +5 -0
  12. package/src/components/Accordion/Accordion.stories.tsx +33 -0
  13. package/src/components/Accordion/Accordion.tsx +53 -0
  14. package/src/components/Accordion/Accordion.types.ts +8 -0
  15. package/src/components/Accordion/index.ts +1 -0
  16. package/src/components/AnimationCounter/AnimationCounter.stories.tsx +22 -0
  17. package/src/components/AnimationCounter/AnimationCounter.tsx +51 -0
  18. package/src/components/AnimationCounter/AnimationCounter.types.ts +10 -0
  19. package/src/components/AnimationCounter/index.ts +1 -0
  20. package/src/components/AnimationSet1/AnimationSet1.stories.tsx +36 -0
  21. package/src/components/AnimationSet1/AnimationSet1.tsx +107 -0
  22. package/src/components/AnimationSet1/AnimationSet1.types.ts +12 -0
  23. package/src/components/AnimationSet1/index.ts +1 -0
  24. package/src/components/Authenticator/Authenticator.stories.tsx +37 -0
  25. package/src/components/Authenticator/Authenticator.tsx +84 -0
  26. package/src/components/Authenticator/Authenticator.types.ts +7 -0
  27. package/src/components/Authenticator/index.ts +1 -0
  28. package/src/components/Avatar/Avatar.stories.tsx +26 -0
  29. package/src/components/Avatar/Avatar.tsx +88 -0
  30. package/src/components/Avatar/Avatar.types.ts +8 -0
  31. package/src/components/Avatar/index.ts +1 -0
  32. package/src/components/Banner/Banner.stories.tsx +59 -0
  33. package/src/components/Banner/Banner.tsx +60 -0
  34. package/src/components/Banner/Banner.types.ts +9 -0
  35. package/src/components/Banner/index.ts +1 -0
  36. package/src/components/Blockquote/Blockquote.stories.tsx +20 -0
  37. package/src/components/Blockquote/Blockquote.tsx +32 -0
  38. package/src/components/Blockquote/Blockquote.types.ts +8 -0
  39. package/src/components/Blockquote/index.ts +1 -0
  40. package/src/components/Button/Button.stories.tsx +50 -0
  41. package/src/components/Button/Button.tsx +117 -0
  42. package/src/components/Button/Button.types.ts +43 -0
  43. package/src/components/Button/index.ts +1 -0
  44. package/src/components/ButtonGroup/ButtonGroup.stories.tsx +59 -0
  45. package/src/components/ButtonGroup/ButtonGroup.tsx +35 -0
  46. package/src/components/ButtonGroup/ButtonGroup.types.ts +5 -0
  47. package/src/components/ButtonGroup/index.ts +1 -0
  48. package/src/components/Calendar/Calendar.stories.tsx +100 -0
  49. package/src/components/Calendar/Calendar.tsx +91 -0
  50. package/src/components/Calendar/Calendar.types.ts +10 -0
  51. package/src/components/Calendar/index.ts +2 -0
  52. package/src/components/Card/Card.stories.tsx +487 -0
  53. package/src/components/Card/Card.tsx +32 -0
  54. package/src/components/Card/Card.types.ts +79 -0
  55. package/src/components/Card/constants/index.ts +8 -0
  56. package/src/components/Card/index.ts +1 -0
  57. package/src/components/Card/types/CardBasic/CardBasic.tsx +262 -0
  58. package/src/components/Card/types/CardBasic/CardBasic.types.ts +7 -0
  59. package/src/components/Card/types/CardBasic/index.ts +1 -0
  60. package/src/components/Card/types/CardData/CardData.tsx +68 -0
  61. package/src/components/Card/types/CardData/CardData.types.ts +21 -0
  62. package/src/components/Card/types/CardData/index.ts +1 -0
  63. package/src/components/Card/types/CardHorz/CardHorz.tsx +80 -0
  64. package/src/components/Card/types/CardHorz/CardHorz.types.ts +8 -0
  65. package/src/components/Card/types/CardHorz/index.ts +1 -0
  66. package/src/components/Card/types/CardIcon/CardIcon.tsx +76 -0
  67. package/src/components/Card/types/CardIcon/CardIcon.types.ts +8 -0
  68. package/src/components/Card/types/CardIcon/index.ts +1 -0
  69. package/src/components/Card/types/CardMedia/CardMedia.tsx +277 -0
  70. package/src/components/Card/types/CardMedia/CardMedia.types.ts +5 -0
  71. package/src/components/Card/types/CardMedia/index.ts +1 -0
  72. package/src/components/Card/types/CardVideo/CardVideo.tsx +262 -0
  73. package/src/components/Card/types/CardVideo/CardVideo.types.ts +11 -0
  74. package/src/components/Card/types/CardVideo/index.ts +1 -0
  75. package/src/components/CardGrid/CardGrid.stories.tsx +122 -0
  76. package/src/components/CardGrid/CardGrid.tsx +25 -0
  77. package/src/components/CardGrid/CardGrid.types.ts +7 -0
  78. package/src/components/CardGrid/index.ts +1 -0
  79. package/src/components/Carousel/Carousel.stories.tsx +351 -0
  80. package/src/components/Carousel/Carousel.tsx +174 -0
  81. package/src/components/Carousel/Carousel.types.ts +32 -0
  82. package/src/components/Carousel/MIGRATION.md +156 -0
  83. package/src/components/Carousel/index.ts +1 -0
  84. package/src/components/Cart/Cart.stories.tsx +92 -0
  85. package/src/components/Cart/Cart.tsx +194 -0
  86. package/src/components/Cart/Cart.types.ts +4 -0
  87. package/src/components/Cart/index.ts +1 -0
  88. package/src/components/Checkbox/Checkbox.stories.tsx +18 -0
  89. package/src/components/Checkbox/Checkbox.tsx +38 -0
  90. package/src/components/Checkbox/Checkbox.types.ts +15 -0
  91. package/src/components/Checkbox/index.ts +1 -0
  92. package/src/components/Chip/Chip.stories.tsx +37 -0
  93. package/src/components/Chip/Chip.tsx +104 -0
  94. package/src/components/Chip/Chip.types.ts +13 -0
  95. package/src/components/Chip/index.ts +1 -0
  96. package/src/components/Collapsible/Collapsible.stories.tsx +139 -0
  97. package/src/components/Collapsible/Collapsible.tsx +75 -0
  98. package/src/components/Collapsible/Collapsible.types.ts +14 -0
  99. package/src/components/Collapsible/index.ts +3 -0
  100. package/src/components/Container/Container.stories.tsx +17 -0
  101. package/src/components/Container/Container.tsx +51 -0
  102. package/src/components/Container/Container.types.ts +17 -0
  103. package/src/components/Container/index.ts +1 -0
  104. package/src/components/ContentPageLayout/ContentPageLayout.stories.tsx +17 -0
  105. package/src/components/ContentPageLayout/ContentPageLayout.tsx +38 -0
  106. package/src/components/ContentPageLayout/ContentPageLayout.types.ts +17 -0
  107. package/src/components/ContentPageLayout/index.ts +1 -0
  108. package/src/components/ContentRowsLayout/ContentRowsLayout.stories.tsx +19 -0
  109. package/src/components/ContentRowsLayout/ContentRowsLayout.tsx +30 -0
  110. package/src/components/ContentRowsLayout/ContentRowsLayout.types.ts +15 -0
  111. package/src/components/ContentRowsLayout/index.ts +1 -0
  112. package/src/components/Copy/Copy.stories.tsx +28 -0
  113. package/src/components/Copy/Copy.tsx +43 -0
  114. package/src/components/Copy/Copy.types.tsx +53 -0
  115. package/src/components/Copy/index.tsx +1 -0
  116. package/src/components/DisplayHeading/DisplayHeading.stories.tsx +17 -0
  117. package/src/components/DisplayHeading/DisplayHeading.tsx +43 -0
  118. package/src/components/DisplayHeading/DisplayHeading.types.ts +8 -0
  119. package/src/components/DisplayHeading/index.ts +1 -0
  120. package/src/components/FileUpload/FileUpload.stories.tsx +18 -0
  121. package/src/components/FileUpload/FileUpload.tsx +41 -0
  122. package/src/components/FileUpload/FileUpload.types.ts +9 -0
  123. package/src/components/FileUpload/index.ts +1 -0
  124. package/src/components/Footer/Footer.stories.tsx +17 -0
  125. package/src/components/Footer/Footer.tsx +78 -0
  126. package/src/components/Footer/Footer.types.ts +4 -0
  127. package/src/components/Footer/index.ts +1 -0
  128. package/src/components/Form/Form.stories.tsx +81 -0
  129. package/src/components/Form/Form.tsx +98 -0
  130. package/src/components/Form/Form.types.ts +34 -0
  131. package/src/components/Form/index.ts +1 -0
  132. package/src/components/FormField/FormField.stories.tsx +205 -0
  133. package/src/components/FormField/FormField.tsx +258 -0
  134. package/src/components/FormField/FormField.types.ts +89 -0
  135. package/src/components/FormField/index.ts +1 -0
  136. package/src/components/FormSelect/FormSelect.stories.tsx +27 -0
  137. package/src/components/FormSelect/FormSelect.tsx +46 -0
  138. package/src/components/FormSelect/FormSelect.types.ts +45 -0
  139. package/src/components/FormSelect/index.ts +1 -0
  140. package/src/components/FullContentBackgroundImage/FullContentBackgroundImage.stories.tsx +18 -0
  141. package/src/components/FullContentBackgroundImage/FullContentBackgroundImage.tsx +26 -0
  142. package/src/components/FullContentBackgroundImage/FullContentBackgroundImage.types.ts +6 -0
  143. package/src/components/FullContentBackgroundImage/index.ts +1 -0
  144. package/src/components/FullScreenVideoModal/FullScreenVideoModal.stories.tsx +34 -0
  145. package/src/components/FullScreenVideoModal/FullScreenVideoModal.tsx +41 -0
  146. package/src/components/FullScreenVideoModal/FullScreenVideoModal.types.ts +9 -0
  147. package/src/components/FullScreenVideoModal/index.ts +1 -0
  148. package/src/components/Header/Header.stories.tsx +51 -0
  149. package/src/components/Header/Header.tsx +170 -0
  150. package/src/components/Header/Header.types.ts +11 -0
  151. package/src/components/Header/index.ts +1 -0
  152. package/src/components/Heading/Heading.stories.tsx +57 -0
  153. package/src/components/Heading/Heading.tsx +47 -0
  154. package/src/components/Heading/Heading.types.ts +35 -0
  155. package/src/components/Heading/index.ts +1 -0
  156. package/src/components/Hero/Hero.stories.tsx +17 -0
  157. package/src/components/Hero/Hero.tsx +28 -0
  158. package/src/components/Hero/Hero.types.ts +17 -0
  159. package/src/components/Hero/index.ts +1 -0
  160. package/src/components/Hr/Hr.stories.tsx +13 -0
  161. package/src/components/Hr/Hr.tsx +16 -0
  162. package/src/components/Hr/Hr.types.ts +3 -0
  163. package/src/components/Hr/index.ts +1 -0
  164. package/src/components/HtmlContent/HtmlContent.stories.tsx +29 -0
  165. package/src/components/HtmlContent/HtmlContent.tsx +36 -0
  166. package/src/components/HtmlContent/HtmlContent.types.ts +6 -0
  167. package/src/components/HtmlContent/index.ts +1 -0
  168. package/src/components/Icon/Icon.stories.tsx +26 -0
  169. package/src/components/Icon/Icon.tsx +24 -0
  170. package/src/components/Icon/Icon.types.ts +8 -0
  171. package/src/components/Icon/index.ts +2 -0
  172. package/src/components/Image/Image.stories.tsx +32 -0
  173. package/src/components/Image/Image.tsx +71 -0
  174. package/src/components/Image/Image.types.ts +20 -0
  175. package/src/components/Image/index.ts +1 -0
  176. package/src/components/Label/Label.stories.tsx +18 -0
  177. package/src/components/Label/Label.tsx +17 -0
  178. package/src/components/Label/Label.types.ts +9 -0
  179. package/src/components/Label/index.ts +1 -0
  180. package/src/components/Link/Link.stories.tsx +25 -0
  181. package/src/components/Link/Link.tsx +85 -0
  182. package/src/components/Link/Link.types.ts +14 -0
  183. package/src/components/Link/index.ts +1 -0
  184. package/src/components/List/List.stories.tsx +38 -0
  185. package/src/components/List/List.tsx +17 -0
  186. package/src/components/List/List.types.ts +27 -0
  187. package/src/components/List/index.ts +1 -0
  188. package/src/components/ListItem/ListItem.stories.tsx +61 -0
  189. package/src/components/ListItem/ListItem.tsx +53 -0
  190. package/src/components/ListItem/ListItem.types.ts +10 -0
  191. package/src/components/ListItem/index.ts +1 -0
  192. package/src/components/Loader/Loader.stories.tsx +17 -0
  193. package/src/components/Loader/Loader.tsx +34 -0
  194. package/src/components/Loader/Loader.types.ts +5 -0
  195. package/src/components/Loader/index.ts +1 -0
  196. package/src/components/Logo/Logo.stories.tsx +17 -0
  197. package/src/components/Logo/Logo.tsx +17 -0
  198. package/src/components/Logo/Logo.types.ts +6 -0
  199. package/src/components/Logo/index.ts +1 -0
  200. package/src/components/Menu/Menu.stories.tsx +37 -0
  201. package/src/components/Menu/Menu.tsx +45 -0
  202. package/src/components/Menu/Menu.types.ts +15 -0
  203. package/src/components/Menu/index.ts +1 -0
  204. package/src/components/Notice/Notice.stories.tsx +49 -0
  205. package/src/components/Notice/Notice.tsx +63 -0
  206. package/src/components/Notice/Notice.types.ts +11 -0
  207. package/src/components/Notice/index.ts +1 -0
  208. package/src/components/OTPInput/OTPInput.stories.tsx +18 -0
  209. package/src/components/OTPInput/OTPInput.tsx +80 -0
  210. package/src/components/OTPInput/OTPInput.types.ts +8 -0
  211. package/src/components/OTPInput/index.ts +1 -0
  212. package/src/components/PanelCards/PanelCards.stories.tsx +125 -0
  213. package/src/components/PanelCards/PanelCards.tsx +81 -0
  214. package/src/components/PanelCards/PanelCards.types.ts +11 -0
  215. package/src/components/PanelCards/index.ts +1 -0
  216. package/src/components/PanelCustom/PanelCustom.stories.tsx +18 -0
  217. package/src/components/PanelCustom/PanelCustom.tsx +39 -0
  218. package/src/components/PanelCustom/PanelCustom.types.ts +20 -0
  219. package/src/components/PanelCustom/index.ts +1 -0
  220. package/src/components/PanelFeature/PanelFeature.stories.tsx +46 -0
  221. package/src/components/PanelFeature/PanelFeature.tsx +83 -0
  222. package/src/components/PanelFeature/PanelFeature.types.ts +27 -0
  223. package/src/components/PanelFeature/index.ts +1 -0
  224. package/src/components/PanelHero/PanelHero.stories.tsx +126 -0
  225. package/src/components/PanelHero/PanelHero.tsx +184 -0
  226. package/src/components/PanelHero/PanelHero.types.ts +19 -0
  227. package/src/components/PanelHero/index.ts +1 -0
  228. package/src/components/PanelIntro/PanelIntro.stories.tsx +38 -0
  229. package/src/components/PanelIntro/PanelIntro.tsx +139 -0
  230. package/src/components/PanelIntro/PanelIntro.types.ts +19 -0
  231. package/src/components/PanelIntro/index.ts +1 -0
  232. package/src/components/PanelProduct/PanelProduct.stories.tsx +24 -0
  233. package/src/components/PanelProduct/PanelProduct.tsx +87 -0
  234. package/src/components/PanelProduct/PanelProduct.types.ts +14 -0
  235. package/src/components/PanelProduct/index.ts +1 -0
  236. package/src/components/PanelScroller/PanelScroller.stories.tsx +81 -0
  237. package/src/components/PanelScroller/PanelScroller.tsx +58 -0
  238. package/src/components/PanelScroller/PanelScroller.types.ts +8 -0
  239. package/src/components/PanelScroller/index.ts +1 -0
  240. package/src/components/PanelVideo/PanelVideo.stories.tsx +42 -0
  241. package/src/components/PanelVideo/PanelVideo.tsx +81 -0
  242. package/src/components/PanelVideo/PanelVideo.types.ts +11 -0
  243. package/src/components/PanelVideo/index.ts +1 -0
  244. package/src/components/Radio/Radio.stories.tsx +24 -0
  245. package/src/components/Radio/Radio.tsx +44 -0
  246. package/src/components/Radio/Radio.types.ts +13 -0
  247. package/src/components/Radio/index.ts +1 -0
  248. package/src/components/Schedule/Schedule.stories.tsx +96 -0
  249. package/src/components/Schedule/Schedule.tsx +118 -0
  250. package/src/components/Schedule/Schedule.types.ts +64 -0
  251. package/src/components/Schedule/index.ts +1 -0
  252. package/src/components/ScheduleItem/ScheduleItem.stories.tsx +21 -0
  253. package/src/components/ScheduleItem/ScheduleItem.tsx +77 -0
  254. package/src/components/ScheduleItem/ScheduleItem.types.ts +8 -0
  255. package/src/components/ScheduleItem/index.ts +1 -0
  256. package/src/components/Screen/Screen.stories.tsx +27 -0
  257. package/src/components/Screen/Screen.tsx +63 -0
  258. package/src/components/Screen/Screen.types.ts +16 -0
  259. package/src/components/Screen/index.ts +1 -0
  260. package/src/components/ShadcnButton/ShadcnButton.tsx +57 -0
  261. package/src/components/ShadcnButton/index.ts +2 -0
  262. package/src/components/ShadcnCarousel/ShadcnCarousel.tsx +261 -0
  263. package/src/components/ShadcnCarousel/index.ts +9 -0
  264. package/src/components/Share/Share.stories.tsx +17 -0
  265. package/src/components/Share/Share.tsx +60 -0
  266. package/src/components/Share/Share.types.ts +12 -0
  267. package/src/components/Share/index.ts +1 -0
  268. package/src/components/SubscriptionManager/SubscriptionManager.stories.tsx +177 -0
  269. package/src/components/SubscriptionManager/SubscriptionManager.tsx +369 -0
  270. package/src/components/SubscriptionManager/SubscriptionManager.types.ts +36 -0
  271. package/src/components/SubscriptionManager/index.ts +1 -0
  272. package/src/components/Switch/Switch.stories.tsx +20 -0
  273. package/src/components/Switch/Switch.tsx +30 -0
  274. package/src/components/Switch/Switch.types.ts +7 -0
  275. package/src/components/Switch/index.ts +1 -0
  276. package/src/components/Tabs/Tabs.stories.tsx +34 -0
  277. package/src/components/Tabs/Tabs.tsx +42 -0
  278. package/src/components/Tabs/Tabs.types.ts +8 -0
  279. package/src/components/Tabs/index.ts +1 -0
  280. package/src/components/TextInput/TextInput.stories.tsx +18 -0
  281. package/src/components/TextInput/TextInput.tsx +78 -0
  282. package/src/components/TextInput/TextInput.types.ts +81 -0
  283. package/src/components/TextInput/index.ts +1 -0
  284. package/src/components/Video/Video.stories.tsx +75 -0
  285. package/src/components/Video/Video.tsx +280 -0
  286. package/src/components/Video/Video.types.ts +147 -0
  287. package/src/components/Video/index.ts +1 -0
  288. package/src/components/VisitUs/VisitUs.stories.tsx +32 -0
  289. package/src/components/VisitUs/VisitUs.tsx +56 -0
  290. package/src/components/VisitUs/VisitUs.types.ts +13 -0
  291. package/src/components/VisitUs/index.ts +1 -0
  292. package/src/components/index.ts +143 -0
  293. package/src/constants/index.ts +6 -0
  294. package/src/context/Amplify/index.tsx +65 -0
  295. package/src/context/App/index.tsx +93 -0
  296. package/src/context/Cart/index.tsx +64 -0
  297. package/src/context/ExampleContext/index.tsx +34 -0
  298. package/src/context/Theme/index.tsx +37 -0
  299. package/src/context/index.ts +18 -0
  300. package/src/features/Search/Search.stories.tsx +395 -0
  301. package/src/features/Search/Search.tsx +204 -0
  302. package/src/features/Search/Search.types.ts +41 -0
  303. package/src/features/Search/config/config-helper.ts +219 -0
  304. package/src/features/Search/index.ts +1 -0
  305. package/src/features/Search/view-helpers/appendClassName.ts +14 -0
  306. package/src/features/Search/view-helpers/formatResult.ts +97 -0
  307. package/src/features/Search/view-helpers/getFilterValueDisplay.ts +10 -0
  308. package/src/features/Search/view-helpers/getUrlSanitizer.ts +23 -0
  309. package/src/features/Search/view-helpers/index.ts +4 -0
  310. package/src/features/Search/views/Layout/Layout.tsx +50 -0
  311. package/src/features/Search/views/Layout/Layout.types.ts +13 -0
  312. package/src/features/Search/views/Layout/index.ts +1 -0
  313. package/src/features/Search/views/MultiCheckboxFacet/MultiCheckboxFacet.tsx +85 -0
  314. package/src/features/Search/views/MultiCheckboxFacet/MultiCheckboxFacet.types.ts +5 -0
  315. package/src/features/Search/views/MultiCheckboxFacet/index.ts +1 -0
  316. package/src/features/Search/views/Paging/Paging.tsx +35 -0
  317. package/src/features/Search/views/Paging/Paging.types.ts +24 -0
  318. package/src/features/Search/views/Paging/index.ts +1 -0
  319. package/src/features/Search/views/PagingInfo/PagingInfo.tsx +34 -0
  320. package/src/features/Search/views/PagingInfo/PagingInfo.types.ts +26 -0
  321. package/src/features/Search/views/PagingInfo/index.ts +1 -0
  322. package/src/features/Search/views/Result/Result.tsx +84 -0
  323. package/src/features/Search/views/Result/Result.types.ts +47 -0
  324. package/src/features/Search/views/Result/index.ts +1 -0
  325. package/src/features/Search/views/Results/Results.tsx +16 -0
  326. package/src/features/Search/views/Results/Results.types.ts +24 -0
  327. package/src/features/Search/views/Results/index.ts +1 -0
  328. package/src/features/Search/views/ResultsPerPage/ResultsPerPage.tsx +32 -0
  329. package/src/features/Search/views/ResultsPerPage/ResultsPerPage.types.ts +26 -0
  330. package/src/features/Search/views/ResultsPerPage/index.ts +1 -0
  331. package/src/features/Search/views/SearchBox/SearchBox.tsx +51 -0
  332. package/src/features/Search/views/SearchBox/SearchBox.types.ts +10 -0
  333. package/src/features/Search/views/SearchBox/index.ts +1 -0
  334. package/src/features/Search/views/Sidebar/Sidebar.tsx +14 -0
  335. package/src/features/Search/views/Sidebar/Sidebar.types.ts +3 -0
  336. package/src/features/Search/views/Sidebar/index.ts +1 -0
  337. package/src/features/Search/views/SingleLinksFacet/SingleLinksFacet.tsx +62 -0
  338. package/src/features/Search/views/SingleLinksFacet/SingleLinksFacet.types.ts +5 -0
  339. package/src/features/Search/views/SingleLinksFacet/index.ts +1 -0
  340. package/src/features/Search/views/SingleSelectFacet/SingleSelectFacet.tsx +34 -0
  341. package/src/features/Search/views/SingleSelectFacet/SingleSelectFacet.types.ts +5 -0
  342. package/src/features/Search/views/SingleSelectFacet/index.ts +1 -0
  343. package/src/features/Search/views/Sorting/Sorting.tsx +24 -0
  344. package/src/features/Search/views/Sorting/Sorting.types.ts +25 -0
  345. package/src/features/Search/views/Sorting/index.ts +1 -0
  346. package/src/features/index.ts +11 -0
  347. package/src/forms/ForgotPasswordForm/ForgotPasswordForm.stories.tsx +19 -0
  348. package/src/forms/ForgotPasswordForm/ForgotPasswordForm.tsx +28 -0
  349. package/src/forms/ForgotPasswordForm/ForgotPasswordForm.types.ts +3 -0
  350. package/src/forms/ForgotPasswordForm/index.ts +1 -0
  351. package/src/forms/LoginForm/LoginForm.stories.tsx +67 -0
  352. package/src/forms/LoginForm/LoginForm.tsx +112 -0
  353. package/src/forms/LoginForm/LoginForm.types.ts +7 -0
  354. package/src/forms/LoginForm/index.ts +1 -0
  355. package/src/forms/ProfileForm/ProfileForm.stories.tsx +23 -0
  356. package/src/forms/ProfileForm/ProfileForm.tsx +40 -0
  357. package/src/forms/ProfileForm/ProfileForm.types.ts +6 -0
  358. package/src/forms/ProfileForm/index.ts +1 -0
  359. package/src/forms/PromoCodeForm/PromoCodeForm.stories.tsx +19 -0
  360. package/src/forms/PromoCodeForm/PromoCodeForm.tsx +22 -0
  361. package/src/forms/PromoCodeForm/PromoCodeForm.types.ts +4 -0
  362. package/src/forms/PromoCodeForm/index.ts +1 -0
  363. package/src/forms/RegisterForm/RegisterForm.stories.tsx +85 -0
  364. package/src/forms/RegisterForm/RegisterForm.tsx +108 -0
  365. package/src/forms/RegisterForm/RegisterForm.types.ts +6 -0
  366. package/src/forms/RegisterForm/index.ts +1 -0
  367. package/src/forms/ResetPasswordAuthForm/ResetPasswordAuthForm.stories.tsx +23 -0
  368. package/src/forms/ResetPasswordAuthForm/ResetPasswordAuthForm.tsx +39 -0
  369. package/src/forms/ResetPasswordAuthForm/ResetPasswordAuthForm.types.ts +3 -0
  370. package/src/forms/ResetPasswordAuthForm/index.ts +1 -0
  371. package/src/forms/ResetPasswordForm/ResetPasswordForm.stories.tsx +23 -0
  372. package/src/forms/ResetPasswordForm/ResetPasswordForm.tsx +30 -0
  373. package/src/forms/ResetPasswordForm/ResetPasswordForm.types.ts +3 -0
  374. package/src/forms/ResetPasswordForm/index.ts +1 -0
  375. package/src/forms/SubscriptionForm/SubscriptionForm.stories.tsx +31 -0
  376. package/src/forms/SubscriptionForm/SubscriptionForm.tsx +46 -0
  377. package/src/forms/SubscriptionForm/SubscriptionForm.types.ts +6 -0
  378. package/src/forms/SubscriptionForm/index.ts +1 -0
  379. package/src/forms/constants/index.ts +13 -0
  380. package/src/forms/index.ts +17 -0
  381. package/src/forms/validations/index.ts +39 -0
  382. package/src/hooks/index.ts +2 -0
  383. package/src/hooks/useLanguage.ts +18 -0
  384. package/src/hooks/useTheme.ts +6 -0
  385. package/src/index.ts +8 -0
  386. package/src/react-app-env.d.ts +1 -0
  387. package/src/setupTests.ts +5 -0
  388. package/src/templates/AccountScreen/AccountScreen.stories.tsx +67 -0
  389. package/src/templates/AccountScreen/AccountScreen.tsx +78 -0
  390. package/src/templates/AccountScreen/AccountScreen.types.ts +31 -0
  391. package/src/templates/AccountScreen/index.ts +1 -0
  392. package/src/templates/AuthScreen/AuthScreen.stories.tsx +33 -0
  393. package/src/templates/AuthScreen/AuthScreen.tsx +21 -0
  394. package/src/templates/AuthScreen/AuthScreen.types.ts +8 -0
  395. package/src/templates/AuthScreen/index.ts +1 -0
  396. package/src/templates/CardGridScreen/CardGridScreen.stories.tsx +95 -0
  397. package/src/templates/CardGridScreen/CardGridScreen.tsx +43 -0
  398. package/src/templates/CardGridScreen/CardGridScreen.types.ts +11 -0
  399. package/src/templates/CardGridScreen/index.ts +1 -0
  400. package/src/templates/CatalogueScreen/CatalogueScreen.stories.tsx +31 -0
  401. package/src/templates/CatalogueScreen/CatalogueScreen.tsx +21 -0
  402. package/src/templates/CatalogueScreen/CatalogueScreen.types.ts +8 -0
  403. package/src/templates/CatalogueScreen/index.ts +1 -0
  404. package/src/templates/ChallengeLibraryScreen/ChallengeLibraryScreen.stories.tsx +171 -0
  405. package/src/templates/ChallengeLibraryScreen/ChallengeLibraryScreen.tsx +36 -0
  406. package/src/templates/ChallengeLibraryScreen/ChallengeLibraryScreen.types.ts +9 -0
  407. package/src/templates/ChallengeLibraryScreen/index.ts +1 -0
  408. package/src/templates/ChallengeScreen/ChallengeScreen.stories.tsx +65 -0
  409. package/src/templates/ChallengeScreen/ChallengeScreen.tsx +88 -0
  410. package/src/templates/ChallengeScreen/ChallengeScreen.types.ts +22 -0
  411. package/src/templates/ChallengeScreen/index.ts +1 -0
  412. package/src/templates/ContentScreen/ContentScreen.stories.tsx +71 -0
  413. package/src/templates/ContentScreen/ContentScreen.tsx +55 -0
  414. package/src/templates/ContentScreen/ContentScreen.types.ts +9 -0
  415. package/src/templates/ContentScreen/index.ts +1 -0
  416. package/src/templates/DashboardScreen/DashboardScreen.stories.tsx +490 -0
  417. package/src/templates/DashboardScreen/DashboardScreen.tsx +156 -0
  418. package/src/templates/DashboardScreen/DashboardScreen.types.ts +28 -0
  419. package/src/templates/DashboardScreen/index.ts +1 -0
  420. package/src/templates/FAQScreen/FAQScreen.stories.tsx +278 -0
  421. package/src/templates/FAQScreen/FAQScreen.tsx +32 -0
  422. package/src/templates/FAQScreen/FAQScreen.types.ts +14 -0
  423. package/src/templates/FAQScreen/index.ts +1 -0
  424. package/src/templates/HomeScreen/HomeScreen.stories.tsx +315 -0
  425. package/src/templates/HomeScreen/HomeScreen.tsx +50 -0
  426. package/src/templates/HomeScreen/HomeScreen.types.ts +23 -0
  427. package/src/templates/HomeScreen/index.ts +1 -0
  428. package/src/templates/LogoutScreen/LogoutScreen.stories.tsx +20 -0
  429. package/src/templates/LogoutScreen/LogoutScreen.tsx +25 -0
  430. package/src/templates/LogoutScreen/LogoutScreen.types.ts +4 -0
  431. package/src/templates/LogoutScreen/index.ts +1 -0
  432. package/src/templates/MenuScreen/MenuScreen.stories.tsx +36 -0
  433. package/src/templates/MenuScreen/MenuScreen.tsx +32 -0
  434. package/src/templates/MenuScreen/MenuScreen.types.ts +11 -0
  435. package/src/templates/MenuScreen/index.ts +1 -0
  436. package/src/templates/NotFoundScreen/NotFoundScreen.stories.tsx +20 -0
  437. package/src/templates/NotFoundScreen/NotFoundScreen.tsx +31 -0
  438. package/src/templates/NotFoundScreen/NotFoundScreen.types.ts +5 -0
  439. package/src/templates/NotFoundScreen/index.ts +1 -0
  440. package/src/templates/PasswordResetAuthScreen/PasswordResetAuthScreen.stories.tsx +27 -0
  441. package/src/templates/PasswordResetAuthScreen/PasswordResetAuthScreen.tsx +20 -0
  442. package/src/templates/PasswordResetAuthScreen/PasswordResetAuthScreen.types.ts +6 -0
  443. package/src/templates/PasswordResetAuthScreen/index.ts +1 -0
  444. package/src/templates/PasswordResetScreen/PasswordResetScreen.stories.tsx +22 -0
  445. package/src/templates/PasswordResetScreen/PasswordResetScreen.tsx +19 -0
  446. package/src/templates/PasswordResetScreen/PasswordResetScreen.types.ts +6 -0
  447. package/src/templates/PasswordResetScreen/index.ts +1 -0
  448. package/src/templates/ProfileScreen/ProfileScreen.stories.tsx +41 -0
  449. package/src/templates/ProfileScreen/ProfileScreen.tsx +30 -0
  450. package/src/templates/ProfileScreen/ProfileScreen.types.ts +24 -0
  451. package/src/templates/ProfileScreen/index.ts +1 -0
  452. package/src/templates/ScheduleScreen/ScheduleScreen.stories.tsx +174 -0
  453. package/src/templates/ScheduleScreen/ScheduleScreen.tsx +29 -0
  454. package/src/templates/ScheduleScreen/ScheduleScreen.types.ts +9 -0
  455. package/src/templates/ScheduleScreen/index.ts +1 -0
  456. package/src/templates/SubscriptionScreen/SubscriptionScreen.stories.tsx +98 -0
  457. package/src/templates/SubscriptionScreen/SubscriptionScreen.tsx +49 -0
  458. package/src/templates/SubscriptionScreen/SubscriptionScreen.types.ts +28 -0
  459. package/src/templates/SubscriptionScreen/index.ts +1 -0
  460. package/src/templates/WorkoutScreen/WorkoutScreen.stories.tsx +173 -0
  461. package/src/templates/WorkoutScreen/WorkoutScreen.tsx +230 -0
  462. package/src/templates/WorkoutScreen/WorkoutScreen.types.ts +34 -0
  463. package/src/templates/WorkoutScreen/index.ts +1 -0
  464. package/src/templates/index.ts +40 -0
  465. package/src/translations/en.ts +777 -0
  466. package/src/translations/fr.ts +182 -0
  467. package/src/translations/index.ts +2 -0
  468. package/src/utils/htmlParser/index.tsx +22 -0
  469. package/src/utils/index.ts +38 -0
  470. package/src/utils/parseDuration/index.ts +94 -0
@@ -0,0 +1,777 @@
1
+ const strings = {
2
+ GLOBAL: {
3
+ SCREENS: {
4
+ ACCOUNT: {
5
+ TITLE: 'Account',
6
+ },
7
+ CATALOGUE_LIST: {
8
+ TITLE: 'Catalogue',
9
+ },
10
+ CHALLENGE: {
11
+ TITLE: 'Challenge',
12
+ NOT_ENTERED_IN_CHALLENGE: 'You are not entered in this challenge yet.',
13
+ CLICK_TO_ENTER: 'Click the buy button below to enter the challenge.',
14
+ PAYMENT_NOTE:
15
+ 'Please note we automatically take payment from the registered payment option saved on your profile.',
16
+ },
17
+ CHALLENGES_LIST: {
18
+ TITLE: 'Challenges',
19
+ },
20
+ DASHBOARD: {
21
+ TITLE: 'Dashboard',
22
+ },
23
+ LIVE_SCHEDULE: {
24
+ TITLE: 'Live',
25
+ },
26
+ LOGIN: {
27
+ TITLE: 'Login',
28
+ },
29
+ REGISTER: {
30
+ TITLE: 'Register',
31
+ },
32
+ REGISTER_LONGFORM: {
33
+ TITLE: 'Register',
34
+ },
35
+ PROFILE: {
36
+ TITLE: 'Profile',
37
+ },
38
+ SUBSCRIPTION: {
39
+ TITLE: 'Subscription',
40
+ },
41
+ WORKOUT: {
42
+ TITLE: 'Workout',
43
+ },
44
+ FORGOT_PASSWORD: {
45
+ TITLE: 'Forgot Password',
46
+ },
47
+ RESET_PASSWORD: {
48
+ TITLE: 'Reset Password',
49
+ },
50
+ HOME: {
51
+ TITLE: 'Home',
52
+ },
53
+ CATALOGUE: {
54
+ TITLE: 'Catalogue',
55
+ },
56
+ CHALLENGES: {
57
+ TITLE: 'Challenges',
58
+ },
59
+ LIVE: {
60
+ TITLE: 'Live',
61
+ },
62
+ SCHEDULE: {
63
+ TITLE: 'Schedule',
64
+ },
65
+ SETTINGS: {
66
+ TITLE: 'Settings',
67
+ },
68
+ FAQS: {
69
+ TITLE: 'Frequently Asked Questions',
70
+ },
71
+ HELP: {
72
+ TITLE: 'Help',
73
+ },
74
+ LEGAL_INFO: {
75
+ TITLE: 'Legal & Information',
76
+ },
77
+ CONTENT: {
78
+ TITLE: 'Content',
79
+ },
80
+ FAVOURITES: {
81
+ TITLE: 'Favourites',
82
+ },
83
+ ORDERS: {
84
+ TITLE: 'Orders',
85
+ },
86
+ ORDER: {
87
+ TITLE: 'Order',
88
+ },
89
+ DOWNLOADS: {
90
+ TITLE: 'Downloads',
91
+ },
92
+ },
93
+ },
94
+ FORMS: {
95
+ LOGIN_FORM: {
96
+ TITLE: 'Login',
97
+ SUBMIT: 'Login',
98
+ FORGOT_PASSWORD: 'Forgot password?',
99
+ REGISTER: 'Register',
100
+ EMAIL: 'Email',
101
+ PASSWORD: 'Password',
102
+ },
103
+ REGISTER_FORM: {
104
+ TITLE: 'Register',
105
+ SUBMIT: 'Register',
106
+ EMAIL: 'Email',
107
+ PASSWORD: 'Password',
108
+ PASSWORD_DESCRIPTION:
109
+ 'Password must be at least 8 characters long and contain at least one number, one uppercase letter, one lowercase letter, and one special character.',
110
+ },
111
+ FORGOT_PASSWORD_FORM: {
112
+ TITLE: 'Forgot Password',
113
+ SUBMIT: 'Send Reset Email',
114
+ EMAIL: 'Email',
115
+ },
116
+ RESET_PASSWORD_FORM: {
117
+ TITLE: 'Reset Password',
118
+ SUBMIT: 'Reset Password',
119
+ PASSWORD: 'Password',
120
+ CONFIRM_PASSWORD: 'Confirm Password',
121
+ },
122
+ RESET_PASSWORD_FORM_AUTH: {
123
+ TITLE: 'Reset Password',
124
+ SUBMIT: 'Reset Password',
125
+ CURRENT_PASSWORD: 'Current Password',
126
+ NEW_PASSWORD: 'New Password',
127
+ },
128
+ PROFILE_FORM: {
129
+ TITLE: 'Profile',
130
+ SUBMIT: 'Save',
131
+ FIRST_NAME: 'First Name',
132
+ LAST_NAME: 'Last Name',
133
+ AVATAR: 'Avatar',
134
+ EMAIL: 'Email',
135
+ PASSWORD: 'Password',
136
+ PASSWORD_DESCRIPTION:
137
+ 'Password must be at least 8 characters long and contain at least one number, one uppercase letter, one lowercase letter, and one special character.',
138
+ },
139
+ ACCOUNT: {
140
+ SUBMIT_LABEL: 'Update',
141
+ EMAIL_LABEL: 'Email',
142
+ PASSWORD_LABEL: 'Password',
143
+ FIRST_NAME_LABEL: 'First name',
144
+ LAST_NAME_LABEL: 'Last name',
145
+ DOB_LABEL: 'Date of birth',
146
+ TERMS_AND_CONDITIONS_LABEL: 'Terms & Conditions',
147
+ TERMS_AND_CONDITIONS_DESCRIPTION: 'Read our terms & conditions from the link in the footer. ',
148
+ CONTACT_PREFERENCES_LABEL: 'Yes/No',
149
+ CONTACT_PREFERENCES_DESCRIPTION: 'Happy for us to email you about the latest features, information and offers?',
150
+ SKIP_LABEL: 'Skip step',
151
+ SUCCESS_MESSAGE: 'Account updated',
152
+ SUBSCRIPTION_STATUS_LABEL: 'Subscription status',
153
+ SUBSCRIPTION_PLAN_LABEL: 'Plan',
154
+ SUBSCRIPTION_PRICE_LABEL: 'Price (£)',
155
+ SUBSCRIPTION_BILLING_DATE_LABEL: 'Next Billing Date',
156
+ SUBSCRIPTION_PAYMENT_TYPE_LABEL: 'Card Type',
157
+ SUBSCRIPTION_CARD_NUMBER_LABEL: 'Card Number',
158
+ SUBSCRIPTION_CARD_EXPIRY_LABEL: 'Card Expiry Date',
159
+ SUBSCRIPTION_LAST_UPDATED_LABEL: 'Last Updated',
160
+ COMPANY_NAME_LABEL: 'Company name',
161
+ AGENCY_COMPANY_LABEL: 'Agency Name',
162
+ AGENCY_COMPANY_DESCRIPTION: 'If you are an Agency, please write the name of the company you are purchasing for',
163
+ AGENCY_LABEL: 'If you are an Agency please check this box',
164
+ COMPANY_VAT: 'VAT Registration number',
165
+ PRIVACY_LABEL: 'I agree to the CNBC Media Hub {privacy} , {terms} and {supplementTerms}',
166
+ COMPANY_NAME_DESCRIPTION: 'Please enter your company name or N/A.',
167
+ },
168
+ PROMO_CODE_FORM: {
169
+ TITLE: 'Promo Code',
170
+ SUBMIT: 'Apply',
171
+ PROMO_CODE: 'Promo Code',
172
+ },
173
+ PAYMENT_FORM: {
174
+ NAME: 'Full Name',
175
+ PHONE: 'Phone Number (incl country code eg. +44)',
176
+ EMAIL: 'Email',
177
+ EMAIL_CONFIRM: 'Confirm Email',
178
+ BILLING_LINE_1: 'Line 1',
179
+ BILLING_CITY: 'City',
180
+ BILLING_COUNTRY: 'Country',
181
+ BILLING_POST_CODE: 'Post Code',
182
+ TERMS_LABEL: 'Terms & Conditions',
183
+ PAYMENT_CARD: 'Pay with card',
184
+ PROMO_LABEL: 'Promo code',
185
+ COMPANY_VAT: 'VAT Registration number',
186
+ },
187
+ },
188
+ VALIDATION: {
189
+ UNKNOWN_SUBMISSION_ERROR: 'Sorry, something bad happened! Please try again later.',
190
+ REQUIRED_FIELD: 'Required',
191
+ TOO_SHORT: 'Must be at least {count}',
192
+ TOO_LONG: "Sorry, that's too long",
193
+ INVALID_EMAIL: "Oops that email address doesn't look quite right",
194
+ LOGIN_DENIED: 'Your username and password do not match our records',
195
+ LOGIN_ERROR: 'Sorry something went wrong, please try again later',
196
+ ACCOUNT_FIRST_NAME: 'We need to know your name for ongoing communication',
197
+ ACCOUNT_LAST_NAME: 'We need to know your full name for your orders and if you need to contact support',
198
+ CHARACTERS_ONLY: 'You can only use letters',
199
+ PASSWORD_DESCRIPTION:
200
+ 'Password must be between {count} and 30 characters and contain at least 1 uppercase, 1 lowercase, 1 number and a symbol (eg. @$%).',
201
+ PASSWORD_CASE_MESSAGE: 'Password must have one capital letter',
202
+ PASSWORD_LOWERCASE_MESSAGE: 'Password must have one lowercase letter',
203
+ PASSWORD_LENGTH_MESSAGE: 'Password must be at least 8 characters',
204
+ PASSWORD_NUMERIC_MESSAGE: 'Password must have at least one number',
205
+ PASSWORD_SPECIAL_MESSAGE: 'Password must have at least one special character (eg. @$%)',
206
+ AUTH_API_ERROR: 'An account with the given email already exists.: Conflict',
207
+ AUTH_ACCOUNT_EXISTS_MESSAGE: 'An account with the given email already exists. Please sign in',
208
+ },
209
+ CURRENCIES: {
210
+ USD: 'USD',
211
+ GBP: 'GBP',
212
+ EUR: 'EUR',
213
+ AUD: 'AUD',
214
+ CAD: 'CAD',
215
+ NZD: 'NZD',
216
+ JPY: 'JPY',
217
+ CNY: 'CNY',
218
+ INR: 'INR',
219
+ RUB: 'RUB',
220
+ ZAR: 'ZAR',
221
+ BRL: 'BRL',
222
+ MXN: 'MXN',
223
+ ARS: 'ARS',
224
+ CLP: 'CLP',
225
+ COP: 'COP',
226
+ PEN: 'PEN',
227
+ VEF: 'VEF',
228
+ UYU: 'UYU',
229
+ BOB: 'BOB',
230
+ PYG: 'PYG',
231
+ DOP: 'DOP',
232
+ GTQ: 'GTQ',
233
+ HNL: 'HNL',
234
+ NIO: 'NIO',
235
+ CRC: 'CRC',
236
+ SVC: 'SVC',
237
+ BZD: 'BZD',
238
+ BSD: 'BSD',
239
+ JMD: 'JMD',
240
+ KYD: 'KYD',
241
+ TTD: 'TTD',
242
+ XCD: 'XCD',
243
+ ANG: 'ANG',
244
+ AWG: 'AWG',
245
+ BBD: 'BBD',
246
+ BMD: 'BMD',
247
+ BND: 'BND',
248
+ FJD: 'FJD',
249
+ GYD: 'GYD',
250
+ LRD: 'LRD',
251
+ NAD: 'NAD',
252
+ PGK: 'PGK',
253
+ SBD: 'SBD',
254
+ SRD: 'SRD',
255
+ TWD: 'TWD',
256
+ VUV: 'VUV',
257
+ WST: 'WST',
258
+ KHR: 'KHR',
259
+ LAK: 'LAK',
260
+ MMK: 'MMK',
261
+ MOP: 'MOP',
262
+ MVR: 'MVR',
263
+ NPR: 'NPR',
264
+ PKR: 'PKR',
265
+ PHP: 'PHP',
266
+ SCR: 'SCR',
267
+ LKR: 'LKR',
268
+ THB: 'THB',
269
+ IDR: 'IDR',
270
+ MYR: 'MYR',
271
+ SGD: 'SGD',
272
+ KRW: 'KRW',
273
+ KZT: 'KZT',
274
+ UZS: 'UZ',
275
+ },
276
+ UI: {
277
+ NEXT_WEEKS_CLASS: 'Next weeks class',
278
+ SHOW: 'Show',
279
+ NO_IMAGE: 'No image',
280
+ UPLOAD: 'Upload',
281
+ SAVE: 'Save',
282
+ CANCEL: 'Cancel',
283
+ DELETE: 'Delete',
284
+ PLEASE_WAIT: 'Please wait...',
285
+ CONTINUE_WITH_SOCIAL: 'Continue with Social Account',
286
+ SINGLE_SIGNON: 'Single Sign-On',
287
+ LOGIN_WITH_GOOGLE: 'Login with Google',
288
+ LOGIN_WITH_APPLE: 'Login with Apple',
289
+ SIGNUP_WITH_GOOGLE: 'Signup with Google',
290
+ SIGNUP_WITH_APPLE: 'Signup with Apple',
291
+ BACK_TO_LOGIN: 'Back to Login',
292
+ FORGOT_PASSWORD: 'Forgot Password?',
293
+ SUBMIT: 'Submit',
294
+ LOGIN: 'Login',
295
+ LOGOUT: 'Logout',
296
+ REGISTER: 'Register',
297
+ SOCIAL: {
298
+ GOOGLE: 'Google',
299
+ FACEBOOK: 'Facebook',
300
+ TWITTER: 'Twitter',
301
+ EMAIL: 'Email',
302
+ },
303
+ READ_MORE: 'Read more',
304
+ READ_LESS: 'Show less',
305
+ CLOSE: 'Close',
306
+ BACK: 'Back',
307
+ SHARE: 'Share',
308
+ DOWNLOAD: 'Download',
309
+ DOWNLOADS: 'Downloads',
310
+ ALL_DOWNLOADS: 'All Downloads',
311
+ NO_DOWNLOADS: 'No Downloads',
312
+ DELETE_DOWNLOAD: 'Delete Download',
313
+ DELETE_DOWNLOADS: 'Delete All Downloads',
314
+ DELETE_DOWNLOADS_CONFIRM: 'Are you sure you want to delete all downloads?',
315
+ FORMAT_HOUR: '{hour}hr',
316
+ FORMAT_HOURS: '{hours}hrs',
317
+ FORMAT_MINUTE: '{minute}min',
318
+ FORMAT_MINUTES: '{minutes}mins',
319
+ LOAD_MORE_LABEL: 'Load more',
320
+ NO_MORE_RESULTS: "That's all folks.",
321
+ UNKNOWN_ERROR_TITLE: 'Unknown error',
322
+ UNKNOWN_ERROR_MESSAGE: 'Sorry, something bad happened! Please try again.',
323
+ CONTENT_SORT_TITLE: 'Sort by',
324
+ CONTENT_FILTERS_TITLE: 'Filters',
325
+ CONTENT_FILTERS_LABEL: 'Filter',
326
+ CLOSE_FILTERS_LABEL: 'Done',
327
+ CLEAR_ALL_FILTERS_LABEL: 'Clear All',
328
+ CLEAR_FILTERS_LABEL: 'Clear',
329
+ MORE_ITEMS_LABEL: 'Next items',
330
+ PREVIOUS_ITEMS_LABEL: 'Previous items',
331
+ CHOOSE_BTN_LABEL: 'Choose',
332
+ ADD_BTN_LABEL: 'Add',
333
+ SEND_BTN_LABEL: 'Send',
334
+ CANCEL_BTN_LABEL: 'Cancel',
335
+ DONE_BTN_LABEL: 'Done',
336
+ EDIT_BTN_LABEL: 'Edit',
337
+ CHANGE_BTN_LABEL: 'Change',
338
+ REMOVE_BTN_LABEL: 'Remove',
339
+ MESSAGE_PROMPT_BTN_LABEL: 'Add one',
340
+ SELECT_FILE_BTN_LABEL: 'Select file',
341
+ TOO_MANY_REQUESTS_MESSAGE: 'Too many requests. Please try again later.',
342
+ COPYRIGHT: 'Copyright',
343
+ ALL_RIGHTS_RESERVED: 'All rights reserved',
344
+ APP_CAMERA_PERMISSION: 'Camera permission',
345
+ APP_CAMERA_PERMISSION_DENIED: 'Camera permission denied',
346
+ APP_NEED_ACCESS_CAMERA: 'This app needs access to your camera',
347
+ ASK_ME_LATER: 'Ask me later',
348
+ PRIVACY_POLICY: 'Privacy Policy',
349
+ CREATE_ACCOUNT: 'Create account',
350
+ COMPLETE: 'Complete',
351
+ EDIT: 'Edit',
352
+ PREV: 'Prev',
353
+ NEXT: 'Next',
354
+ GET_STARTED: 'Get started',
355
+ START_SEARCH: 'Start search',
356
+ READ_MORE_LABEL: 'Read more',
357
+ READ_LESS_LABEL: 'Show less',
358
+ CLOSE_LABEL: 'Close',
359
+ CLOSE_HINT: 'Close this entry',
360
+ BACK_LABEL: 'Back',
361
+ SHARE_LABEL: 'Share',
362
+ VIEW_MORE_LABEL: 'View more',
363
+ VIEW_LESS_LABEL: 'View less',
364
+ GOT_IT: 'Got it',
365
+ MORE: 'More',
366
+ MORE_DETAILS: 'More details',
367
+ MORE_INFO: 'More info',
368
+ LEARN_MORE: 'Learn more',
369
+ LOW: 'Low',
370
+ MEDIUM: 'Medium',
371
+ HIGH: 'High',
372
+ VERY_HIGH: 'Very high',
373
+ VERY_LOW: 'Very low',
374
+ GOOD: 'Good',
375
+ BAD: 'Bad',
376
+ STRONG: 'Strong',
377
+ SAVE_CONTINUE: 'Save and Continue',
378
+ SAVE_FINISH: 'Save and Finish',
379
+ FINISH: 'Finish',
380
+ SKIP: 'Skip',
381
+ ADD: 'Add',
382
+ ADDED: 'Added',
383
+ ADD_ANOTHER: 'Add another',
384
+ CREATE_PROFILE: 'Create profile',
385
+ CONTINUE_NO_ACCOUNT: 'Continue without account',
386
+ REQUIRED_MISSING: 'Required field missing',
387
+ RESET: 'Reset',
388
+ APPLY_FILTER: 'Apply filter',
389
+ START: 'Start',
390
+ END: 'End',
391
+ HELP: 'Help',
392
+ WHAT_IS_THIS: 'What is this?',
393
+ CARD_VIEW: 'Card view',
394
+ LIST_VIEW: 'List view',
395
+ FILTER: 'Filter',
396
+ NO_RESULTS: 'No results',
397
+ CONTINUE: 'Continue',
398
+ CONTINUE_BROWSING: 'Continue browsing',
399
+ VIEW: 'View',
400
+ INFORMATION: 'Information',
401
+ DELETE_HINT: 'Delete this entry',
402
+ VISIT_WEBSITE: 'Visit website',
403
+ TAKE_AGAIN: 'Take again',
404
+ ADD_MORE: 'Add more',
405
+ REQUEST_SENT: 'Request sent',
406
+ CUSTOMISE: 'Customize',
407
+ SET_LOCATION: 'Set location',
408
+ COUNTY_NOT_FOUND: 'County not found',
409
+ NO_RESOURCES_FOUND: 'No resources found',
410
+ PATHWAY: 'Pathway',
411
+ CLICK_TO_NAVIGATE: 'Click to navigate',
412
+ INPUT_FIELD: 'Input field',
413
+ GO_BACK: 'Go back',
414
+ NAVIGATES_PREV: 'Navigates to the previous screen',
415
+ REMOVE: 'Remove',
416
+ NO_INTERNET_CONNECTION: 'No internet connection',
417
+ CHECK_CONNECTION: 'Please check your internet connection and try again.',
418
+ EXPLORE: 'Explore',
419
+ NO_ACCOUNT: 'No account?',
420
+ START_WORKOUT: 'Start workout',
421
+ START_MEDIA: 'Start media',
422
+ LAUNCH: 'Launch',
423
+ PUBLISHED: 'Published',
424
+ CREATED: 'Created',
425
+ UPDATED: 'Updated',
426
+ DURATION: 'Duration',
427
+ LEVEL: 'Level',
428
+ SECTION: 'Section',
429
+ DOWNLOADING: 'Downloading',
430
+ DOWNLOAD_COMPLETE: 'Download complete',
431
+ DOWNLOAD_FAILED: 'Download failed',
432
+ DOWNLOAD_CANCELLED: 'Download cancelled',
433
+ DOWNLOADING_MEDIA: 'Downloading media',
434
+ DOWNLOADING_MEDIA_FAILED: 'Downloading media failed',
435
+ DOWNLOADING_MEDIA_CANCELLED: 'Downloading media cancelled',
436
+ DOWNLOADING_MEDIA_COMPLETE: 'Downloading media complete',
437
+ DOWNLOADING_MEDIA_CANCEL: 'Cancel download',
438
+ DOWNLOADING_MEDIA_RETRY: 'Retry download',
439
+ DOWNLOADING_MEDIA_PAUSE: 'Pause download',
440
+ DOWNLOADING_MEDIA_RESUME: 'Resume download',
441
+ DOWNLOADING_MEDIA_CONTINUE: 'Continue download',
442
+ DOWNLOADING_MEDIA_START: 'Start download',
443
+ DOWNLOADING_MEDIA_CONFIRM: 'Confirm download',
444
+ DOWNLOAD_REMOVED: 'Download removed',
445
+ DOWNLOAD_REMOVE_ERROR: 'Error removing download',
446
+ CATEGORY: 'Category',
447
+ TYPE: 'Type',
448
+ WORKOUT_TYPE: 'Workout type',
449
+ MEDIA_TYPE: 'Media type',
450
+ WORKOUT: 'Workout',
451
+ MEDIA: 'Media',
452
+ WORKOUTS: 'Workouts',
453
+ WORKOUT_CATEGORY: 'Workout category',
454
+ MEDIA_CATEGORY: 'Media category',
455
+ ADDED_LIKE: 'Added like',
456
+ REMOVED_LIKE: 'Removed like',
457
+ ADDED_FAVORITE: 'Added favorite',
458
+ REMOVED_FAVORITE: 'Removed favorite',
459
+ ADDED_BOOKMARK: 'Added bookmark',
460
+ REMOVED_BOOKMARK: 'Removed bookmark',
461
+ ADDED_WATCHLIST: 'Added watchlist',
462
+ REMOVED_WATCHLIST: 'Removed watchlist',
463
+ ADDED_PLAYLIST: 'Added playlist',
464
+ REMOVED_PLAYLIST: 'Removed playlist',
465
+ ADDED_SUBSCRIPTION: 'Added subscription',
466
+ REMOVED_SUBSCRIPTION: 'Removed subscription',
467
+ ADDED_FOLLOW: 'Added follow',
468
+ REMOVED_FOLLOW: 'Removed follow',
469
+ ADDED_FRIEND: 'Added friend',
470
+ REMOVED_FRIEND: 'Removed friend',
471
+ ADDED_CONNECTION: 'Added connection',
472
+ REMOVED_CONNECTION: 'Removed connection',
473
+ MARKED_COMPLETE: 'Marked complete',
474
+ MARKED_INCOMPLETE: 'Marked incomplete',
475
+ MUSIC_ENABLED: 'Music enabled',
476
+ MUSIC_DISABLED: 'Music disabled',
477
+ SHARED: 'Shared',
478
+ NOT_ENTERED_IN_CHALLENGE: 'You are not entered in this challenge yet.',
479
+ ACCESS_RESTRICTED: 'Access restricted',
480
+ PURCHASE_TO_ACCESS: 'Purchase to access',
481
+ SHOW_FILTERS: 'Show filters',
482
+ HIDE_FILTERS: 'Hide filters',
483
+ THIS_WEEK: 'This week',
484
+ TODAYS_ITEMS: "Today's items",
485
+ START_TRIAL_LABEL: 'Start Free Trial',
486
+ START_WORKOUTS_LABEL: 'Start Workouts Now',
487
+ UPDATE_LABEL: 'Update now',
488
+ SESSION_EXPIRED: 'Session expired. Please log in.',
489
+ NO_VALID_SUB: 'No valid subscription found. Please subscribe or contact us if you believe this is an error.',
490
+ SUBSCRIPTION_ERROR: "There's a problem with your account. No valid subscription found.",
491
+ SUCCESS: 'Success',
492
+ UPLOAD_IMAGE: 'Upload Image',
493
+ UPLOAD_VIDEO: 'Upload Video',
494
+ UPLOAD_AUDIO: 'Upload Audio',
495
+ UPLOAD_DOCUMENT: 'Upload Document',
496
+ UPLOAD_MEDIA: 'Upload Media',
497
+ UPLOAD_MEDIA_FILE: 'Upload Media File',
498
+ UPLOAD_SUCCESS: 'Upload successful',
499
+ UPLOAD_FAILED: 'Upload failed',
500
+ UPLOADING: 'Uploading',
501
+ SHARE_DESCRIPTION: 'Share this with your friends',
502
+ SHARE_TITLE: 'Share',
503
+ ALREADY_RATED: 'You have already rated this',
504
+ RATE: 'Rate',
505
+ VERSION: 'Version',
506
+ APP_VERSION: 'App Version',
507
+ WELCOME: 'Welcome',
508
+ LATEST_WORKOUTS: 'Latest Workouts',
509
+ RECENTLY_VIEWED: 'Recently Viewed',
510
+ RECENTLY_ADDED: 'Recently Added',
511
+ RECENTLY_COMPLETED: 'Recently Completed',
512
+ WORKOUTS_LIKED: 'Workouts Liked',
513
+ WORKOUTS_FAVORITED: 'Workouts Favorited',
514
+ WORKOUTS_BOOKMARKED: 'Workouts Bookmarked',
515
+ WORKOUTS_COMPLETED: 'Workouts Completed',
516
+ WORKOUTS_DONE: 'Workouts Done',
517
+ LIKED: 'Liked',
518
+ FAVORITED: 'Favorited',
519
+ BOOKMARKED: 'Bookmarked',
520
+ COMPLETED: 'Completed',
521
+ DONE: 'Done',
522
+ STATS: 'Stats',
523
+ STATISTICS: 'Statistics',
524
+ ACTIVITY: 'Activity',
525
+ RECENT_ACTIVITY: 'Recent Activity',
526
+ NEWS: 'News',
527
+ UPDATES: 'Updates',
528
+ LATEST_NEWS: 'Latest News',
529
+ WHATS_NEW: "What's New",
530
+ OUR_FEATURE: "Our Feature",
531
+ WHATS_NEWS: "What's News",
532
+ GOOD_MORNING: 'Good Morning',
533
+ GOOD_AFTERNOON: 'Good Afternoon',
534
+ GOOD_EVENING: 'Good Evening',
535
+ NO_CLASS: 'No class',
536
+ RELATED: 'Related',
537
+ RELATED_WORKOUTS: 'Related Workouts',
538
+ RELATED_CHALLENGES: 'Related Challenges',
539
+ RELATED_VIDEOS: 'Related Videos',
540
+ RELATED_MEDIA: 'Related Media',
541
+ CHALLENGES_ENTERED: 'Challenges Entered',
542
+ UPGRADE_TO_PREMIUM_PLUS: 'Upgrade to Premium+',
543
+ UPGRADE_TO_PREMIUM_PLUS_ACCESS_LIVE: 'Upgrade to Premium+ for unlimited access to the live streamed classes',
544
+ UPGRADE_TO_PREMIUM: 'Upgrade to Premium',
545
+ PUSH_NOTIFICATIONS: 'Push Notifications',
546
+ PUSH_NOTIFICATIONS_ENABLED: 'Push notifications enabled',
547
+ PUSH_NOTIFICATIONS_DISABLED: 'Push notifications disabled',
548
+ EMAIL_NOTIFICATIONS: 'Email Notifications',
549
+ EMAIL_NOTIFICATIONS_ENABLED: 'Email notifications enabled',
550
+ EMAIL_NOTIFICATIONS_DISABLED: 'Email notifications disabled',
551
+ SMS_NOTIFICATIONS: 'SMS Notifications',
552
+ SMS_NOTIFICATIONS_ENABLED: 'SMS notifications enabled',
553
+ SMS_NOTIFICATIONS_DISABLED: 'SMS notifications disabled',
554
+ NOTIFICATIONS: 'Notifications',
555
+ PUSH_NOTIFICATIONS_DESCRIPTION: 'Receive push notifications for new content and updates',
556
+ EMAIL_NOTIFICATIONS_DESCRIPTION: 'Receive email notifications for new content and updates',
557
+ SMS_NOTIFICATIONS_DESCRIPTION: 'Receive SMS notifications for new content and updates',
558
+ OPEN_SETTINGS: 'Open settings',
559
+ NOTIFICATION_SETTINGS: 'Notification settings',
560
+ NOTIFICATION_SETTINGS_DESCRIPTION: 'Manage your notification settings',
561
+ CAMERA_ACCESS: 'Camera access',
562
+ CAMERA_PERMISSION_DENIED: 'Camera permission denied',
563
+ CAMERA_PERMISSION_REQUIRED: 'Camera permission required',
564
+ CAMERA_PERMISSION_DESCRIPTION: 'Allow access to your camera to take a profile picture and personalize your account',
565
+ DISABLE_PERMISSION_IN_SETTINGS: 'You can disable in main system settings',
566
+ DARK_MODE: 'Dark mode',
567
+ LIGHT_MODE: 'Light mode',
568
+ SYSTEM_MODE: 'System mode',
569
+ DARK_MODE_ENABLED: 'Dark mode enabled',
570
+ LIGHT_MODE_ENABLED: 'Light mode enabled',
571
+ SYSTEM_MODE_ENABLED: 'System mode enabled',
572
+ DARK_MODE_DESCRIPTION: 'Enable dark mode for better viewing experience',
573
+ LIGHT_MODE_DESCRIPTION: 'Enable light mode for better viewing experience',
574
+ SYSTEM_MODE_DESCRIPTION: 'Enable system mode for better viewing experience',
575
+ REQUEST_INFO: 'Request info',
576
+ REQUEST_INFORMATION: 'Request information',
577
+ GET_INFO: 'Get info',
578
+ GET_IN_TOUCH: 'Get in touch',
579
+ CONTACT_US: 'Contact us',
580
+ ERROR: 'Error',
581
+ LAST_UPDATED: 'Last updated',
582
+ NO_UPDATES: 'No updates',
583
+ RATED: 'Rated',
584
+ RATE_SUCCESS: 'Rating successful',
585
+ RATE_FAILED: 'Rating failed',
586
+ RATE_CANCELLED: 'Rating cancelled',
587
+ QUESTION: 'Question',
588
+ QUESTION_ABOUT_SUBSCRIPTION: 'Question about subscription',
589
+ LOGOUT_SUCCESS: 'Logout successful',
590
+ NO_ACTIVE_SUBSCRIPTION: 'No active subscription',
591
+ SUBSCRIPTION_EXPIRED: 'Subscription expired',
592
+ NO_SUBSCRIPTION_DETAILS:
593
+ 'You currently do not have an active subscription. If you believe this is an error, please contact our support team for assistance.',
594
+ PASSWORD_RESET_SUCCESS: 'Password reset successful',
595
+ REGISTRATION_SUCCESS: 'Registration successful',
596
+ REQUIRED_DATA_MISSING: 'Required data missing',
597
+ PASSWORD_EMAIL_SENT: 'Password reset email sent',
598
+ MISSING_QUERY_PARAMS: 'Missing query parameters',
599
+ CHALLENGE_ENTRY_SUCCESS: "You've successfully entered the challenge",
600
+ RESET_PASSWORD: 'Reset password',
601
+ CURRENT_SUBSCRIPTION: 'Current subscription',
602
+ MANAGE_SUBSCRIPTION: 'Manage subscription',
603
+ CURRENT_PLAN: 'Current plan',
604
+ NEXT_BILLING_DATE: 'Next billing date',
605
+ END_DATE: 'End date',
606
+ SUBSCRIPTION_STATUS: 'Subscription status',
607
+ SUBSCRIPTION_PLAN: 'Plan',
608
+ SUBSCRIPTION_PRICE: 'Price',
609
+ BILLED_MONTHLY: 'Billed monthly',
610
+ ALL_SUBS_BILLED_MONTHLY: 'All subscriptions are billed monthly',
611
+ CHANGE_PLAN: 'Change plan',
612
+ PAUSE_SUBSCRIPTION: 'Pause subscription',
613
+ CONFIRM_TO_PAUSE: 'Are you sure you want to pause your subscription?',
614
+ CONFIRM_TO_SUBMIT: 'Confirm to submit',
615
+ CONFIRM_TO_CHANGE_PLAN: 'Are you sure you want to change your plan?',
616
+ ARE_YOU_SURE: 'Are you sure?',
617
+ ARE_YOU_SURE_TO_DO_THIS: 'Are you sure you want to do this?',
618
+ YES: 'Yes',
619
+ NO: 'No',
620
+ PAGE_NOT_FOUND: 'Page not found',
621
+ PAGE_NOT_FOUND_MESSAGE: 'The page you are looking for does not exist',
622
+ PAGE_NOT_FOUND_OOPS: 'Oops! We cant find that page.',
623
+ PAGE_NOT_FOUND_MESSAGE_OOPS:
624
+ 'It seems you’ve wandered off the beaten path. Don’t worry, it happens to the best of us!',
625
+ WHAT_CAN_YOU_DO: 'What can you do?',
626
+ DOUBLE_CHECK_URL: 'Double-check the URL for any typos',
627
+ RETURN_TO_HOMEPAGE: 'Return to our homepage',
628
+ EXPLORE_SITE: 'Explore our site map to find what you’re looking for.',
629
+ STILL_NEED_HELP: 'If you still need help, feel free to contact us. We’re here to help!',
630
+ SUBSCRIPTON_UPDATED_SUCCESS: 'Subscription updated successfully',
631
+ SUBSCRIPTON_UPDATED_FAILED: 'Subscription update failed',
632
+ SELECT_A_PLAN: 'Select a plan',
633
+ CONFIRM_CHOICE: 'Confirm choice',
634
+ PROVIDE_PAYMENT_DETAILS: 'Please provide your payment details',
635
+ SUBSCRIPTON_TRIALING: 'Your subscription is currently in trial',
636
+ NEED_HELP_WITH_SUBSCRIPTION: 'Need help with your subscription? eg. updating payment details',
637
+ CONTACT_SUPPORT: 'Contact support',
638
+ REGISTRATION_EMAIL_SENT: 'Registration email sent',
639
+ VERIFY_EMAIL: 'Registration email sent. Please verify your email account to login.',
640
+ VERIFICATION_SUCCESS: 'Verification successful',
641
+ SUBSCRIBE: 'Subscribe now',
642
+ NO_DATA_FOUND: 'No data found',
643
+ NO_DATA: 'No data',
644
+ NO_WORKOUTS: 'No workouts',
645
+ NO_MEDIA: 'No media',
646
+ NO_CHALLENGES: 'No challenges',
647
+ NO_LIVE: 'No live classes',
648
+ NO_SCHEDULE: 'No schedule',
649
+ NO_CONTENT: 'No content',
650
+ PROMO_INFO: 'Promo info',
651
+ REQUEST_PROMO_INFO: 'Request promotion info',
652
+ LOGGING_OUT: 'Logging out',
653
+ LAUNCH_PLAYBACK: 'Launch playback',
654
+ WATCH_NOW: 'Watch now',
655
+ PLAY_NOW: 'Play now',
656
+ WATCH_LIVE: 'Watch live',
657
+ PLAY_LIVE: 'Play live',
658
+ WATCH: 'Watch',
659
+ PLAY: 'Play',
660
+ VIEW_ALL: 'View all',
661
+ VIEW_MORE: 'View more',
662
+ VIEW_LESS: 'View less',
663
+ VIEW_DETAILS: 'View details',
664
+ CONTINUE_SHOPPING: 'Continue shopping',
665
+ CHECKOUT: 'Checkout',
666
+ TOTAL: 'Total',
667
+ TAX: 'Tax',
668
+ TAX_DUE: 'Tax due',
669
+ PROMO_CODE: 'Promo code',
670
+ EMPTY: 'Empty',
671
+ ORDERING: 'Ordering',
672
+ DESCRIPTION: 'Description',
673
+ PRICE: 'Price',
674
+ QUANTITY: 'Quantity',
675
+ SUBTOTAL: 'Subtotal',
676
+ SHIPPING: 'Shipping',
677
+ SHIPPING_ADDRESS: 'Shipping address',
678
+ BILLING_ADDRESS: 'Billing address',
679
+ PAYMENT: 'Payment',
680
+ PAYMENT_METHOD: 'Payment method',
681
+ PAYMENT_DETAILS: 'Payment details',
682
+ PAYMENT_SUCCESS: 'Payment successful',
683
+ PAYMENT_FAILED: 'Payment failed',
684
+ PAYMENT_CANCELLED: 'Payment cancelled',
685
+ PAYMENT_PENDING: 'Payment pending',
686
+ PAYMENT_PROCESSING: 'Payment processing',
687
+ PAYMENT_CONFIRM: 'Confirm payment',
688
+ PAYMENT_CONFIRMATION: 'Payment confirmation',
689
+ PAYMENT_CONFIRMED: 'Payment confirmed',
690
+ PAYMENT_COMPLETE: 'Payment complete',
691
+ PAYMENT_INCOMPLETE: 'Payment incomplete',
692
+ PAYMENT_ERROR: 'Payment error',
693
+ PAYMENT_ERROR_MESSAGE: 'There was an error processing your payment. Please try again.',
694
+ PAYMENT_SUCCESS_MESSAGE: 'Payment successful. Thank you for your purchase.',
695
+ PAYMENT_FAILED_MESSAGE: 'Payment failed. Please try again.',
696
+ PAYMENT_CANCELLED_MESSAGE: 'Payment cancelled. Please try again.',
697
+ PAYMENT_PENDING_MESSAGE: 'Payment pending. Please wait for confirmation.',
698
+ DOWNLOAD_MEDIA: 'Download media',
699
+ DOWNLOAD_MEDIA_MESSAGE: 'You can download your media directly using the below link.',
700
+ LINK_VALID: 'NB: This link will only be valid for 24 hours.',
701
+ USAGE: 'Usage',
702
+ FORMAT: 'Format',
703
+ VIDEO_RESOLUTION: 'Video resolution',
704
+ FRAME_RATE: 'Frame rate',
705
+ BIT_RATE: 'Bit rate',
706
+ AUDIO_BIT_RATE: 'Audio bit rate',
707
+ AUDIO_SAMPLE_RATE: 'Audio sample rate',
708
+ AUDIO_CHANNELS: 'Audio channels',
709
+ AUDIO_CODEC: 'Audio codec',
710
+ VIDEO_CODEC: 'Video codec',
711
+ AI_GENERATED: 'AI generated',
712
+ REQUEST_DOWNLOAD: 'Request download',
713
+ ADD_TO_CART: 'Add to cart',
714
+ ADD_TO_FAVORITES: 'Add to favorites',
715
+ ADD_TO_WATCHLIST: 'Add to watchlist',
716
+ ADD_TO_PLAYLIST: 'Add to playlist',
717
+ ADD_TO_SUBSCRIPTION: 'Add to subscription',
718
+ ADD_TO_FOLLOW: 'Add to follow',
719
+ ADD_TO_FRIEND: 'Add to friend',
720
+ CART: 'Cart',
721
+ CART_TOTAL: 'Cart total',
722
+ CART_EMPTY: 'Cart empty',
723
+ CART_EMPTY_MESSAGE: 'Your cart is empty. Add items to continue.',
724
+ CART_EMPTY_CONTINUE: 'Continue shopping',
725
+ CART_EMPTY_TITLE: 'Cart empty',
726
+ LOGIN_TO_PURCHASE: 'Please register or login to complete your purchase',
727
+ HOME_LABEL: 'Back to the homepage',
728
+ SEARCH_LABEL: 'Search',
729
+ LOGIN_REGISTER_LABEL: 'Sign in/Register',
730
+ LOGIN_LABEL: 'Sign in',
731
+ LOGOUT_LABEL: 'Sign out',
732
+ REGISTER_LABEL: 'Register',
733
+ PROFILE_LABEL: 'My account',
734
+ ACCOUNT_SETTINGS_LABEL: 'Settings',
735
+ HELP_LABEL: 'Need help?',
736
+ FAQS_LABEL: 'See all FAQs',
737
+ HELP_AND_FAQS_LABEL: 'Help',
738
+ CONTACT_LABEL: 'Contact us',
739
+ COOKIES_LABEL: 'How we use cookies',
740
+ TERMS_LABEL: 'Terms of Service',
741
+ SUPPLEMENTAL_TERMS_LABEL: 'Supplemental Terms of Service',
742
+ PRIVACY_LABEL: 'Privacy Policy',
743
+ INSTAGRAM_LABEL: 'Instagram',
744
+ FACEBOOK_LABEL: 'Facebook',
745
+ TWITTER_LABEL: 'Twitter',
746
+ ALREADY_HAVE_ACCOUNT: 'Already have an account?',
747
+ FORGOT_PASSWORD_LABEL: 'Forgot password?',
748
+ NO_FREE_TRIAL_ALLOWED:
749
+ "It appears you're not eligible for a free trial as you've previously held a subscription with us.",
750
+ },
751
+ ERRORS: {
752
+ GENERIC_ERROR: 'An error occurred',
753
+ COULD_NOT_FETCH_DATA: 'Could not fetch data',
754
+ COULD_NOT_UPDATE_DATA: 'Could not update data',
755
+ COULD_NOT_DELETE_DATA: 'Could not delete data',
756
+ COULD_NOT_UPDATE_LIKES: 'Could not update likes',
757
+ COULD_NOT_UPDATE_FAVORITES: 'Could not update favorites',
758
+ COULD_NOT_UPDATE_BOOKMARKS: 'Could not update bookmarks',
759
+ COULD_NOT_UPDATE_WATCHLIST: 'Could not update watchlist',
760
+ COULD_NOT_UPDATE_PLAYLIST: 'Could not update playlist',
761
+ COULD_NOT_UPDATE_SUBSCRIPTION: 'Could not update subscription',
762
+ COULD_NOT_UPDATE_FOLLOW: 'Could not update follow',
763
+ COULD_NOT_UPDATE_FRIEND: 'Could not update friend',
764
+ COULD_NOT_UPDATE_CONNECTION: 'Could not update connection',
765
+ ISSUE_CHECKING_PERMISSIONS: 'Issue checking permissions',
766
+ ISSUE_OPENING_SETTINGS: 'Issue opening settings',
767
+ USER_NOT_FOUND_MESSAGE: 'User not found',
768
+ INCORRECT_USERNAME_OR_PASSWORD_MESSAGE: 'Incorrect username or password',
769
+ SIGN_OUT_FAILED_MESSAGE: '"Error signing out. Please try again."',
770
+ PASSWORD_RESET_FAILED: 'Password reset failed',
771
+ REGISTRATION_FAILED: 'Registration failed',
772
+ VERIFICATION_FAILED: 'Verification failed',
773
+ UNKNOWN_ERROR: 'Unknown error',
774
+ },
775
+ };
776
+
777
+ export default strings;