@juo/orion-extensions 0.7.0 → 0.8.0-staging.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/dist/en-BC8MyXA5.js +41 -0
- package/dist/extensions.js +1476 -467
- package/dist/style.css +11 -6
- package/package.json +2 -2
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
const Login = {
|
|
2
|
+
loginViewTitle: "Log in",
|
|
3
|
+
checkEmailTitle: "Check your email",
|
|
4
|
+
subtitle: "Change your products, delivery and payment options or update the status of your subscription",
|
|
5
|
+
separatorText: "or log in with"
|
|
6
|
+
};
|
|
7
|
+
const en = {
|
|
8
|
+
"action:show_content": {
|
|
9
|
+
headline: "Important Information",
|
|
10
|
+
body: "",
|
|
11
|
+
overrides: {
|
|
12
|
+
buttonLabel: "Continue"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"action:choice": {
|
|
16
|
+
headline: "What would you like to do?",
|
|
17
|
+
description: ""
|
|
18
|
+
},
|
|
19
|
+
"action:show_confirmation": {
|
|
20
|
+
headline: "Success!",
|
|
21
|
+
message: "",
|
|
22
|
+
overrides: {
|
|
23
|
+
buttonLabel: "OK"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"action:collect_feedback": {
|
|
27
|
+
headline: "We'd love to hear your feedback",
|
|
28
|
+
description: "",
|
|
29
|
+
placeholder: "Tell us more...",
|
|
30
|
+
submitLabel: "Submit",
|
|
31
|
+
skipLabel: ""
|
|
32
|
+
},
|
|
33
|
+
"action:poll": {
|
|
34
|
+
question: "Why are you cancelling?"
|
|
35
|
+
},
|
|
36
|
+
Login
|
|
37
|
+
};
|
|
38
|
+
export {
|
|
39
|
+
Login,
|
|
40
|
+
en as default
|
|
41
|
+
};
|