strapi-plugin-magic-mail 2.10.0 → 2.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,435 +0,0 @@
1
- "use strict";
2
- const styled = require("styled-components");
3
- const designSystem = require("@strapi/design-system");
4
- const _interopDefault = (e) => e && e.__esModule ? e : { default: e };
5
- const styled__default = /* @__PURE__ */ _interopDefault(styled);
6
- const GradientButton = styled__default.default(designSystem.Button)`
7
- && {
8
- background: linear-gradient(135deg, var(--colors-primary600, #0EA5E9) 0%, var(--colors-secondary500, #A855F7) 100%);
9
- color: white;
10
- font-weight: 600;
11
- border: none;
12
- padding: 10px 20px;
13
- min-height: 40px;
14
- transition: all 0.2s ease;
15
-
16
- &:hover:not(:disabled) {
17
- background: linear-gradient(135deg, var(--colors-primary700, #0284C7) 0%, var(--colors-secondary600, #9333EA) 100%);
18
- transform: translateY(-1px);
19
- box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
20
- }
21
-
22
- &:active:not(:disabled) {
23
- transform: translateY(0);
24
- }
25
-
26
- &:disabled {
27
- opacity: 0.6;
28
- cursor: not-allowed;
29
- }
30
- }
31
- `;
32
- const SecondaryButton = styled__default.default(designSystem.Button)`
33
- && {
34
- background: ${(p) => p.theme.colors.neutral0};
35
- color: var(--colors-secondary600, #7C3AED);
36
- font-weight: 600;
37
- border: 2px solid transparent;
38
- background-image: linear-gradient(${(p) => p.theme.colors.neutral0}, ${(p) => p.theme.colors.neutral0}), linear-gradient(135deg, var(--colors-primary600, #0EA5E9) 0%, var(--colors-secondary500, #A855F7) 100%);
39
- background-origin: border-box;
40
- background-clip: padding-box, border-box;
41
- padding: 10px 20px;
42
- min-height: 40px;
43
- transition: all 0.2s ease;
44
-
45
- &:hover:not(:disabled) {
46
- background: linear-gradient(135deg, var(--colors-primary600, #0EA5E9) 0%, var(--colors-secondary500, #A855F7) 100%);
47
- background-clip: padding-box;
48
- color: white;
49
- transform: translateY(-1px);
50
- box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
51
- }
52
-
53
- &:active:not(:disabled) {
54
- transform: translateY(0);
55
- }
56
-
57
- &:disabled {
58
- opacity: 0.6;
59
- cursor: not-allowed;
60
- }
61
- }
62
- `;
63
- const TertiaryButton = styled__default.default(designSystem.Button)`
64
- && {
65
- background: transparent;
66
- color: var(--colors-neutral600);
67
- font-weight: 500;
68
- border: 1px solid rgba(128, 128, 128, 0.2);
69
- padding: 10px 20px;
70
- min-height: 40px;
71
- transition: all 0.2s ease;
72
-
73
- &:hover:not(:disabled) {
74
- background: var(--colors-neutral100);
75
- border-color: rgba(128, 128, 128, 0.3);
76
- color: var(--colors-neutral800);
77
- }
78
-
79
- &:disabled {
80
- opacity: 0.6;
81
- cursor: not-allowed;
82
- }
83
- }
84
- `;
85
- const DangerButton = styled__default.default(designSystem.Button)`
86
- && {
87
- background: rgba(220, 38, 38, 0.12);
88
- color: var(--colors-danger600, #DC2626);
89
- font-weight: 600;
90
- border: 1px solid rgba(220, 38, 38, 0.3);
91
- padding: 10px 20px;
92
- min-height: 40px;
93
- transition: all 0.2s ease;
94
-
95
- &:hover:not(:disabled) {
96
- background: var(--colors-danger600, #DC2626);
97
- color: white;
98
- border-color: var(--colors-danger600, #DC2626);
99
- }
100
-
101
- &:disabled {
102
- opacity: 0.6;
103
- cursor: not-allowed;
104
- }
105
- }
106
- `;
107
- styled__default.default(designSystem.Button)`
108
- && {
109
- background: linear-gradient(135deg, var(--colors-success500, #10B981) 0%, var(--colors-success600, #059669) 100%);
110
- color: white;
111
- font-weight: 600;
112
- border: none;
113
- padding: 10px 20px;
114
- min-height: 40px;
115
- transition: all 0.2s ease;
116
-
117
- &:hover:not(:disabled) {
118
- background: linear-gradient(135deg, var(--colors-success600, #059669) 0%, var(--colors-success700, #047857) 100%);
119
- transform: translateY(-1px);
120
- box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
121
- }
122
-
123
- &:disabled {
124
- opacity: 0.6;
125
- cursor: not-allowed;
126
- }
127
- }
128
- `;
129
- const IconButton = styled__default.default(designSystem.Button)`
130
- && {
131
- background: linear-gradient(135deg, rgba(128, 128, 128, 0.04) 0%, rgba(128, 128, 128, 0.08) 100%);
132
- color: var(--colors-neutral600, #64748B);
133
- border: 1px solid rgba(128, 128, 128, 0.2);
134
- padding: 8px;
135
- min-width: 38px;
136
- min-height: 38px;
137
- width: 38px;
138
- height: 38px;
139
- border-radius: 10px;
140
- display: flex;
141
- align-items: center;
142
- justify-content: center;
143
- transition: all 0.2s ease;
144
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
145
-
146
- svg {
147
- width: 18px;
148
- height: 18px;
149
- }
150
-
151
- &:hover:not(:disabled) {
152
- background: linear-gradient(135deg, var(--colors-primary600, #0EA5E9) 0%, var(--colors-primary700, #0284C7) 100%);
153
- border-color: var(--colors-primary600, #0EA5E9);
154
- color: white;
155
- transform: translateY(-1px);
156
- box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
157
- }
158
-
159
- &:disabled {
160
- opacity: 0.6;
161
- cursor: not-allowed;
162
- }
163
- }
164
- `;
165
- const IconButtonDanger = styled__default.default(designSystem.Button)`
166
- && {
167
- background: linear-gradient(135deg, rgba(239, 68, 68, 0.06) 0%, rgba(220, 38, 38, 0.12) 100%);
168
- color: var(--colors-danger500, #EF4444);
169
- border: 1px solid rgba(220, 38, 38, 0.3);
170
- padding: 8px;
171
- min-width: 38px;
172
- min-height: 38px;
173
- width: 38px;
174
- height: 38px;
175
- border-radius: 10px;
176
- display: flex;
177
- align-items: center;
178
- justify-content: center;
179
- transition: all 0.2s ease;
180
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
181
-
182
- svg {
183
- width: 18px;
184
- height: 18px;
185
- }
186
-
187
- &:hover:not(:disabled) {
188
- background: linear-gradient(135deg, var(--colors-danger500, #EF4444) 0%, var(--colors-danger600, #DC2626) 100%);
189
- border-color: var(--colors-danger500, #EF4444);
190
- color: white;
191
- transform: translateY(-1px);
192
- box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
193
- }
194
-
195
- &:disabled {
196
- opacity: 0.6;
197
- cursor: not-allowed;
198
- }
199
- }
200
- `;
201
- const IconButtonPrimary = styled__default.default(designSystem.Button)`
202
- && {
203
- background: linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0%, rgba(14, 165, 233, 0.12) 100%);
204
- color: var(--colors-primary600, #0EA5E9);
205
- border: 1px solid rgba(14, 165, 233, 0.3);
206
- padding: 8px;
207
- min-width: 38px;
208
- min-height: 38px;
209
- width: 38px;
210
- height: 38px;
211
- border-radius: 10px;
212
- display: flex;
213
- align-items: center;
214
- justify-content: center;
215
- transition: all 0.2s ease;
216
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
217
-
218
- svg {
219
- width: 18px;
220
- height: 18px;
221
- }
222
-
223
- &:hover:not(:disabled) {
224
- background: linear-gradient(135deg, var(--colors-primary600, #0EA5E9) 0%, var(--colors-primary700, #0284C7) 100%);
225
- border-color: var(--colors-primary600, #0EA5E9);
226
- color: white;
227
- transform: translateY(-1px);
228
- box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
229
- }
230
-
231
- &:disabled {
232
- opacity: 0.6;
233
- cursor: not-allowed;
234
- }
235
- }
236
- `;
237
- const IconButtonSuccess = styled__default.default(designSystem.Button)`
238
- && {
239
- background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0.15) 100%);
240
- color: var(--colors-success600, #22C55E);
241
- border: 1px solid rgba(34, 197, 94, 0.3);
242
- padding: 8px;
243
- min-width: 38px;
244
- min-height: 38px;
245
- width: 38px;
246
- height: 38px;
247
- border-radius: 10px;
248
- display: flex;
249
- align-items: center;
250
- justify-content: center;
251
- transition: all 0.2s ease;
252
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
253
-
254
- svg {
255
- width: 18px;
256
- height: 18px;
257
- }
258
-
259
- &:hover:not(:disabled) {
260
- background: linear-gradient(135deg, var(--colors-success600, #22C55E) 0%, var(--colors-success700, #16A34A) 100%);
261
- border-color: var(--colors-success600, #22C55E);
262
- color: white;
263
- transform: translateY(-1px);
264
- box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
265
- }
266
-
267
- &:disabled {
268
- opacity: 0.6;
269
- cursor: not-allowed;
270
- }
271
- }
272
- `;
273
- styled__default.default(designSystem.Button)`
274
- && {
275
- background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(245, 158, 11, 0.15) 100%);
276
- color: var(--colors-warning500, #F59E0B);
277
- border: 1px solid rgba(234, 179, 8, 0.4);
278
- padding: 8px;
279
- min-width: 38px;
280
- min-height: 38px;
281
- width: 38px;
282
- height: 38px;
283
- border-radius: 10px;
284
- display: flex;
285
- align-items: center;
286
- justify-content: center;
287
- transition: all 0.2s ease;
288
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
289
-
290
- svg {
291
- width: 18px;
292
- height: 18px;
293
- }
294
-
295
- &:hover:not(:disabled) {
296
- background: linear-gradient(135deg, var(--colors-warning500, #F59E0B) 0%, var(--colors-warning600, #D97706) 100%);
297
- border-color: var(--colors-warning500, #F59E0B);
298
- color: white;
299
- transform: translateY(-1px);
300
- box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
301
- }
302
-
303
- &:disabled {
304
- opacity: 0.6;
305
- cursor: not-allowed;
306
- }
307
- }
308
- `;
309
- const IconButtonPurple = styled__default.default(designSystem.Button)`
310
- && {
311
- background: linear-gradient(135deg, rgba(168, 85, 247, 0.06) 0%, rgba(168, 85, 247, 0.12) 100%);
312
- color: var(--colors-secondary500, #A855F7);
313
- border: 1px solid rgba(139, 92, 246, 0.3);
314
- padding: 8px;
315
- min-width: 38px;
316
- min-height: 38px;
317
- width: 38px;
318
- height: 38px;
319
- border-radius: 10px;
320
- display: flex;
321
- align-items: center;
322
- justify-content: center;
323
- transition: all 0.2s ease;
324
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
325
-
326
- svg {
327
- width: 18px;
328
- height: 18px;
329
- }
330
-
331
- &:hover:not(:disabled) {
332
- background: linear-gradient(135deg, var(--colors-secondary500, #A855F7) 0%, var(--colors-secondary600, #9333EA) 100%);
333
- border-color: var(--colors-secondary500, #A855F7);
334
- color: white;
335
- transform: translateY(-1px);
336
- box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
337
- }
338
-
339
- &:disabled {
340
- opacity: 0.6;
341
- cursor: not-allowed;
342
- }
343
- }
344
- `;
345
- const CTAButton = styled__default.default(designSystem.Button)`
346
- && {
347
- background: linear-gradient(135deg, var(--colors-primary600, #0EA5E9) 0%, var(--colors-secondary500, #A855F7) 100%);
348
- color: white;
349
- font-weight: 700;
350
- font-size: 1rem;
351
- border: none;
352
- padding: 14px 28px;
353
- min-height: 52px;
354
- border-radius: 12px;
355
- transition: all 0.2s ease;
356
- box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
357
-
358
- &:hover:not(:disabled) {
359
- background: linear-gradient(135deg, var(--colors-primary700, #0284C7) 0%, var(--colors-secondary600, #9333EA) 100%);
360
- transform: translateY(-2px);
361
- box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
362
- }
363
-
364
- &:active:not(:disabled) {
365
- transform: translateY(0);
366
- }
367
-
368
- &:disabled {
369
- opacity: 0.6;
370
- cursor: not-allowed;
371
- }
372
- }
373
- `;
374
- styled__default.default(designSystem.Button)`
375
- && {
376
- background: transparent;
377
- color: var(--colors-primary600, #0EA5E9);
378
- font-weight: 500;
379
- border: none;
380
- padding: 4px 8px;
381
- min-height: auto;
382
- text-decoration: underline;
383
- transition: all 0.2s ease;
384
-
385
- &:hover:not(:disabled) {
386
- color: var(--colors-primary700, #0284C7);
387
- text-decoration: none;
388
- }
389
-
390
- &:disabled {
391
- opacity: 0.6;
392
- cursor: not-allowed;
393
- }
394
- }
395
- `;
396
- const WhiteOutlineButton = styled__default.default(designSystem.Button)`
397
- && {
398
- background: rgba(255, 255, 255, 0.15);
399
- color: white;
400
- font-weight: 600;
401
- border: 2px solid rgba(255, 255, 255, 0.4);
402
- padding: 8px 16px;
403
- min-height: 38px;
404
- border-radius: 8px;
405
- backdrop-filter: blur(4px);
406
- transition: all 0.2s ease;
407
-
408
- &:hover:not(:disabled) {
409
- background: rgba(255, 255, 255, 0.25);
410
- border-color: rgba(255, 255, 255, 0.6);
411
- transform: translateY(-1px);
412
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
413
- }
414
-
415
- &:active:not(:disabled) {
416
- transform: translateY(0);
417
- }
418
-
419
- &:disabled {
420
- opacity: 0.6;
421
- cursor: not-allowed;
422
- }
423
- }
424
- `;
425
- exports.CTAButton = CTAButton;
426
- exports.DangerButton = DangerButton;
427
- exports.GradientButton = GradientButton;
428
- exports.IconButton = IconButton;
429
- exports.IconButtonDanger = IconButtonDanger;
430
- exports.IconButtonPrimary = IconButtonPrimary;
431
- exports.IconButtonPurple = IconButtonPurple;
432
- exports.IconButtonSuccess = IconButtonSuccess;
433
- exports.SecondaryButton = SecondaryButton;
434
- exports.TertiaryButton = TertiaryButton;
435
- exports.WhiteOutlineButton = WhiteOutlineButton;
@@ -1,84 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const de = {
4
- "plugin.name": "MagicMail",
5
- "plugin.description": "Email Business Suite für Strapi v5",
6
- "tabs.accounts": "Email-Konten",
7
- "tabs.routing": "Routing-Regeln",
8
- "tabs.license": "Lizenz",
9
- "accounts.title": "Email-Konten",
10
- "accounts.subtitle": "Verwalte mehrere Email-Konten mit Smart Routing",
11
- "accounts.add": "Konto hinzufügen",
12
- "accounts.edit": "Konto bearbeiten",
13
- "accounts.delete": "Konto löschen",
14
- "accounts.test": "Testen",
15
- "accounts.empty": "Keine Email-Konten vorhanden",
16
- "accounts.emptyDescription": "Füge dein erstes Email-Konto hinzu um zu starten",
17
- "stats.emailsToday": "Heute versendet",
18
- "stats.totalSent": "Gesamt versendet",
19
- "stats.activeAccounts": "Aktive Konten",
20
- "providers.smtp": "SMTP",
21
- "providers.gmail": "Gmail OAuth",
22
- "providers.microsoft": "Microsoft OAuth",
23
- "providers.yahoo": "Yahoo Mail OAuth",
24
- "providers.sendgrid": "SendGrid",
25
- "providers.mailgun": "Mailgun",
26
- "routing.title": "Routing-Regeln",
27
- "routing.subtitle": "Definiere intelligente Routing-Regeln für Email-Versand",
28
- "routing.add": "Regel erstellen",
29
- "routing.edit": "Regel bearbeiten",
30
- "routing.delete": "Regel löschen",
31
- "routing.empty": "Keine Routing-Regeln vorhanden",
32
- "routing.emptyDescription": "Erstelle deine erste Routing-Regel",
33
- "license.title": "Lizenzverwaltung",
34
- "license.subtitle": "Verwalte deine MagicMail Lizenz",
35
- "license.active": "Lizenz aktiv",
36
- "license.inactive": "Keine aktive Lizenz",
37
- "license.demo": "Demo-Modus",
38
- "license.generate": "Kostenlose Lizenz generieren",
39
- "license.activate": "Lizenz aktivieren",
40
- "license.key": "Lizenzschlüssel",
41
- "license.email": "E-Mail-Adresse",
42
- "license.copyKey": "Schlüssel kopieren",
43
- "license.download": "Als TXT herunterladen",
44
- "license.refresh": "Status aktualisieren",
45
- "features.premium": "Premium Features",
46
- "features.advanced": "Erweiterte Features",
47
- "features.enterprise": "Enterprise Features",
48
- "notifications.accountCreated": "Email-Konto erfolgreich erstellt",
49
- "notifications.accountUpdated": "Email-Konto erfolgreich aktualisiert",
50
- "notifications.accountDeleted": "Email-Konto erfolgreich gelöscht",
51
- "notifications.testSuccess": "Test-Email erfolgreich versendet",
52
- "notifications.testFailed": "Test-Email fehlgeschlagen",
53
- "notifications.ruleCreated": "Routing-Regel erfolgreich erstellt",
54
- "notifications.ruleUpdated": "Routing-Regel erfolgreich aktualisiert",
55
- "notifications.ruleDeleted": "Routing-Regel erfolgreich gelöscht",
56
- "notifications.licenseActivated": "Lizenz erfolgreich aktiviert",
57
- "notifications.licenseCopied": "Lizenzschlüssel kopiert",
58
- "notifications.error": "Ein Fehler ist aufgetreten",
59
- "errors.noAccounts": "Keine Email-Konten verfügbar",
60
- "errors.providerNotAllowed": "Dieser Provider erfordert eine höhere Lizenz",
61
- "errors.accountLimitReached": "Konto-Limit erreicht. Upgrade erforderlich",
62
- "errors.ruleLimitReached": "Regel-Limit erreicht. Upgrade erforderlich",
63
- "whatsapp.title": "WhatsApp Integration",
64
- "whatsapp.subtitle": "Nachrichten via WhatsApp senden - komplett kostenlos!",
65
- "whatsapp.tab": "WhatsApp",
66
- "whatsapp.status.connected": "Verbunden",
67
- "whatsapp.status.connecting": "Verbinde...",
68
- "whatsapp.status.qr_pending": "Warte auf QR-Scan",
69
- "whatsapp.status.disconnected": "Nicht verbunden",
70
- "whatsapp.step1.title": "Installation prüfen",
71
- "whatsapp.step2.title": "WhatsApp verbinden",
72
- "whatsapp.step3.title": "QR-Code scannen",
73
- "whatsapp.step4.title": "Bereit zur Nutzung",
74
- "whatsapp.connect": "WhatsApp verbinden",
75
- "whatsapp.disconnect": "WhatsApp trennen",
76
- "whatsapp.sendTest": "Testnachricht senden",
77
- "whatsapp.phoneNumber": "Telefonnummer",
78
- "whatsapp.phoneHint": "Telefonnummer mit Landesvorwahl eingeben (z.B. 49 für Deutschland)",
79
- "whatsapp.message": "Nachricht (optional)",
80
- "whatsapp.notInstalled": "Abhängigkeiten nicht installiert",
81
- "whatsapp.installCommand": "npm install baileys pino qrcode",
82
- "whatsapp.freeLabel": "KOSTENLOS - Keine API-Kosten!"
83
- };
84
- exports.default = de;
@@ -1,84 +0,0 @@
1
- const de = {
2
- "plugin.name": "MagicMail",
3
- "plugin.description": "Email Business Suite für Strapi v5",
4
- "tabs.accounts": "Email-Konten",
5
- "tabs.routing": "Routing-Regeln",
6
- "tabs.license": "Lizenz",
7
- "accounts.title": "Email-Konten",
8
- "accounts.subtitle": "Verwalte mehrere Email-Konten mit Smart Routing",
9
- "accounts.add": "Konto hinzufügen",
10
- "accounts.edit": "Konto bearbeiten",
11
- "accounts.delete": "Konto löschen",
12
- "accounts.test": "Testen",
13
- "accounts.empty": "Keine Email-Konten vorhanden",
14
- "accounts.emptyDescription": "Füge dein erstes Email-Konto hinzu um zu starten",
15
- "stats.emailsToday": "Heute versendet",
16
- "stats.totalSent": "Gesamt versendet",
17
- "stats.activeAccounts": "Aktive Konten",
18
- "providers.smtp": "SMTP",
19
- "providers.gmail": "Gmail OAuth",
20
- "providers.microsoft": "Microsoft OAuth",
21
- "providers.yahoo": "Yahoo Mail OAuth",
22
- "providers.sendgrid": "SendGrid",
23
- "providers.mailgun": "Mailgun",
24
- "routing.title": "Routing-Regeln",
25
- "routing.subtitle": "Definiere intelligente Routing-Regeln für Email-Versand",
26
- "routing.add": "Regel erstellen",
27
- "routing.edit": "Regel bearbeiten",
28
- "routing.delete": "Regel löschen",
29
- "routing.empty": "Keine Routing-Regeln vorhanden",
30
- "routing.emptyDescription": "Erstelle deine erste Routing-Regel",
31
- "license.title": "Lizenzverwaltung",
32
- "license.subtitle": "Verwalte deine MagicMail Lizenz",
33
- "license.active": "Lizenz aktiv",
34
- "license.inactive": "Keine aktive Lizenz",
35
- "license.demo": "Demo-Modus",
36
- "license.generate": "Kostenlose Lizenz generieren",
37
- "license.activate": "Lizenz aktivieren",
38
- "license.key": "Lizenzschlüssel",
39
- "license.email": "E-Mail-Adresse",
40
- "license.copyKey": "Schlüssel kopieren",
41
- "license.download": "Als TXT herunterladen",
42
- "license.refresh": "Status aktualisieren",
43
- "features.premium": "Premium Features",
44
- "features.advanced": "Erweiterte Features",
45
- "features.enterprise": "Enterprise Features",
46
- "notifications.accountCreated": "Email-Konto erfolgreich erstellt",
47
- "notifications.accountUpdated": "Email-Konto erfolgreich aktualisiert",
48
- "notifications.accountDeleted": "Email-Konto erfolgreich gelöscht",
49
- "notifications.testSuccess": "Test-Email erfolgreich versendet",
50
- "notifications.testFailed": "Test-Email fehlgeschlagen",
51
- "notifications.ruleCreated": "Routing-Regel erfolgreich erstellt",
52
- "notifications.ruleUpdated": "Routing-Regel erfolgreich aktualisiert",
53
- "notifications.ruleDeleted": "Routing-Regel erfolgreich gelöscht",
54
- "notifications.licenseActivated": "Lizenz erfolgreich aktiviert",
55
- "notifications.licenseCopied": "Lizenzschlüssel kopiert",
56
- "notifications.error": "Ein Fehler ist aufgetreten",
57
- "errors.noAccounts": "Keine Email-Konten verfügbar",
58
- "errors.providerNotAllowed": "Dieser Provider erfordert eine höhere Lizenz",
59
- "errors.accountLimitReached": "Konto-Limit erreicht. Upgrade erforderlich",
60
- "errors.ruleLimitReached": "Regel-Limit erreicht. Upgrade erforderlich",
61
- "whatsapp.title": "WhatsApp Integration",
62
- "whatsapp.subtitle": "Nachrichten via WhatsApp senden - komplett kostenlos!",
63
- "whatsapp.tab": "WhatsApp",
64
- "whatsapp.status.connected": "Verbunden",
65
- "whatsapp.status.connecting": "Verbinde...",
66
- "whatsapp.status.qr_pending": "Warte auf QR-Scan",
67
- "whatsapp.status.disconnected": "Nicht verbunden",
68
- "whatsapp.step1.title": "Installation prüfen",
69
- "whatsapp.step2.title": "WhatsApp verbinden",
70
- "whatsapp.step3.title": "QR-Code scannen",
71
- "whatsapp.step4.title": "Bereit zur Nutzung",
72
- "whatsapp.connect": "WhatsApp verbinden",
73
- "whatsapp.disconnect": "WhatsApp trennen",
74
- "whatsapp.sendTest": "Testnachricht senden",
75
- "whatsapp.phoneNumber": "Telefonnummer",
76
- "whatsapp.phoneHint": "Telefonnummer mit Landesvorwahl eingeben (z.B. 49 für Deutschland)",
77
- "whatsapp.message": "Nachricht (optional)",
78
- "whatsapp.notInstalled": "Abhängigkeiten nicht installiert",
79
- "whatsapp.installCommand": "npm install baileys pino qrcode",
80
- "whatsapp.freeLabel": "KOSTENLOS - Keine API-Kosten!"
81
- };
82
- export {
83
- de as default
84
- };
@@ -1,84 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const en = {
4
- "plugin.name": "MagicMail",
5
- "plugin.description": "Email Business Suite for Strapi v5",
6
- "tabs.accounts": "Email Accounts",
7
- "tabs.routing": "Routing Rules",
8
- "tabs.license": "License",
9
- "accounts.title": "Email Accounts",
10
- "accounts.subtitle": "Manage multiple email accounts with Smart Routing",
11
- "accounts.add": "Add Account",
12
- "accounts.edit": "Edit Account",
13
- "accounts.delete": "Delete Account",
14
- "accounts.test": "Test",
15
- "accounts.empty": "No email accounts yet",
16
- "accounts.emptyDescription": "Add your first email account to get started",
17
- "stats.emailsToday": "Sent Today",
18
- "stats.totalSent": "Total Sent",
19
- "stats.activeAccounts": "Active Accounts",
20
- "providers.smtp": "SMTP",
21
- "providers.gmail": "Gmail OAuth",
22
- "providers.microsoft": "Microsoft OAuth",
23
- "providers.yahoo": "Yahoo Mail OAuth",
24
- "providers.sendgrid": "SendGrid",
25
- "providers.mailgun": "Mailgun",
26
- "routing.title": "Routing Rules",
27
- "routing.subtitle": "Define intelligent routing rules for email sending",
28
- "routing.add": "Create Rule",
29
- "routing.edit": "Edit Rule",
30
- "routing.delete": "Delete Rule",
31
- "routing.empty": "No routing rules yet",
32
- "routing.emptyDescription": "Create your first routing rule",
33
- "license.title": "License Management",
34
- "license.subtitle": "Manage your MagicMail license",
35
- "license.active": "License Active",
36
- "license.inactive": "No Active License",
37
- "license.demo": "Demo Mode",
38
- "license.generate": "Generate Free License",
39
- "license.activate": "Activate License",
40
- "license.key": "License Key",
41
- "license.email": "Email Address",
42
- "license.copyKey": "Copy Key",
43
- "license.download": "Download as TXT",
44
- "license.refresh": "Refresh Status",
45
- "features.premium": "Premium Features",
46
- "features.advanced": "Advanced Features",
47
- "features.enterprise": "Enterprise Features",
48
- "notifications.accountCreated": "Email account created successfully",
49
- "notifications.accountUpdated": "Email account updated successfully",
50
- "notifications.accountDeleted": "Email account deleted successfully",
51
- "notifications.testSuccess": "Test email sent successfully",
52
- "notifications.testFailed": "Test email failed",
53
- "notifications.ruleCreated": "Routing rule created successfully",
54
- "notifications.ruleUpdated": "Routing rule updated successfully",
55
- "notifications.ruleDeleted": "Routing rule deleted successfully",
56
- "notifications.licenseActivated": "License activated successfully",
57
- "notifications.licenseCopied": "License key copied",
58
- "notifications.error": "An error occurred",
59
- "errors.noAccounts": "No email accounts available",
60
- "errors.providerNotAllowed": "This provider requires a higher license",
61
- "errors.accountLimitReached": "Account limit reached. Upgrade required",
62
- "errors.ruleLimitReached": "Rule limit reached. Upgrade required",
63
- "whatsapp.title": "WhatsApp Integration",
64
- "whatsapp.subtitle": "Send messages via WhatsApp - completely free!",
65
- "whatsapp.tab": "WhatsApp",
66
- "whatsapp.status.connected": "Connected",
67
- "whatsapp.status.connecting": "Connecting...",
68
- "whatsapp.status.qr_pending": "Waiting for QR Scan",
69
- "whatsapp.status.disconnected": "Disconnected",
70
- "whatsapp.step1.title": "Check Installation",
71
- "whatsapp.step2.title": "Connect WhatsApp",
72
- "whatsapp.step3.title": "Scan QR Code",
73
- "whatsapp.step4.title": "Ready to Use",
74
- "whatsapp.connect": "Connect WhatsApp",
75
- "whatsapp.disconnect": "Disconnect WhatsApp",
76
- "whatsapp.sendTest": "Send Test Message",
77
- "whatsapp.phoneNumber": "Phone Number",
78
- "whatsapp.phoneHint": "Enter phone number with country code (e.g., 49 for Germany)",
79
- "whatsapp.message": "Message (optional)",
80
- "whatsapp.notInstalled": "Dependencies Not Installed",
81
- "whatsapp.installCommand": "npm install baileys pino qrcode",
82
- "whatsapp.freeLabel": "FREE - No API costs!"
83
- };
84
- exports.default = en;