strapi-plugin-magic-mail 2.3.10 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,434 @@
1
+ import styled from "styled-components";
2
+ import { Button } from "@strapi/design-system";
3
+ const GradientButton = styled(Button)`
4
+ && {
5
+ background: linear-gradient(135deg, #0EA5E9 0%, #A855F7 100%);
6
+ color: white;
7
+ font-weight: 600;
8
+ border: none;
9
+ padding: 10px 20px;
10
+ min-height: 40px;
11
+ transition: all 0.2s ease;
12
+
13
+ &:hover:not(:disabled) {
14
+ background: linear-gradient(135deg, #0284C7 0%, #9333EA 100%);
15
+ transform: translateY(-1px);
16
+ box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
17
+ }
18
+
19
+ &:active:not(:disabled) {
20
+ transform: translateY(0);
21
+ }
22
+
23
+ &:disabled {
24
+ opacity: 0.6;
25
+ cursor: not-allowed;
26
+ }
27
+ }
28
+ `;
29
+ const SecondaryButton = styled(Button)`
30
+ && {
31
+ background: white;
32
+ color: #7C3AED;
33
+ font-weight: 600;
34
+ border: 2px solid transparent;
35
+ background-image: linear-gradient(white, white), linear-gradient(135deg, #0EA5E9 0%, #A855F7 100%);
36
+ background-origin: border-box;
37
+ background-clip: padding-box, border-box;
38
+ padding: 10px 20px;
39
+ min-height: 40px;
40
+ transition: all 0.2s ease;
41
+
42
+ &:hover:not(:disabled) {
43
+ background: linear-gradient(135deg, #0EA5E9 0%, #A855F7 100%);
44
+ background-clip: padding-box;
45
+ color: white;
46
+ transform: translateY(-1px);
47
+ box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
48
+ }
49
+
50
+ &:active:not(:disabled) {
51
+ transform: translateY(0);
52
+ }
53
+
54
+ &:disabled {
55
+ opacity: 0.6;
56
+ cursor: not-allowed;
57
+ }
58
+ }
59
+ `;
60
+ const TertiaryButton = styled(Button)`
61
+ && {
62
+ background: transparent;
63
+ color: ${(props) => props.theme.colors.neutral600};
64
+ font-weight: 500;
65
+ border: 1px solid ${(props) => props.theme.colors.neutral200};
66
+ padding: 10px 20px;
67
+ min-height: 40px;
68
+ transition: all 0.2s ease;
69
+
70
+ &:hover:not(:disabled) {
71
+ background: ${(props) => props.theme.colors.neutral100};
72
+ border-color: ${(props) => props.theme.colors.neutral300};
73
+ color: ${(props) => props.theme.colors.neutral800};
74
+ }
75
+
76
+ &:disabled {
77
+ opacity: 0.6;
78
+ cursor: not-allowed;
79
+ }
80
+ }
81
+ `;
82
+ const DangerButton = styled(Button)`
83
+ && {
84
+ background: #FEE2E2;
85
+ color: #DC2626;
86
+ font-weight: 600;
87
+ border: 1px solid #FECACA;
88
+ padding: 10px 20px;
89
+ min-height: 40px;
90
+ transition: all 0.2s ease;
91
+
92
+ &:hover:not(:disabled) {
93
+ background: #DC2626;
94
+ color: white;
95
+ border-color: #DC2626;
96
+ }
97
+
98
+ &:disabled {
99
+ opacity: 0.6;
100
+ cursor: not-allowed;
101
+ }
102
+ }
103
+ `;
104
+ styled(Button)`
105
+ && {
106
+ background: linear-gradient(135deg, #10B981 0%, #059669 100%);
107
+ color: white;
108
+ font-weight: 600;
109
+ border: none;
110
+ padding: 10px 20px;
111
+ min-height: 40px;
112
+ transition: all 0.2s ease;
113
+
114
+ &:hover:not(:disabled) {
115
+ background: linear-gradient(135deg, #059669 0%, #047857 100%);
116
+ transform: translateY(-1px);
117
+ box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
118
+ }
119
+
120
+ &:disabled {
121
+ opacity: 0.6;
122
+ cursor: not-allowed;
123
+ }
124
+ }
125
+ `;
126
+ const IconButton = styled(Button)`
127
+ && {
128
+ background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
129
+ color: #64748B;
130
+ border: 1px solid #E2E8F0;
131
+ padding: 8px;
132
+ min-width: 38px;
133
+ min-height: 38px;
134
+ width: 38px;
135
+ height: 38px;
136
+ border-radius: 10px;
137
+ display: flex;
138
+ align-items: center;
139
+ justify-content: center;
140
+ transition: all 0.2s ease;
141
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
142
+
143
+ svg {
144
+ width: 18px;
145
+ height: 18px;
146
+ }
147
+
148
+ &:hover:not(:disabled) {
149
+ background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
150
+ border-color: #0EA5E9;
151
+ color: white;
152
+ transform: translateY(-1px);
153
+ box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
154
+ }
155
+
156
+ &:disabled {
157
+ opacity: 0.6;
158
+ cursor: not-allowed;
159
+ }
160
+ }
161
+ `;
162
+ const IconButtonDanger = styled(Button)`
163
+ && {
164
+ background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
165
+ color: #EF4444;
166
+ border: 1px solid #FECACA;
167
+ padding: 8px;
168
+ min-width: 38px;
169
+ min-height: 38px;
170
+ width: 38px;
171
+ height: 38px;
172
+ border-radius: 10px;
173
+ display: flex;
174
+ align-items: center;
175
+ justify-content: center;
176
+ transition: all 0.2s ease;
177
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
178
+
179
+ svg {
180
+ width: 18px;
181
+ height: 18px;
182
+ }
183
+
184
+ &:hover:not(:disabled) {
185
+ background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
186
+ border-color: #EF4444;
187
+ color: white;
188
+ transform: translateY(-1px);
189
+ box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
190
+ }
191
+
192
+ &:disabled {
193
+ opacity: 0.6;
194
+ cursor: not-allowed;
195
+ }
196
+ }
197
+ `;
198
+ const IconButtonPrimary = styled(Button)`
199
+ && {
200
+ background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
201
+ color: #0EA5E9;
202
+ border: 1px solid #BAE6FD;
203
+ padding: 8px;
204
+ min-width: 38px;
205
+ min-height: 38px;
206
+ width: 38px;
207
+ height: 38px;
208
+ border-radius: 10px;
209
+ display: flex;
210
+ align-items: center;
211
+ justify-content: center;
212
+ transition: all 0.2s ease;
213
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
214
+
215
+ svg {
216
+ width: 18px;
217
+ height: 18px;
218
+ }
219
+
220
+ &:hover:not(:disabled) {
221
+ background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
222
+ border-color: #0EA5E9;
223
+ color: white;
224
+ transform: translateY(-1px);
225
+ box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
226
+ }
227
+
228
+ &:disabled {
229
+ opacity: 0.6;
230
+ cursor: not-allowed;
231
+ }
232
+ }
233
+ `;
234
+ const IconButtonSuccess = styled(Button)`
235
+ && {
236
+ background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
237
+ color: #22C55E;
238
+ border: 1px solid #BBF7D0;
239
+ padding: 8px;
240
+ min-width: 38px;
241
+ min-height: 38px;
242
+ width: 38px;
243
+ height: 38px;
244
+ border-radius: 10px;
245
+ display: flex;
246
+ align-items: center;
247
+ justify-content: center;
248
+ transition: all 0.2s ease;
249
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
250
+
251
+ svg {
252
+ width: 18px;
253
+ height: 18px;
254
+ }
255
+
256
+ &:hover:not(:disabled) {
257
+ background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
258
+ border-color: #22C55E;
259
+ color: white;
260
+ transform: translateY(-1px);
261
+ box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
262
+ }
263
+
264
+ &:disabled {
265
+ opacity: 0.6;
266
+ cursor: not-allowed;
267
+ }
268
+ }
269
+ `;
270
+ styled(Button)`
271
+ && {
272
+ background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
273
+ color: #F59E0B;
274
+ border: 1px solid #FDE68A;
275
+ padding: 8px;
276
+ min-width: 38px;
277
+ min-height: 38px;
278
+ width: 38px;
279
+ height: 38px;
280
+ border-radius: 10px;
281
+ display: flex;
282
+ align-items: center;
283
+ justify-content: center;
284
+ transition: all 0.2s ease;
285
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
286
+
287
+ svg {
288
+ width: 18px;
289
+ height: 18px;
290
+ }
291
+
292
+ &:hover:not(:disabled) {
293
+ background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
294
+ border-color: #F59E0B;
295
+ color: white;
296
+ transform: translateY(-1px);
297
+ box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
298
+ }
299
+
300
+ &:disabled {
301
+ opacity: 0.6;
302
+ cursor: not-allowed;
303
+ }
304
+ }
305
+ `;
306
+ const IconButtonPurple = styled(Button)`
307
+ && {
308
+ background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
309
+ color: #A855F7;
310
+ border: 1px solid #E9D5FF;
311
+ padding: 8px;
312
+ min-width: 38px;
313
+ min-height: 38px;
314
+ width: 38px;
315
+ height: 38px;
316
+ border-radius: 10px;
317
+ display: flex;
318
+ align-items: center;
319
+ justify-content: center;
320
+ transition: all 0.2s ease;
321
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
322
+
323
+ svg {
324
+ width: 18px;
325
+ height: 18px;
326
+ }
327
+
328
+ &:hover:not(:disabled) {
329
+ background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%);
330
+ border-color: #A855F7;
331
+ color: white;
332
+ transform: translateY(-1px);
333
+ box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
334
+ }
335
+
336
+ &:disabled {
337
+ opacity: 0.6;
338
+ cursor: not-allowed;
339
+ }
340
+ }
341
+ `;
342
+ const CTAButton = styled(Button)`
343
+ && {
344
+ background: linear-gradient(135deg, #0EA5E9 0%, #A855F7 100%);
345
+ color: white;
346
+ font-weight: 700;
347
+ font-size: 1rem;
348
+ border: none;
349
+ padding: 14px 28px;
350
+ min-height: 52px;
351
+ border-radius: 12px;
352
+ transition: all 0.2s ease;
353
+ box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
354
+
355
+ &:hover:not(:disabled) {
356
+ background: linear-gradient(135deg, #0284C7 0%, #9333EA 100%);
357
+ transform: translateY(-2px);
358
+ box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
359
+ }
360
+
361
+ &:active:not(:disabled) {
362
+ transform: translateY(0);
363
+ }
364
+
365
+ &:disabled {
366
+ opacity: 0.6;
367
+ cursor: not-allowed;
368
+ }
369
+ }
370
+ `;
371
+ styled(Button)`
372
+ && {
373
+ background: transparent;
374
+ color: #0EA5E9;
375
+ font-weight: 500;
376
+ border: none;
377
+ padding: 4px 8px;
378
+ min-height: auto;
379
+ text-decoration: underline;
380
+ transition: all 0.2s ease;
381
+
382
+ &:hover:not(:disabled) {
383
+ color: #0284C7;
384
+ text-decoration: none;
385
+ }
386
+
387
+ &:disabled {
388
+ opacity: 0.6;
389
+ cursor: not-allowed;
390
+ }
391
+ }
392
+ `;
393
+ const WhiteOutlineButton = styled(Button)`
394
+ && {
395
+ background: rgba(255, 255, 255, 0.15);
396
+ color: white;
397
+ font-weight: 600;
398
+ border: 2px solid rgba(255, 255, 255, 0.4);
399
+ padding: 8px 16px;
400
+ min-height: 38px;
401
+ border-radius: 8px;
402
+ backdrop-filter: blur(4px);
403
+ transition: all 0.2s ease;
404
+
405
+ &:hover:not(:disabled) {
406
+ background: rgba(255, 255, 255, 0.25);
407
+ border-color: rgba(255, 255, 255, 0.6);
408
+ transform: translateY(-1px);
409
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
410
+ }
411
+
412
+ &:active:not(:disabled) {
413
+ transform: translateY(0);
414
+ }
415
+
416
+ &:disabled {
417
+ opacity: 0.6;
418
+ cursor: not-allowed;
419
+ }
420
+ }
421
+ `;
422
+ export {
423
+ CTAButton as C,
424
+ DangerButton as D,
425
+ GradientButton as G,
426
+ IconButton as I,
427
+ SecondaryButton as S,
428
+ TertiaryButton as T,
429
+ WhiteOutlineButton as W,
430
+ IconButtonPrimary as a,
431
+ IconButtonDanger as b,
432
+ IconButtonPurple as c,
433
+ IconButtonSuccess as d
434
+ };
@@ -78,7 +78,7 @@ const de = {
78
78
  "whatsapp.phoneHint": "Telefonnummer mit Landesvorwahl eingeben (z.B. 49 für Deutschland)",
79
79
  "whatsapp.message": "Nachricht (optional)",
80
80
  "whatsapp.notInstalled": "Abhängigkeiten nicht installiert",
81
- "whatsapp.installCommand": "npm install @whiskeysockets/baileys pino qrcode",
81
+ "whatsapp.installCommand": "npm install baileys pino qrcode",
82
82
  "whatsapp.freeLabel": "KOSTENLOS - Keine API-Kosten!"
83
83
  };
