@strapi/email 5.43.0 → 5.45.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.
- package/dist/admin/index.js +14 -16
- package/dist/admin/index.js.map +1 -1
- package/dist/admin/index.mjs +13 -15
- package/dist/admin/index.mjs.map +1 -1
- package/dist/admin/translations/cs.json.js +50 -2
- package/dist/admin/translations/cs.json.js.map +1 -1
- package/dist/admin/translations/cs.json.mjs +47 -2
- package/dist/admin/translations/cs.json.mjs.map +1 -1
- package/package.json +5 -5
package/dist/admin/index.js
CHANGED
|
@@ -8,7 +8,7 @@ function _interopNamespaceDefaultOnly (e) { return Object.freeze({ __proto__: nu
|
|
|
8
8
|
function __variableDynamicImportRuntime1__(path) {
|
|
9
9
|
switch (path) {
|
|
10
10
|
case './translations/ar.json': return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespaceDefaultOnly(require('./translations/ar.json.js')); });
|
|
11
|
-
case './translations/cs.json': return Promise.resolve().then(function () { return
|
|
11
|
+
case './translations/cs.json': return Promise.resolve().then(function () { return require('./translations/cs.json.js'); });
|
|
12
12
|
case './translations/de.json': return Promise.resolve().then(function () { return require('./translations/de.json.js'); });
|
|
13
13
|
case './translations/dk.json': return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespaceDefaultOnly(require('./translations/dk.json.js')); });
|
|
14
14
|
case './translations/en.json': return Promise.resolve().then(function () { return require('./translations/en.json.js'); });
|
|
@@ -43,26 +43,24 @@ const admin = {
|
|
|
43
43
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
44
44
|
register (app) {
|
|
45
45
|
// Create the email settings section
|
|
46
|
-
app.
|
|
46
|
+
app.addSettingsLink({
|
|
47
47
|
id: 'email',
|
|
48
48
|
intlLabel: {
|
|
49
49
|
id: 'email.SettingsNav.section-label',
|
|
50
50
|
defaultMessage: 'Email Plugin'
|
|
51
51
|
}
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}
|
|
65
|
-
]);
|
|
52
|
+
}, {
|
|
53
|
+
intlLabel: {
|
|
54
|
+
id: 'email.Settings.email.plugin.title',
|
|
55
|
+
defaultMessage: 'Settings'
|
|
56
|
+
},
|
|
57
|
+
id: 'settings',
|
|
58
|
+
to: 'email',
|
|
59
|
+
Component: ()=>Promise.resolve().then(function () { return require('./pages/Settings.js'); }).then((mod)=>({
|
|
60
|
+
default: mod.ProtectedSettingsPage
|
|
61
|
+
})),
|
|
62
|
+
permissions: constants.PERMISSIONS.settings
|
|
63
|
+
});
|
|
66
64
|
app.registerPlugin({
|
|
67
65
|
id: 'email',
|
|
68
66
|
name: 'email'
|
package/dist/admin/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../admin/src/index.ts"],"sourcesContent":["import { PERMISSIONS } from './constants';\nimport { prefixPluginTranslations } from './utils/prefixPluginTranslations';\n\nimport type { Plugin } from '@strapi/types';\n\nconst admin: Plugin.Config.AdminInput = {\n // TODO typing app in strapi/types as every plugin needs it\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n register(app:
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../admin/src/index.ts"],"sourcesContent":["import { PERMISSIONS } from './constants';\nimport { prefixPluginTranslations } from './utils/prefixPluginTranslations';\n\nimport type { StrapiApp } from '@strapi/admin/strapi-admin';\nimport type { Plugin } from '@strapi/types';\n\nconst admin: Plugin.Config.AdminInput = {\n // TODO typing app in strapi/types as every plugin needs it\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n register(app: StrapiApp) {\n // Create the email settings section\n app.addSettingsLink(\n {\n id: 'email',\n intlLabel: { id: 'email.SettingsNav.section-label', defaultMessage: 'Email Plugin' },\n },\n {\n intlLabel: {\n id: 'email.Settings.email.plugin.title',\n defaultMessage: 'Settings',\n },\n id: 'settings',\n to: 'email',\n Component: () =>\n import('./pages/Settings').then((mod) => ({\n default: mod.ProtectedSettingsPage,\n })),\n permissions: PERMISSIONS.settings,\n }\n );\n app.registerPlugin({\n id: 'email',\n name: 'email',\n });\n },\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n bootstrap() {},\n async registerTrads({ locales }: { locales: string[] }) {\n const importedTrads = await Promise.all(\n locales.map((locale) => {\n return import(`./translations/${locale}.json`)\n .then(({ default: data }) => {\n return {\n data: prefixPluginTranslations(data, 'email'),\n locale,\n };\n })\n .catch(() => {\n return {\n data: {},\n locale,\n };\n });\n })\n );\n\n return Promise.resolve(importedTrads);\n },\n};\n\n// eslint-disable-next-line import/no-default-export\nexport default admin;\n"],"names":["admin","register","app","addSettingsLink","id","intlLabel","defaultMessage","to","Component","then","mod","default","ProtectedSettingsPage","permissions","PERMISSIONS","settings","registerPlugin","name","bootstrap","registerTrads","locales","importedTrads","Promise","all","map","locale","data","prefixPluginTranslations","catch","resolve"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,MAAMA,KAAAA,GAAkC;;;AAGtCC,IAAAA,QAAAA,CAAAA,CAASC,GAAc,EAAA;;AAErBA,QAAAA,GAAAA,CAAIC,eAAe,CACjB;YACEC,EAAAA,EAAI,OAAA;YACJC,SAAAA,EAAW;gBAAED,EAAAA,EAAI,iCAAA;gBAAmCE,cAAAA,EAAgB;AAAe;SACrF,EACA;YACED,SAAAA,EAAW;gBACTD,EAAAA,EAAI,mCAAA;gBACJE,cAAAA,EAAgB;AAClB,aAAA;YACAF,EAAAA,EAAI,UAAA;YACJG,EAAAA,EAAI,OAAA;YACJC,SAAAA,EAAW,IACT,oDAAO,qBAAA,KAAA,CAAoBC,IAAI,CAAC,CAACC,OAAS;AACxCC,wBAAAA,OAAAA,EAASD,IAAIE;qBACf,CAAA,CAAA;AACFC,YAAAA,WAAAA,EAAaC,sBAAYC;AAC3B,SAAA,CAAA;AAEFb,QAAAA,GAAAA,CAAIc,cAAc,CAAC;YACjBZ,EAAAA,EAAI,OAAA;YACJa,IAAAA,EAAM;AACR,SAAA,CAAA;AACF,IAAA,CAAA;;IAEAC,SAAAA,CAAAA,GAAAA,CAAa,CAAA;IACb,MAAMC,aAAAA,CAAAA,CAAc,EAAEC,OAAO,EAAyB,EAAA;QACpD,MAAMC,aAAAA,GAAgB,MAAMC,OAAAA,CAAQC,GAAG,CACrCH,OAAAA,CAAQI,GAAG,CAAC,CAACC,MAAAA,GAAAA;AACX,YAAA,OAAO,iCAAM,CAAC,CAAC,eAAe,EAAEA,MAAAA,CAAO,KAAK,CAAC,CAAA,CAC1ChB,IAAI,CAAC,CAAC,EAAEE,OAAAA,EAASe,IAAI,EAAE,GAAA;gBACtB,OAAO;AACLA,oBAAAA,IAAAA,EAAMC,kDAAyBD,IAAAA,EAAM,OAAA,CAAA;AACrCD,oBAAAA;AACF,iBAAA;AACF,YAAA,CAAA,CAAA,CACCG,KAAK,CAAC,IAAA;gBACL,OAAO;AACLF,oBAAAA,IAAAA,EAAM,EAAC;AACPD,oBAAAA;AACF,iBAAA;AACF,YAAA,CAAA,CAAA;AACJ,QAAA,CAAA,CAAA,CAAA;QAGF,OAAOH,OAAAA,CAAQO,OAAO,CAACR,aAAAA,CAAAA;AACzB,IAAA;AACF;;;;"}
|
package/dist/admin/index.mjs
CHANGED
|
@@ -39,26 +39,24 @@ const admin = {
|
|
|
39
39
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
40
40
|
register (app) {
|
|
41
41
|
// Create the email settings section
|
|
42
|
-
app.
|
|
42
|
+
app.addSettingsLink({
|
|
43
43
|
id: 'email',
|
|
44
44
|
intlLabel: {
|
|
45
45
|
id: 'email.SettingsNav.section-label',
|
|
46
46
|
defaultMessage: 'Email Plugin'
|
|
47
47
|
}
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
]);
|
|
48
|
+
}, {
|
|
49
|
+
intlLabel: {
|
|
50
|
+
id: 'email.Settings.email.plugin.title',
|
|
51
|
+
defaultMessage: 'Settings'
|
|
52
|
+
},
|
|
53
|
+
id: 'settings',
|
|
54
|
+
to: 'email',
|
|
55
|
+
Component: ()=>import('./pages/Settings.mjs').then((mod)=>({
|
|
56
|
+
default: mod.ProtectedSettingsPage
|
|
57
|
+
})),
|
|
58
|
+
permissions: PERMISSIONS.settings
|
|
59
|
+
});
|
|
62
60
|
app.registerPlugin({
|
|
63
61
|
id: 'email',
|
|
64
62
|
name: 'email'
|
package/dist/admin/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../admin/src/index.ts"],"sourcesContent":["import { PERMISSIONS } from './constants';\nimport { prefixPluginTranslations } from './utils/prefixPluginTranslations';\n\nimport type { Plugin } from '@strapi/types';\n\nconst admin: Plugin.Config.AdminInput = {\n // TODO typing app in strapi/types as every plugin needs it\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n register(app:
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../admin/src/index.ts"],"sourcesContent":["import { PERMISSIONS } from './constants';\nimport { prefixPluginTranslations } from './utils/prefixPluginTranslations';\n\nimport type { StrapiApp } from '@strapi/admin/strapi-admin';\nimport type { Plugin } from '@strapi/types';\n\nconst admin: Plugin.Config.AdminInput = {\n // TODO typing app in strapi/types as every plugin needs it\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n register(app: StrapiApp) {\n // Create the email settings section\n app.addSettingsLink(\n {\n id: 'email',\n intlLabel: { id: 'email.SettingsNav.section-label', defaultMessage: 'Email Plugin' },\n },\n {\n intlLabel: {\n id: 'email.Settings.email.plugin.title',\n defaultMessage: 'Settings',\n },\n id: 'settings',\n to: 'email',\n Component: () =>\n import('./pages/Settings').then((mod) => ({\n default: mod.ProtectedSettingsPage,\n })),\n permissions: PERMISSIONS.settings,\n }\n );\n app.registerPlugin({\n id: 'email',\n name: 'email',\n });\n },\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n bootstrap() {},\n async registerTrads({ locales }: { locales: string[] }) {\n const importedTrads = await Promise.all(\n locales.map((locale) => {\n return import(`./translations/${locale}.json`)\n .then(({ default: data }) => {\n return {\n data: prefixPluginTranslations(data, 'email'),\n locale,\n };\n })\n .catch(() => {\n return {\n data: {},\n locale,\n };\n });\n })\n );\n\n return Promise.resolve(importedTrads);\n },\n};\n\n// eslint-disable-next-line import/no-default-export\nexport default admin;\n"],"names":["admin","register","app","addSettingsLink","id","intlLabel","defaultMessage","to","Component","then","mod","default","ProtectedSettingsPage","permissions","PERMISSIONS","settings","registerPlugin","name","bootstrap","registerTrads","locales","importedTrads","Promise","all","map","locale","data","prefixPluginTranslations","catch","resolve"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,MAAMA,KAAAA,GAAkC;;;AAGtCC,IAAAA,QAAAA,CAAAA,CAASC,GAAc,EAAA;;AAErBA,QAAAA,GAAAA,CAAIC,eAAe,CACjB;YACEC,EAAAA,EAAI,OAAA;YACJC,SAAAA,EAAW;gBAAED,EAAAA,EAAI,iCAAA;gBAAmCE,cAAAA,EAAgB;AAAe;SACrF,EACA;YACED,SAAAA,EAAW;gBACTD,EAAAA,EAAI,mCAAA;gBACJE,cAAAA,EAAgB;AAClB,aAAA;YACAF,EAAAA,EAAI,UAAA;YACJG,EAAAA,EAAI,OAAA;YACJC,SAAAA,EAAW,IACT,OAAO,sBAAA,CAAA,CAAoBC,IAAI,CAAC,CAACC,OAAS;AACxCC,wBAAAA,OAAAA,EAASD,IAAIE;qBACf,CAAA,CAAA;AACFC,YAAAA,WAAAA,EAAaC,YAAYC;AAC3B,SAAA,CAAA;AAEFb,QAAAA,GAAAA,CAAIc,cAAc,CAAC;YACjBZ,EAAAA,EAAI,OAAA;YACJa,IAAAA,EAAM;AACR,SAAA,CAAA;AACF,IAAA,CAAA;;IAEAC,SAAAA,CAAAA,GAAAA,CAAa,CAAA;IACb,MAAMC,aAAAA,CAAAA,CAAc,EAAEC,OAAO,EAAyB,EAAA;QACpD,MAAMC,aAAAA,GAAgB,MAAMC,OAAAA,CAAQC,GAAG,CACrCH,OAAAA,CAAQI,GAAG,CAAC,CAACC,MAAAA,GAAAA;AACX,YAAA,OAAO,iCAAM,CAAC,CAAC,eAAe,EAAEA,MAAAA,CAAO,KAAK,CAAC,CAAA,CAC1ChB,IAAI,CAAC,CAAC,EAAEE,OAAAA,EAASe,IAAI,EAAE,GAAA;gBACtB,OAAO;AACLA,oBAAAA,IAAAA,EAAMC,yBAAyBD,IAAAA,EAAM,OAAA,CAAA;AACrCD,oBAAAA;AACF,iBAAA;AACF,YAAA,CAAA,CAAA,CACCG,KAAK,CAAC,IAAA;gBACL,OAAO;AACLF,oBAAAA,IAAAA,EAAM,EAAC;AACPD,oBAAAA;AACF,iBAAA;AACF,YAAA,CAAA,CAAA;AACJ,QAAA,CAAA,CAAA,CAAA;QAGF,OAAOH,OAAAA,CAAQO,OAAO,CAACR,aAAAA,CAAAA;AACzB,IAAA;AACF;;;;"}
|
|
@@ -1,6 +1,54 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
var link = "Odkaz";
|
|
6
|
+
var cs = {
|
|
7
|
+
link: link,
|
|
8
|
+
"Settings.email.plugin.button.test-email": "Odeslat testovací e-mail",
|
|
9
|
+
"Settings.email.plugin.button.verify": "Otestovat připojení",
|
|
10
|
+
"Settings.email.plugin.label.defaultFrom": "Výchozí e-mail odesílatele",
|
|
11
|
+
"Settings.email.plugin.label.defaultReplyTo": "Výchozí e-mail pro odpověď",
|
|
12
|
+
"Settings.email.plugin.label.provider": "Poskytovatel e-mailu",
|
|
13
|
+
"Settings.email.plugin.label.replyToName": "Výchozí jméno pro odpověď",
|
|
14
|
+
"Settings.email.plugin.label.senderName": "Výchozí jméno odesílatele",
|
|
15
|
+
"Settings.email.plugin.label.testAddress": "E-mail příjemce",
|
|
16
|
+
"Settings.email.plugin.label.verifyConnection": "Stav připojení",
|
|
17
|
+
"Settings.email.plugin.notification.config.error": "Nepodařilo se načíst konfiguraci e-mailu",
|
|
18
|
+
"Settings.email.plugin.notification.data.loaded": "Data nastavení e-mailu byla načtena",
|
|
19
|
+
"Settings.email.plugin.notification.test.error": "Nepodařilo se odeslat testovací e-mail na adresu {to}",
|
|
20
|
+
"Settings.email.plugin.notification.test.success": "Test e-mailu proběhl úspěšně, zkontrolujte schránku {to}",
|
|
21
|
+
"Settings.email.plugin.notification.verify.error": "Ověření připojení selhalo",
|
|
22
|
+
"Settings.email.plugin.notification.verify.success": "Připojení bylo úspěšně ověřeno",
|
|
23
|
+
"Settings.email.plugin.placeholder.defaultFrom": "např.: Strapi No-Reply <no-reply@strapi.io>",
|
|
24
|
+
"Settings.email.plugin.placeholder.defaultReplyTo": "např.: Strapi <example@strapi.io>",
|
|
25
|
+
"Settings.email.plugin.placeholder.testAddress": "např.: developer@example.com",
|
|
26
|
+
"Settings.email.plugin.status.connected": "Připojeno",
|
|
27
|
+
"Settings.email.plugin.status.error": "Chyba",
|
|
28
|
+
"Settings.email.plugin.subTitle": "Otestujte nastavení pluginu E-mail",
|
|
29
|
+
"Settings.email.plugin.text.configuration": "Plugin se konfiguruje prostřednictvím souboru {file}, dokumentaci najdete na tomto {link}.",
|
|
30
|
+
"Settings.email.plugin.title": "Konfigurace",
|
|
31
|
+
"Settings.email.plugin.title.config": "Konfigurace",
|
|
32
|
+
"Settings.email.plugin.title.test": "Test doručování e-mailů",
|
|
33
|
+
"SettingsNav.link.settings": "Nastavení",
|
|
34
|
+
"SettingsNav.section-label": "Plugin E-mail",
|
|
35
|
+
"components.Input.error.validation.email": "Toto není platná e-mailová adresa",
|
|
36
|
+
"Settings.capabilities.title": "Možnosti poskytovatele",
|
|
37
|
+
"Settings.capabilities.subtitle": "Aktuální konfigurace SMTP a povolené funkce",
|
|
38
|
+
"Settings.capabilities.label.smtpServer": "SMTP server",
|
|
39
|
+
"Settings.capabilities.label.encryption": "Šifrování",
|
|
40
|
+
"Settings.capabilities.label.authType": "Ověřování",
|
|
41
|
+
"Settings.capabilities.label.poolStatus": "Stav poolu",
|
|
42
|
+
"Settings.capabilities.label.features": "Povolené funkce",
|
|
43
|
+
"Settings.capabilities.poolStatus.idle": "Nečinný",
|
|
44
|
+
"Settings.capabilities.poolStatus.active": "Aktivní",
|
|
45
|
+
"Settings.capabilities.feature.dkim": "DKIM",
|
|
46
|
+
"Settings.capabilities.feature.pool": "Pool připojení",
|
|
47
|
+
"Settings.capabilities.feature.rateLimiting": "Omezení rychlosti",
|
|
48
|
+
"Settings.capabilities.feature.oauth2": "OAuth2",
|
|
49
|
+
"Settings.capabilities.feature.requireTLS": "Vyžadovat TLS"
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
exports.default = cs;
|
|
53
|
+
exports.link = link;
|
|
6
54
|
//# sourceMappingURL=cs.json.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cs.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"cs.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,49 @@
|
|
|
1
|
-
var
|
|
1
|
+
var link = "Odkaz";
|
|
2
|
+
var cs = {
|
|
3
|
+
link: link,
|
|
4
|
+
"Settings.email.plugin.button.test-email": "Odeslat testovací e-mail",
|
|
5
|
+
"Settings.email.plugin.button.verify": "Otestovat připojení",
|
|
6
|
+
"Settings.email.plugin.label.defaultFrom": "Výchozí e-mail odesílatele",
|
|
7
|
+
"Settings.email.plugin.label.defaultReplyTo": "Výchozí e-mail pro odpověď",
|
|
8
|
+
"Settings.email.plugin.label.provider": "Poskytovatel e-mailu",
|
|
9
|
+
"Settings.email.plugin.label.replyToName": "Výchozí jméno pro odpověď",
|
|
10
|
+
"Settings.email.plugin.label.senderName": "Výchozí jméno odesílatele",
|
|
11
|
+
"Settings.email.plugin.label.testAddress": "E-mail příjemce",
|
|
12
|
+
"Settings.email.plugin.label.verifyConnection": "Stav připojení",
|
|
13
|
+
"Settings.email.plugin.notification.config.error": "Nepodařilo se načíst konfiguraci e-mailu",
|
|
14
|
+
"Settings.email.plugin.notification.data.loaded": "Data nastavení e-mailu byla načtena",
|
|
15
|
+
"Settings.email.plugin.notification.test.error": "Nepodařilo se odeslat testovací e-mail na adresu {to}",
|
|
16
|
+
"Settings.email.plugin.notification.test.success": "Test e-mailu proběhl úspěšně, zkontrolujte schránku {to}",
|
|
17
|
+
"Settings.email.plugin.notification.verify.error": "Ověření připojení selhalo",
|
|
18
|
+
"Settings.email.plugin.notification.verify.success": "Připojení bylo úspěšně ověřeno",
|
|
19
|
+
"Settings.email.plugin.placeholder.defaultFrom": "např.: Strapi No-Reply <no-reply@strapi.io>",
|
|
20
|
+
"Settings.email.plugin.placeholder.defaultReplyTo": "např.: Strapi <example@strapi.io>",
|
|
21
|
+
"Settings.email.plugin.placeholder.testAddress": "např.: developer@example.com",
|
|
22
|
+
"Settings.email.plugin.status.connected": "Připojeno",
|
|
23
|
+
"Settings.email.plugin.status.error": "Chyba",
|
|
24
|
+
"Settings.email.plugin.subTitle": "Otestujte nastavení pluginu E-mail",
|
|
25
|
+
"Settings.email.plugin.text.configuration": "Plugin se konfiguruje prostřednictvím souboru {file}, dokumentaci najdete na tomto {link}.",
|
|
26
|
+
"Settings.email.plugin.title": "Konfigurace",
|
|
27
|
+
"Settings.email.plugin.title.config": "Konfigurace",
|
|
28
|
+
"Settings.email.plugin.title.test": "Test doručování e-mailů",
|
|
29
|
+
"SettingsNav.link.settings": "Nastavení",
|
|
30
|
+
"SettingsNav.section-label": "Plugin E-mail",
|
|
31
|
+
"components.Input.error.validation.email": "Toto není platná e-mailová adresa",
|
|
32
|
+
"Settings.capabilities.title": "Možnosti poskytovatele",
|
|
33
|
+
"Settings.capabilities.subtitle": "Aktuální konfigurace SMTP a povolené funkce",
|
|
34
|
+
"Settings.capabilities.label.smtpServer": "SMTP server",
|
|
35
|
+
"Settings.capabilities.label.encryption": "Šifrování",
|
|
36
|
+
"Settings.capabilities.label.authType": "Ověřování",
|
|
37
|
+
"Settings.capabilities.label.poolStatus": "Stav poolu",
|
|
38
|
+
"Settings.capabilities.label.features": "Povolené funkce",
|
|
39
|
+
"Settings.capabilities.poolStatus.idle": "Nečinný",
|
|
40
|
+
"Settings.capabilities.poolStatus.active": "Aktivní",
|
|
41
|
+
"Settings.capabilities.feature.dkim": "DKIM",
|
|
42
|
+
"Settings.capabilities.feature.pool": "Pool připojení",
|
|
43
|
+
"Settings.capabilities.feature.rateLimiting": "Omezení rychlosti",
|
|
44
|
+
"Settings.capabilities.feature.oauth2": "OAuth2",
|
|
45
|
+
"Settings.capabilities.feature.requireTLS": "Vyžadovat TLS"
|
|
46
|
+
};
|
|
2
47
|
|
|
3
|
-
export { cs as default };
|
|
48
|
+
export { cs as default, link };
|
|
4
49
|
//# sourceMappingURL=cs.json.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cs.json.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"cs.json.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/email",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.45.0",
|
|
4
4
|
"description": "Easily configure your Strapi application to send emails.",
|
|
5
5
|
"homepage": "https://strapi.io",
|
|
6
6
|
"bugs": {
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@strapi/design-system": "2.2.0",
|
|
65
65
|
"@strapi/icons": "2.2.0",
|
|
66
|
-
"@strapi/provider-email-sendmail": "5.
|
|
67
|
-
"@strapi/utils": "5.
|
|
66
|
+
"@strapi/provider-email-sendmail": "5.45.0",
|
|
67
|
+
"@strapi/utils": "5.45.0",
|
|
68
68
|
"koa2-ratelimit": "^1.1.3",
|
|
69
69
|
"lodash": "4.18.1",
|
|
70
70
|
"react-intl": "6.6.2",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"zod": "3.25.67"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@strapi/admin": "5.
|
|
77
|
-
"@strapi/types": "5.
|
|
76
|
+
"@strapi/admin": "5.45.0",
|
|
77
|
+
"@strapi/types": "5.45.0",
|
|
78
78
|
"@testing-library/react": "16.3.0",
|
|
79
79
|
"@types/koa": "2.13.4",
|
|
80
80
|
"@types/lodash": "^4.14.191",
|