This repository has been archived by the owner on May 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdicts.js
154 lines (154 loc) · 4.89 KB
/
dicts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
export default {
emailcode: {
code: {
codeInputPlaceholder: "Your code",
footerText: "",
headerText: "An email with the code has been sent to {email}.",
resendLabel: "Did not get the code?"
},
signedIn: {
success: "Thanks for signing in."
},
email: {
emailInputPlaceholder: "[email protected]",
footerText: "",
headerText: "Enter your email to sign in<br>or create an account"
},
title: "Auth0",
welcome: "Welcome {name}!"
},
error: {
passwordless: {
"bad.tenant": "We're sorry, we can't send you the {medium} because there's a configuration problem",
"bad.client_id": "We're sorry, we can't send you the {medium} because there's a configuration problem",
"bad.connection": "We're sorry, we can't send you the {medium} because there's a configuration problem",
"bad.send": "We're sorry, we can't send you the {medium} because there's an internal error",
"bad.authParams": "We're sorry, we can't send you the {medium} because there's an internal error",
"bad.request": "We're sorry, we can't send you the {medium} because there's an internal error",
"bad.email": "The email is invalid",
"bad.phone_number": "The phone number is invalid",
"lock.request": "We're sorry, something went wrong when sending the {medium}",
"sms_provider_error": "We're sorry, something went wrong when sending the SMS",
"sms_provider_error.bad_phone_number": "The number {phoneNumber} is not a valid phone number"
},
signIn: {
"invalid_user_password": "Wrong {cred} or verification code",
"lock.popup_closed": "Popup window closed. Try again.",
"lock.request": "We're sorry, something went wrong when attempting to sign in",
"lock.unauthorized": "Permissions were not granted. Try again."
}
},
magiclink: {
emailSent: {
failedLabel: "Failed!",
retryLabel: "Retry",
resendLabel: "Resend",
resendingLabel: "Resending...",
sentLabel: "Sent!",
success: "We sent you a link to sign in<br />to {email}."
},
email: {
emailInputPlaceholder: "[email protected]",
footerText: "",
headerText: "Enter your email to sign in<br>or create an account"
},
title: "Auth0",
welcome: "Welcome {name}!"
},
sms: {
code: {
codeInputPlaceholder: "Your code",
footerText: "",
headerText: "An SMS with the code has been sent to {phoneNumber}.",
resendLabel: "Did not get the code?"
},
signedIn: {
success: "Thanks for signing in."
},
location: {
locationFilterInputPlaceholder: "Select your country"
},
phone: {
footerText: "",
headerText: "Enter your phone to sign in<br>or create an account",
phoneNumberInputPlaceholder: "your phone number"
},
title: "Auth0"
},
social: {
network: {
footerText: "",
headerText: "",
smallSocialButtonsHeader: "Login with"
},
signedIn: {
success: "Thanks for signing in."
},
title: "Auth0"
},
socialOrEmailcode: {
code: {
codeInputPlaceholder: "Your code",
footerText: "",
headerText: "An email with the code has been sent to {email}.",
resendLabel: "Did not get the code?"
},
networkOrEmail: {
emailInputPlaceholder: "[email protected]",
footerText: "",
headerText: "",
separatorText: "Otherwise, enter your email to sign in<br>or create an account",
smallSocialButtonsHeader: "Login with"
},
signedIn: {
success: "Thanks for signing in."
},
title: "Auth0",
welcome: "Welcome {name}!"
},
socialOrMagiclink: {
emailSent: {
failedLabel: "Failed!",
retryLabel: "Retry",
resendLabel: "Resend",
resendingLabel: "Resending...",
sentLabel: "Sent!",
success: "We sent you a link to sign in<br />to {email}."
},
networkOrEmail: {
emailInputPlaceholder: "[email protected]",
footerText: "",
headerText: "",
separatorText: "Otherwise, enter your email to sign in<br>or create an account",
smallSocialButtonsHeader: "Login with"
},
signedIn: {
success: "Thanks for signing in."
},
title: "Auth0",
welcome: "Welcome {name}!"
},
socialOrSms: {
code: {
codeInputPlaceholder: "Your code",
footerText: "",
headerText: "An SMS with the code has been sent to {phoneNumber}.",
resendLabel: "Did not get the code?"
},
signedIn: {
success: "Thanks for signing in."
},
location: {
locationFilterInputPlaceholder: "Select your country"
},
networkOrPhone: {
footerText: "",
headerText: "",
phoneNumberInputPlaceholder: "your phone number",
separatorText: "Otherwise, enter your phone to sign in<br>or create an account",
smallSocialButtonsHeader: "Login with"
},
title: "Auth0",
welcome: "Welcome {name}!"
}
};