84
84
  exports.default = de;
@@ -76,7 +76,7 @@ const de = {
76
76
  "whatsapp.phoneHint": "Telefonnummer mit Landesvorwahl eingeben (z.B. 49 für Deutschland)",
77
77
  "whatsapp.message": "Nachricht (optional)",
78
78
  "whatsapp.notInstalled": "Abhängigkeiten nicht installiert",
79
- "whatsapp.installCommand": "npm install @whiskeysockets/baileys pino qrcode",
79
+ "whatsapp.installCommand": "npm install baileys pino qrcode",
80
80
  "whatsapp.freeLabel": "KOSTENLOS - Keine API-Kosten!"
81
81
  };
82
82
  export {
@@ -78,7 +78,7 @@ const en = {
78
78
  "whatsapp.phoneHint": "Enter phone number with country code (e.g., 49 for Germany)",
79
79
  "whatsapp.message": "Message (optional)",
80
80
  "whatsapp.notInstalled": "Dependencies Not Installed",
81
- "whatsapp.installCommand": "npm install @whiskeysockets/baileys pino qrcode",
81
+ "whatsapp.installCommand": "npm install baileys pino qrcode",
82
82
  "whatsapp.freeLabel": "FREE - No API costs!"
83
83
  };
84
84
  exports.default = en;
@@ -76,7 +76,7 @@ const en = {
76
76
  "whatsapp.phoneHint": "Enter phone number with country code (e.g., 49 for Germany)",
77
77
  "whatsapp.message": "Message (optional)",
78
78
  "whatsapp.notInstalled": "Dependencies Not Installed",
79
- "whatsapp.installCommand": "npm install @whiskeysockets/baileys pino qrcode",
79
+ "whatsapp.installCommand": "npm install baileys pino qrcode",
80
80
  "whatsapp.freeLabel": "FREE - No API costs!"
81
81
  };
82
82
  export {
@@ -42,28 +42,37 @@ const prefixPluginTranslations = (data, pluginId2) => {
42
42
  const index = {
43
43
  register(app) {
44
44
  app.addMenuLink({
45
- to: `/plugins/${pluginId}`,
45
+ to: `plugins/${pluginId}`,
46
46
  icon: PluginIcon,
47
47
  intlLabel: {
48
48
  id: `${pluginId}.plugin.name`,
49
49
  defaultMessage: "MagicMail"
50
50
  },
51
- Component: () => Promise.resolve().then(() => require("../_chunks/App-BMaJu77a.js"))
51
+ Component: () => Promise.resolve().then(() => require("../_chunks/App-58t1-H0G.js"))
52
52
  });
53
53
  app.createSettingSection(
54
54
  {
55
55
  intlLabel: { id: `${pluginId}.settings.section`, defaultMessage: "MagicMail" },
56
56
  id: pluginId,
57
- to: `/settings/${pluginId}`
57
+ to: pluginId
58
58
  },
59
59
  [
60
+ {
61
+ intlLabel: {
62
+ id: `${pluginId}.settings.plugin-settings`,
63
+ defaultMessage: "Plugin Settings"
64
+ },
65
+ id: "plugin-settings",
66
+ to: `${pluginId}/plugin-settings`,
67
+ Component: () => Promise.resolve().then(() => require("../_chunks/PluginSettings-D2BUUHY1.js"))
68
+ },
60
69
  {
61
70
  intlLabel: {
62
71
  id: `${pluginId}.settings.upgrade`,
63
72
  defaultMessage: "Upgrade"
64
73
  },
65
74
  id: "upgrade",
66
- to: `/settings/${pluginId}/upgrade`,
75
+ to: `${pluginId}/upgrade`,
67
76
  Component: () => Promise.resolve().then(() => require("../_chunks/LicensePage-Bg72gy8w.js"))
68
77
  },
69
78
  {
@@ -72,8 +81,8 @@ const index = {
72
81
  defaultMessage: "License Details"
73
82
  },
74
83
  id: "license",
75
- to: `/settings/${pluginId}/license`,
76
- Component: () => Promise.resolve().then(() => require("../_chunks/Settings-BSFLpt0H.js"))
84
+ to: `${pluginId}/license`,
85
+ Component: () => Promise.resolve().then(() => require("../_chunks/Settings-CPPrGxLm.js"))
77
86
  }
78
87
  ]
79
88
  );
@@ -87,7 +96,7 @@ const index = {
87
96
  async registerTrads({ locales }) {
88
97
  const importedTrads = await Promise.all(
89
98
  locales.map((locale) => {
90
- return __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "./translations/de.json": () => Promise.resolve().then(() => require("../_chunks/de-YhjDItIL.js")), "./translations/en.json": () => Promise.resolve().then(() => require("../_chunks/en-BcdTnA2-.js")), "./translations/es.json": () => Promise.resolve().then(() => require("../_chunks/es-BpV1MIdm.js")), "./translations/fr.json": () => Promise.resolve().then(() => require("../_chunks/fr-vpziIpRp.js")), "./translations/pt.json": () => Promise.resolve().then(() => require("../_chunks/pt-ODpAhDNa.js")) }), `./translations/${locale}.json`, 3).then(({ default: data }) => {
99
+ return __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "./translations/de.json": () => Promise.resolve().then(() => require("../_chunks/de-CF2ItE3Z.js")), "./translations/en.json": () => Promise.resolve().then(() => require("../_chunks/en-CK6UpShS.js")), "./translations/es.json": () => Promise.resolve().then(() => require("../_chunks/es-BpV1MIdm.js")), "./translations/fr.json": () => Promise.resolve().then(() => require("../_chunks/fr-vpziIpRp.js")), "./translations/pt.json": () => Promise.resolve().then(() => require("../_chunks/pt-ODpAhDNa.js")) }), `./translations/${locale}.json`, 3).then(({ default: data }) => {
91
100
  return {
92
101
  data: prefixPluginTranslations(data, pluginId),
93
102
  locale
@@ -41,28 +41,37 @@ const prefixPluginTranslations = (data, pluginId2) => {
41
41
  const index = {
42
42
  register(app) {
43
43
  app.addMenuLink({
44
- to: `/plugins/${pluginId}`,
44
+ to: `plugins/${pluginId}`,
45
45
  icon: PluginIcon,
46
46
  intlLabel: {
47
47
  id: `${pluginId}.plugin.name`,
48
48
  defaultMessage: "MagicMail"
49
49
  },
50
- Component: () => import("../_chunks/App-DxiMl-Zd.mjs")
50
+ Component: () => import("../_chunks/App-ClJVoU2s.mjs")
51
51
  });
52
52
  app.createSettingSection(
53
53
  {
54
54
  intlLabel: { id: `${pluginId}.settings.section`, defaultMessage: "MagicMail" },
55
55
  id: pluginId,
56
- to: `/settings/${pluginId}`
56
+ to: pluginId
57
57
  },
58
58
  [
59
+ {
60
+ intlLabel: {
61
+ id: `${pluginId}.settings.plugin-settings`,
62
+ defaultMessage: "Plugin Settings"
63
+ },
64
+ id: "plugin-settings",
65
+ to: `${pluginId}/plugin-settings`,
66
+ Component: () => import("../_chunks/PluginSettings-ywPWZVt0.mjs")
67
+ },
59
68
  {
60
69
  intlLabel: {
61
70
  id: `${pluginId}.settings.upgrade`,
62
71
  defaultMessage: "Upgrade"
63
72
  },
64
73
  id: "upgrade",
65
- to: `/settings/${pluginId}/upgrade`,
74
+ to: `${pluginId}/upgrade`,
66
75
  Component: () => import("../_chunks/LicensePage-ndUhjynY.mjs")
67
76
  },
68
77
  {
@@ -71,8 +80,8 @@ const index = {
71
80
  defaultMessage: "License Details"
72
81
  },
73
82
  id: "license",
74
- to: `/settings/${pluginId}/license`,
75
- Component: () => import("../_chunks/Settings-Ca5UE3c1.mjs")
83
+ to: `${pluginId}/license`,
84
+ Component: () => import("../_chunks/Settings-Cc-hhoLA.mjs")
76
85
  }
77
86
  ]
78
87
  );
@@ -86,7 +95,7 @@ const index = {
86
95
  async registerTrads({ locales }) {
87
96
  const importedTrads = await Promise.all(
88
97
  locales.map((locale) => {
89
- return __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "./translations/de.json": () => import("../_chunks/de-CpIQf94q.mjs"), "./translations/en.json": () => import("../_chunks/en-BHmOVzsP.mjs"), "./translations/es.json": () => import("../_chunks/es-DQHwzPpP.mjs"), "./translations/fr.json": () => import("../_chunks/fr-BG1WfEVm.mjs"), "./translations/pt.json": () => import("../_chunks/pt-CMoGrOib.mjs") }), `./translations/${locale}.json`, 3).then(({ default: data }) => {
98
+ return __variableDynamicImportRuntimeHelper(/* @__PURE__ */ Object.assign({ "./translations/de.json": () => import("../_chunks/de-CwbYw2jT.mjs"), "./translations/en.json": () => import("../_chunks/en-ZRmfU4qX.mjs"), "./translations/es.json": () => import("../_chunks/es-DQHwzPpP.mjs"), "./translations/fr.json": () => import("../_chunks/fr-BG1WfEVm.mjs"), "./translations/pt.json": () => import("../_chunks/pt-CMoGrOib.mjs") }), `./translations/${locale}.json`, 3).then(({ default: data }) => {
90
99
  return {
91
100
  data: prefixPluginTranslations(data, pluginId),
92
101
  locale