@coorpacademy/components 10.27.1 → 10.27.2
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.
- package/es/organism/podcast-popin-intro/index.native.d.ts +10 -0
- package/es/organism/podcast-popin-intro/index.native.d.ts.map +1 -0
- package/es/organism/podcast-popin-intro/index.native.js +114 -0
- package/es/organism/podcast-popin-intro/index.native.js.map +1 -0
- package/es/template/app-review/template-context.d.ts +1 -1
- package/es/template/app-review/template-context.d.ts.map +1 -1
- package/es/template/app-review/template-context.js +2 -1
- package/es/template/app-review/template-context.js.map +1 -1
- package/es/variables/default-mobile-translations.d.ts +214 -0
- package/es/variables/default-mobile-translations.d.ts.map +1 -0
- package/es/variables/default-mobile-translations.js +278 -0
- package/es/variables/default-mobile-translations.js.map +1 -0
- package/es/variables/theme.native.d.ts +4 -0
- package/es/variables/theme.native.d.ts.map +1 -1
- package/es/variables/theme.native.js +5 -1
- package/es/variables/theme.native.js.map +1 -1
- package/lib/organism/podcast-popin-intro/index.native.d.ts +10 -0
- package/lib/organism/podcast-popin-intro/index.native.d.ts.map +1 -0
- package/lib/organism/podcast-popin-intro/index.native.js +131 -0
- package/lib/organism/podcast-popin-intro/index.native.js.map +1 -0
- package/lib/template/app-review/template-context.d.ts +1 -1
- package/lib/template/app-review/template-context.d.ts.map +1 -1
- package/lib/template/app-review/template-context.js +3 -1
- package/lib/template/app-review/template-context.js.map +1 -1
- package/lib/variables/default-mobile-translations.d.ts +214 -0
- package/lib/variables/default-mobile-translations.d.ts.map +1 -0
- package/lib/variables/default-mobile-translations.js +283 -0
- package/lib/variables/default-mobile-translations.js.map +1 -0
- package/lib/variables/theme.native.d.ts +4 -0
- package/lib/variables/theme.native.d.ts.map +1 -1
- package/lib/variables/theme.native.js +5 -1
- package/lib/variables/theme.native.js.map +1 -1
- package/package.json +2 -2
- package/es/types/translations.d.ts +0 -12
- package/es/types/translations.d.ts.map +0 -1
- package/es/types/translations.js +0 -2
- package/es/types/translations.js.map +0 -1
- package/lib/types/translations.d.ts +0 -12
- package/lib/types/translations.d.ts.map +0 -1
- package/lib/types/translations.js +0 -2
- package/lib/types/translations.js.map +0 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { GestureResponderEvent } from 'react-native';
|
|
3
|
+
export declare type Props = {
|
|
4
|
+
isVisible: boolean;
|
|
5
|
+
onValidate: (event: GestureResponderEvent) => void;
|
|
6
|
+
};
|
|
7
|
+
declare const PodcastPopinIntro: (props: Props) => JSX.Element | null;
|
|
8
|
+
export declare type PodcastPopinIntroProps = Props;
|
|
9
|
+
export default PodcastPopinIntro;
|
|
10
|
+
//# sourceMappingURL=index.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.native.d.ts","sourceRoot":"","sources":["../../../src/organism/podcast-popin-intro/index.native.tsx"],"names":[],"mappings":";AACA,OAAO,EAOL,qBAAqB,EACtB,MAAM,cAAc,CAAC;AAQtB,oBAAY,KAAK,GAAG;IAClB,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,CAAC,KAAK,EAAE,qBAAqB,KAAK,IAAI,CAAC;CACpD,CAAC;AAwEF,QAAA,MAAM,iBAAiB,UAAW,KAAK,uBAgCtC,CAAC;AAEF,oBAAY,sBAAsB,GAAG,KAAK,CAAC;AAC3C,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import React, { useState, useEffect } from 'react';
|
|
2
|
+
import { useWindowDimensions, StyleSheet, Text, View } from 'react-native';
|
|
3
|
+
import Modal from 'react-native-modal';
|
|
4
|
+
import { NovaSolidAudioHeadphone as Headphone } from '@coorpacademy/nova-icons';
|
|
5
|
+
import { useTemplateContext } from '../../template/app-review/template-context';
|
|
6
|
+
import Touchable from '../../hoc/touchable/index.native';
|
|
7
|
+
|
|
8
|
+
const createStyleSheet = (theme, windowHeight) => {
|
|
9
|
+
const popinHeight = 368;
|
|
10
|
+
return StyleSheet.create({
|
|
11
|
+
container: {
|
|
12
|
+
position: 'absolute',
|
|
13
|
+
top: (windowHeight - popinHeight) / 2,
|
|
14
|
+
height: popinHeight,
|
|
15
|
+
backgroundColor: '#fff',
|
|
16
|
+
justifyContent: 'space-between',
|
|
17
|
+
alignSelf: 'center',
|
|
18
|
+
alignItems: 'center',
|
|
19
|
+
borderRadius: 8,
|
|
20
|
+
// width: '90%',
|
|
21
|
+
padding: 24
|
|
22
|
+
},
|
|
23
|
+
headphonesWrapper: {
|
|
24
|
+
width: 115,
|
|
25
|
+
height: 115,
|
|
26
|
+
backgroundColor: '#FFEFEB',
|
|
27
|
+
justifyContent: 'center',
|
|
28
|
+
borderRadius: 60
|
|
29
|
+
},
|
|
30
|
+
headphones: {
|
|
31
|
+
alignSelf: 'center',
|
|
32
|
+
width: 60,
|
|
33
|
+
height: 60,
|
|
34
|
+
fill: theme.colors.podcast.primary
|
|
35
|
+
},
|
|
36
|
+
button: {
|
|
37
|
+
width: '40%',
|
|
38
|
+
height: 44,
|
|
39
|
+
backgroundColor: theme.colors.podcast.primary,
|
|
40
|
+
borderRadius: 7,
|
|
41
|
+
justifyContent: 'center'
|
|
42
|
+
},
|
|
43
|
+
buttonText: {
|
|
44
|
+
alignSelf: 'center',
|
|
45
|
+
color: '#FFFFFF',
|
|
46
|
+
fontWeight: theme.fontWeight.bold,
|
|
47
|
+
fontFamily: 'System',
|
|
48
|
+
fontSize: 14,
|
|
49
|
+
lineHeight: 20
|
|
50
|
+
},
|
|
51
|
+
title: {
|
|
52
|
+
textAlign: 'center',
|
|
53
|
+
lineHeight: 24,
|
|
54
|
+
fontWeight: '700',
|
|
55
|
+
fontSize: 20,
|
|
56
|
+
paddingHorizontal: 40
|
|
57
|
+
},
|
|
58
|
+
message: {
|
|
59
|
+
textAlign: 'center',
|
|
60
|
+
lineHeight: 19,
|
|
61
|
+
fontWeight: '300',
|
|
62
|
+
fontSize: 16,
|
|
63
|
+
paddingHorizontal: 40
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const PodcastPopinIntro = props => {
|
|
69
|
+
const {
|
|
70
|
+
height: windowHeight
|
|
71
|
+
} = useWindowDimensions();
|
|
72
|
+
const templateContext = useTemplateContext();
|
|
73
|
+
const [styleSheet, setStylesheet] = useState(null);
|
|
74
|
+
const {
|
|
75
|
+
theme,
|
|
76
|
+
translations
|
|
77
|
+
} = templateContext;
|
|
78
|
+
const {
|
|
79
|
+
isVisible,
|
|
80
|
+
onValidate
|
|
81
|
+
} = props;
|
|
82
|
+
useEffect(() => {
|
|
83
|
+
const _stylesheet = createStyleSheet(theme, windowHeight);
|
|
84
|
+
|
|
85
|
+
setStylesheet(_stylesheet);
|
|
86
|
+
}, [theme, windowHeight]);
|
|
87
|
+
|
|
88
|
+
if (!styleSheet) {
|
|
89
|
+
return null;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
return /*#__PURE__*/React.createElement(Modal, {
|
|
93
|
+
isVisible: isVisible,
|
|
94
|
+
style: styleSheet.container,
|
|
95
|
+
testID: "podcast-popin-intro"
|
|
96
|
+
}, /*#__PURE__*/React.createElement(View, {
|
|
97
|
+
style: styleSheet.headphonesWrapper
|
|
98
|
+
}, /*#__PURE__*/React.createElement(Headphone, {
|
|
99
|
+
style: styleSheet.headphones
|
|
100
|
+
})), /*#__PURE__*/React.createElement(Text, {
|
|
101
|
+
style: styleSheet.title
|
|
102
|
+
}, translations.appPodcast.infoNewFeature.title), /*#__PURE__*/React.createElement(Text, {
|
|
103
|
+
style: styleSheet.message
|
|
104
|
+
}, translations.appPodcast.infoNewFeature.message), /*#__PURE__*/React.createElement(Touchable, {
|
|
105
|
+
style: styleSheet.button,
|
|
106
|
+
onPress: onValidate,
|
|
107
|
+
testID: "podcast-popin-intro-validate-button"
|
|
108
|
+
}, /*#__PURE__*/React.createElement(Text, {
|
|
109
|
+
style: styleSheet.buttonText
|
|
110
|
+
}, translations.appPodcast.infoNewFeature.cta)));
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export default PodcastPopinIntro;
|
|
114
|
+
//# sourceMappingURL=index.native.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.native.js","names":["React","useState","useEffect","useWindowDimensions","StyleSheet","Text","View","Modal","NovaSolidAudioHeadphone","Headphone","useTemplateContext","Touchable","createStyleSheet","theme","windowHeight","popinHeight","create","container","position","top","height","backgroundColor","justifyContent","alignSelf","alignItems","borderRadius","padding","headphonesWrapper","width","headphones","fill","colors","podcast","primary","button","buttonText","color","fontWeight","bold","fontFamily","fontSize","lineHeight","title","textAlign","paddingHorizontal","message","PodcastPopinIntro","props","templateContext","styleSheet","setStylesheet","translations","isVisible","onValidate","_stylesheet","appPodcast","infoNewFeature","cta"],"sources":["../../../src/organism/podcast-popin-intro/index.native.tsx"],"sourcesContent":["import React, {useState, useEffect} from 'react';\nimport {\n useWindowDimensions,\n StyleSheet,\n ViewStyle,\n Text,\n TextStyle,\n View,\n GestureResponderEvent\n} from 'react-native';\nimport Modal from 'react-native-modal';\nimport {NovaSolidAudioHeadphone as Headphone} from '@coorpacademy/nova-icons';\n\nimport {useTemplateContext} from '../../template/app-review/template-context';\nimport Touchable from '../../hoc/touchable/index.native';\nimport {Theme} from '../../variables/theme.native';\n\nexport type Props = {\n isVisible: boolean;\n onValidate: (event: GestureResponderEvent) => void;\n};\n\ntype StyleSheetType = {\n container: ViewStyle;\n headphones: ViewStyle;\n headphonesWrapper: ViewStyle;\n button: ViewStyle;\n buttonText: TextStyle;\n title: TextStyle;\n message: TextStyle;\n};\n\nconst createStyleSheet = (theme: Theme, windowHeight: number) => {\n const popinHeight = 368;\n return StyleSheet.create({\n container: {\n position: 'absolute',\n top: (windowHeight - popinHeight) / 2,\n height: popinHeight,\n backgroundColor: '#fff',\n justifyContent: 'space-between',\n alignSelf: 'center',\n alignItems: 'center',\n borderRadius: 8,\n // width: '90%',\n padding: 24\n },\n headphonesWrapper: {\n width: 115,\n height: 115,\n backgroundColor: '#FFEFEB',\n justifyContent: 'center',\n borderRadius: 60\n },\n headphones: {\n alignSelf: 'center',\n width: 60,\n height: 60,\n fill: theme.colors.podcast.primary\n },\n button: {\n width: '40%',\n height: 44,\n backgroundColor: theme.colors.podcast.primary,\n borderRadius: 7,\n justifyContent: 'center'\n },\n buttonText: {\n alignSelf: 'center',\n color: '#FFFFFF',\n fontWeight: theme.fontWeight.bold,\n fontFamily: 'System',\n fontSize: 14,\n lineHeight: 20\n },\n title: {\n textAlign: 'center',\n lineHeight: 24,\n fontWeight: '700',\n fontSize: 20,\n paddingHorizontal: 40\n },\n message: {\n textAlign: 'center',\n lineHeight: 19,\n fontWeight: '300',\n fontSize: 16,\n paddingHorizontal: 40\n }\n });\n};\n\nconst PodcastPopinIntro = (props: Props) => {\n const {height: windowHeight} = useWindowDimensions();\n const templateContext = useTemplateContext();\n const [styleSheet, setStylesheet] = useState<StyleSheetType | null>(null);\n const {theme, translations} = templateContext;\n const {isVisible, onValidate} = props;\n\n useEffect(() => {\n const _stylesheet = createStyleSheet(theme, windowHeight);\n setStylesheet(_stylesheet);\n }, [theme, windowHeight]);\n\n if (!styleSheet) {\n return null;\n }\n\n return (\n <Modal isVisible={isVisible} style={styleSheet.container} testID=\"podcast-popin-intro\">\n <View style={styleSheet.headphonesWrapper}>\n <Headphone style={styleSheet.headphones} />\n </View>\n <Text style={styleSheet.title}>{translations.appPodcast.infoNewFeature.title}</Text>\n <Text style={styleSheet.message}>{translations.appPodcast.infoNewFeature.message}</Text>\n <Touchable\n style={styleSheet.button}\n onPress={onValidate}\n testID=\"podcast-popin-intro-validate-button\"\n >\n <Text style={styleSheet.buttonText}>{translations.appPodcast.infoNewFeature.cta}</Text>\n </Touchable>\n </Modal>\n );\n};\n\nexport type PodcastPopinIntroProps = Props;\nexport default PodcastPopinIntro;\n"],"mappings":"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"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import { Translations } from '../../types/translations';
|
|
3
2
|
import { Analytics } from '../../variables/analytics';
|
|
4
3
|
import { Brand } from '../../variables/brand.native';
|
|
5
4
|
import { Theme } from '../../variables/theme.native';
|
|
5
|
+
import { Translations } from '../../variables/default-mobile-translations';
|
|
6
6
|
import { Vibration } from '../../variables/vibration';
|
|
7
7
|
export declare type HandleBlur = () => void;
|
|
8
8
|
export declare type HandleFocus = (id: string) => () => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template-context.d.ts","sourceRoot":"","sources":["../../../src/template/app-review/template-context.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAgB,SAAS,EAAa,MAAM,OAAO,CAAC;AAClE,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"template-context.d.ts","sourceRoot":"","sources":["../../../src/template/app-review/template-context.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAgB,SAAS,EAAa,MAAM,OAAO,CAAC;AAClE,OAAO,EAAC,SAAS,EAAC,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAC,KAAK,EAAoB,MAAM,8BAA8B,CAAC;AACtE,OAAqB,EAAC,KAAK,EAAC,MAAM,8BAA8B,CAAC;AACjE,OAAkC,EAAC,YAAY,EAAC,MAAM,6CAA6C,CAAC;AACpG,OAAO,EAAC,SAAS,EAAC,MAAM,2BAA2B,CAAC;AAEpD,oBAAY,UAAU,GAAG,MAAM,IAAI,CAAC;AACpC,oBAAY,WAAW,GAAG,CAAC,EAAE,EAAE,MAAM,KAAK,MAAM,IAAI,CAAC;AACrD,oBAAY,eAAe,GAAG,MAAM,GAAG,IAAI,CAAC;AAE5C,oBAAY,qBAAqB,GAAG;IAClC,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,UAAU,EAAE,KAAK,CAAC;IAClB,KAAK,EAAE,KAAK,CAAC;IACb,YAAY,EAAE,YAAY,CAAC;IAC3B,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,OAAO,EAAE;QACP,YAAY,EAAE,MAAM,CAAC;QACrB,eAAe,EAAE,MAAM,CAAC;KACzB,CAAC;IACF,KAAK,EAAE;QACL,eAAe,CAAC,EAAE,eAAe,CAAC;QAClC,UAAU,CAAC,EAAE,UAAU,CAAC;QACxB,WAAW,CAAC,EAAE,WAAW,CAAC;KAC3B,CAAC;CACH,CAAC;AAEF,aAAK,KAAK,GAAG;IAAC,MAAM,EAAE,qBAAqB,CAAC;IAAC,QAAQ,EAAE,SAAS,CAAA;CAAC,CAAC;AAalE,QAAA,MAAM,kBAAkB,QAAO,qBAU9B,CAAC;AAEF,QAAA,MAAM,eAAe,yBAAwB,KAAK,gBAEjD,CAAC;AAEF,OAAO,EAAC,eAAe,EAAE,kBAAkB,EAAC,CAAC"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import React, { createContext, useContext } from 'react';
|
|
2
2
|
import { defaultBrandTheme } from '../../variables/brand.native';
|
|
3
3
|
import defaultTheme from '../../variables/theme.native';
|
|
4
|
+
import defaultMobileTranslations from '../../variables/default-mobile-translations';
|
|
4
5
|
const Context = /*#__PURE__*/createContext({
|
|
5
6
|
theme: defaultTheme,
|
|
6
7
|
brandTheme: defaultBrandTheme,
|
|
7
|
-
translations:
|
|
8
|
+
translations: defaultMobileTranslations,
|
|
8
9
|
display: {
|
|
9
10
|
headerHeight: 67,
|
|
10
11
|
statusBarHeight: 42
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template-context.js","names":["React","createContext","useContext","defaultBrandTheme","defaultTheme","Context","theme","brandTheme","translations","display","headerHeight","statusBarHeight","store","useTemplateContext","context","Error","TemplateContext","values","children"],"sources":["../../../src/template/app-review/template-context.tsx"],"sourcesContent":["import React, {createContext, ReactNode, useContext} from 'react';\nimport {
|
|
1
|
+
{"version":3,"file":"template-context.js","names":["React","createContext","useContext","defaultBrandTheme","defaultTheme","defaultMobileTranslations","Context","theme","brandTheme","translations","display","headerHeight","statusBarHeight","store","useTemplateContext","context","Error","TemplateContext","values","children"],"sources":["../../../src/template/app-review/template-context.tsx"],"sourcesContent":["import React, {createContext, ReactNode, useContext} from 'react';\nimport {Analytics} from '../../variables/analytics';\nimport {Brand, defaultBrandTheme} from '../../variables/brand.native';\nimport defaultTheme, {Theme} from '../../variables/theme.native';\nimport defaultMobileTranslations, {Translations} from '../../variables/default-mobile-translations';\nimport {Vibration} from '../../variables/vibration';\n\nexport type HandleBlur = () => void;\nexport type HandleFocus = (id: string) => () => void;\nexport type FocusedSelectId = string | null;\n\nexport type TemplateContextValues = {\n analytics?: Analytics;\n brandTheme: Brand;\n theme: Theme;\n translations: Translations;\n vibration?: Vibration;\n display: {\n headerHeight: number;\n statusBarHeight: number;\n };\n store: {\n focusedSelectId?: FocusedSelectId;\n handleBlur?: HandleBlur;\n handleFocus?: HandleFocus;\n };\n};\n\ntype Props = {values: TemplateContextValues; children: ReactNode};\n\nconst Context = createContext({\n theme: defaultTheme,\n brandTheme: defaultBrandTheme,\n translations: defaultMobileTranslations,\n display: {\n headerHeight: 67,\n statusBarHeight: 42\n },\n store: {}\n});\n\nconst useTemplateContext = (): TemplateContextValues => {\n const context = useContext(Context);\n\n if (!context) {\n throw new Error(\n `❌ [TemplateContext] useTemplateContext must be used within a provider <TemplateContext>`\n );\n }\n\n return context;\n};\n\nconst TemplateContext = ({values, children}: Props) => {\n return <Context.Provider value={values}>{children}</Context.Provider>;\n};\n\nexport {TemplateContext, useTemplateContext};\n"],"mappings":"AAAA,OAAOA,KAAP,IAAeC,aAAf,EAAyCC,UAAzC,QAA0D,OAA1D;AAEA,SAAeC,iBAAf,QAAuC,8BAAvC;AACA,OAAOC,YAAP,MAAkC,8BAAlC;AACA,OAAOC,yBAAP,MAAsD,6CAAtD;AA0BA,MAAMC,OAAO,gBAAGL,aAAa,CAAC;EAC5BM,KAAK,EAAEH,YADqB;EAE5BI,UAAU,EAAEL,iBAFgB;EAG5BM,YAAY,EAAEJ,yBAHc;EAI5BK,OAAO,EAAE;IACPC,YAAY,EAAE,EADP;IAEPC,eAAe,EAAE;EAFV,CAJmB;EAQ5BC,KAAK,EAAE;AARqB,CAAD,CAA7B;;AAWA,MAAMC,kBAAkB,GAAG,MAA6B;EACtD,MAAMC,OAAO,GAAGb,UAAU,CAACI,OAAD,CAA1B;;EAEA,IAAI,CAACS,OAAL,EAAc;IACZ,MAAM,IAAIC,KAAJ,CACH,yFADG,CAAN;EAGD;;EAED,OAAOD,OAAP;AACD,CAVD;;AAYA,MAAME,eAAe,GAAG,CAAC;EAACC,MAAD;EAASC;AAAT,CAAD,KAA+B;EACrD,oBAAO,oBAAC,OAAD,CAAS,QAAT;IAAkB,KAAK,EAAED;EAAzB,GAAkCC,QAAlC,CAAP;AACD,CAFD;;AAIA,SAAQF,eAAR,EAAyBH,kBAAzB"}
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
declare type NotificationWording = {
|
|
2
|
+
title: string;
|
|
3
|
+
description: string;
|
|
4
|
+
};
|
|
5
|
+
export declare type Translations = {
|
|
6
|
+
accessTheLesson: string;
|
|
7
|
+
appPodcast: {
|
|
8
|
+
infoNewFeature: {
|
|
9
|
+
title: string;
|
|
10
|
+
message: string;
|
|
11
|
+
cta: string;
|
|
12
|
+
};
|
|
13
|
+
podcast: string;
|
|
14
|
+
podcasts: string;
|
|
15
|
+
playlist: string;
|
|
16
|
+
home: string;
|
|
17
|
+
courseMode: string;
|
|
18
|
+
allPlaylists: string;
|
|
19
|
+
seeMore: string;
|
|
20
|
+
podcastCoorpacademy: string;
|
|
21
|
+
podcastCourseMode: string;
|
|
22
|
+
podcastMode: string;
|
|
23
|
+
switchText: string;
|
|
24
|
+
switchCourseText: string;
|
|
25
|
+
cancelSwitch: string;
|
|
26
|
+
switchOk: string;
|
|
27
|
+
seeLess: string;
|
|
28
|
+
play: string;
|
|
29
|
+
noResult: string;
|
|
30
|
+
allEpisodes: string;
|
|
31
|
+
seeAllEpisodes: string;
|
|
32
|
+
addToFavorites: string;
|
|
33
|
+
removeFromFavorites: string;
|
|
34
|
+
shareEpisode: string;
|
|
35
|
+
close: string;
|
|
36
|
+
errorNetwork: string;
|
|
37
|
+
bottomNavigation: {
|
|
38
|
+
home: string;
|
|
39
|
+
search: string;
|
|
40
|
+
favorites: string;
|
|
41
|
+
podcasts: string;
|
|
42
|
+
};
|
|
43
|
+
search: {
|
|
44
|
+
byPlaylists: string;
|
|
45
|
+
searchForPodcasts: string;
|
|
46
|
+
searchTitle: string;
|
|
47
|
+
searchText: string;
|
|
48
|
+
searchSubText: string;
|
|
49
|
+
};
|
|
50
|
+
settings: {
|
|
51
|
+
settings: string;
|
|
52
|
+
wifi: string;
|
|
53
|
+
high: string;
|
|
54
|
+
medium: string;
|
|
55
|
+
low: string;
|
|
56
|
+
mobile: string;
|
|
57
|
+
};
|
|
58
|
+
favorites: {
|
|
59
|
+
title: string;
|
|
60
|
+
podcasts: string;
|
|
61
|
+
addedToFavorites: string;
|
|
62
|
+
removedFromFavorites: string;
|
|
63
|
+
errorFavoriteAdd: string;
|
|
64
|
+
errorFavorite: string;
|
|
65
|
+
errorFavoriteRemove: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
appReview: {
|
|
69
|
+
ariaLabel: string;
|
|
70
|
+
presentation: {
|
|
71
|
+
ariaLabel: string;
|
|
72
|
+
title: string;
|
|
73
|
+
text: string;
|
|
74
|
+
labelList: {
|
|
75
|
+
skills: {
|
|
76
|
+
text: string;
|
|
77
|
+
tooltip: string;
|
|
78
|
+
};
|
|
79
|
+
questions: {
|
|
80
|
+
text: string;
|
|
81
|
+
tooltip: string;
|
|
82
|
+
};
|
|
83
|
+
lifes: {
|
|
84
|
+
text: string;
|
|
85
|
+
tooltip: string;
|
|
86
|
+
};
|
|
87
|
+
allright: {
|
|
88
|
+
text: string;
|
|
89
|
+
tooltip: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
listTitle: string;
|
|
94
|
+
listAriaLabel: string;
|
|
95
|
+
card: {
|
|
96
|
+
ariaLabel: string;
|
|
97
|
+
text: string;
|
|
98
|
+
buttonText: string;
|
|
99
|
+
};
|
|
100
|
+
noSkills: {
|
|
101
|
+
title: string;
|
|
102
|
+
text: string;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
article: string;
|
|
106
|
+
authenticationMagicLinkHeader: string;
|
|
107
|
+
authenticationMagicLinkStepOneDescription: string;
|
|
108
|
+
authenticationMagicLinkStepTwoDescription: string;
|
|
109
|
+
authenticationMagicLinkStepThreeDescription: string;
|
|
110
|
+
authenticationMagicLinkTitle: string;
|
|
111
|
+
authenticationQRCodeHeader: string;
|
|
112
|
+
authenticationQRCodeStepOneDescription: string;
|
|
113
|
+
authenticationQRCodeStepTwoDescription: string;
|
|
114
|
+
authenticationQRCodeStepThreeDescription: string;
|
|
115
|
+
authenticationQRCodeTitle: string;
|
|
116
|
+
authorizeNotifications: string;
|
|
117
|
+
askForHelp: string;
|
|
118
|
+
backToHome: string;
|
|
119
|
+
bonus: string;
|
|
120
|
+
cancel: string;
|
|
121
|
+
clue: string;
|
|
122
|
+
clueStarsToLoose: string;
|
|
123
|
+
congratulations: string;
|
|
124
|
+
connectionLost: string;
|
|
125
|
+
connectionRestored: string;
|
|
126
|
+
context: string;
|
|
127
|
+
correction: string;
|
|
128
|
+
dataLost: string;
|
|
129
|
+
didYouKnowThat: string;
|
|
130
|
+
finishCourse: string;
|
|
131
|
+
finishCourseWordings: NotificationWording[];
|
|
132
|
+
finishLearning: string;
|
|
133
|
+
forYou: string;
|
|
134
|
+
gameOver: string;
|
|
135
|
+
getAnExtralife: string;
|
|
136
|
+
goodAnswer: string;
|
|
137
|
+
goodJob: string;
|
|
138
|
+
goToQuestion: string;
|
|
139
|
+
highscore: string;
|
|
140
|
+
howToSignIn: string;
|
|
141
|
+
iWantIt: string;
|
|
142
|
+
keyPoint: string;
|
|
143
|
+
lesson: string;
|
|
144
|
+
logOut: string;
|
|
145
|
+
needHelp: string;
|
|
146
|
+
new: string;
|
|
147
|
+
next: string;
|
|
148
|
+
nextLevel: string;
|
|
149
|
+
nextChapter: string;
|
|
150
|
+
noResults: string;
|
|
151
|
+
noResultsDescription: string;
|
|
152
|
+
ok: string;
|
|
153
|
+
ooops: string;
|
|
154
|
+
open: string;
|
|
155
|
+
openBrowser: string;
|
|
156
|
+
openSettings: string;
|
|
157
|
+
ouch: string;
|
|
158
|
+
outOfLives: string;
|
|
159
|
+
permission: string;
|
|
160
|
+
permissionCamera: string;
|
|
161
|
+
notifications: string;
|
|
162
|
+
notificationSamples: NotificationWording[];
|
|
163
|
+
permissionNotificationHeadline: string;
|
|
164
|
+
permissionNotificationDescription: string;
|
|
165
|
+
permissionNotificationAuthorize: string;
|
|
166
|
+
currentlyDoingReminder: string;
|
|
167
|
+
yesNotifyMe: string;
|
|
168
|
+
maybeLater: string;
|
|
169
|
+
platformHasBeenDisabled: string;
|
|
170
|
+
podcast: string;
|
|
171
|
+
question: string;
|
|
172
|
+
quit: string;
|
|
173
|
+
reactivatePlatform: string;
|
|
174
|
+
refresh: string;
|
|
175
|
+
refreshEnjoyLearning: string;
|
|
176
|
+
refreshNotWorking: string;
|
|
177
|
+
resumeLearning: string;
|
|
178
|
+
retryLevel: string;
|
|
179
|
+
retryChapter: string;
|
|
180
|
+
relatedSubjects: string;
|
|
181
|
+
scanQRCode: string;
|
|
182
|
+
scorm: string;
|
|
183
|
+
externalFinishCourse: string;
|
|
184
|
+
search: string;
|
|
185
|
+
seeClue: string;
|
|
186
|
+
selectAnAnswer: string;
|
|
187
|
+
selectSomethingBelow: string;
|
|
188
|
+
settings: string;
|
|
189
|
+
signInDesktop: string;
|
|
190
|
+
signInMobile: string;
|
|
191
|
+
startDemo: string;
|
|
192
|
+
startLearning: string;
|
|
193
|
+
step: string;
|
|
194
|
+
suggestion: string;
|
|
195
|
+
suggestionWordings: NotificationWording[];
|
|
196
|
+
typeHere: string;
|
|
197
|
+
unlockNextLevel: string;
|
|
198
|
+
upgrade: string;
|
|
199
|
+
upgradeDescription: string;
|
|
200
|
+
validate: string;
|
|
201
|
+
version: string;
|
|
202
|
+
video: string;
|
|
203
|
+
videoLoadingError: string;
|
|
204
|
+
welcome: string;
|
|
205
|
+
welcomeDescription: string;
|
|
206
|
+
welcomeUser: string;
|
|
207
|
+
winAdditionalStars: string;
|
|
208
|
+
wrongAnswer: string;
|
|
209
|
+
yourAnswer: string;
|
|
210
|
+
yourAnswers: string;
|
|
211
|
+
};
|
|
212
|
+
declare const defaultMobileTranslations: Translations;
|
|
213
|
+
export default defaultMobileTranslations;
|
|
214
|
+
//# sourceMappingURL=default-mobile-translations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default-mobile-translations.d.ts","sourceRoot":"","sources":["../../src/variables/default-mobile-translations.ts"],"names":[],"mappings":"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"}
|