emailengine-app 2.67.2 → 2.67.3
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.67.3](https://github.com/postalsys/emailengine/compare/v2.67.2...v2.67.3) (2026-04-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* use template literals for translated strings in showErrorPopup ([b56fd1f](https://github.com/postalsys/emailengine/commit/b56fd1fa7612b4cf2b7e99cbd78d7447b89c03c6))
|
|
9
|
+
|
|
3
10
|
## [2.67.2](https://github.com/postalsys/emailengine/compare/v2.67.1...v2.67.2) (2026-04-21)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -315,26 +315,26 @@
|
|
|
315
315
|
errorsListElm.innerHTML = '';
|
|
316
316
|
|
|
317
317
|
if (data.error && !data.fields) {
|
|
318
|
-
addErrorRow(
|
|
318
|
+
addErrorRow(`{{_ "Error" templateLocale }}`, data.error.message || data.error)
|
|
319
319
|
} else if (data.fields) {
|
|
320
|
-
addErrorRow(
|
|
320
|
+
addErrorRow(`{{_ "Invalid settings" templateLocale }}`, data.message);
|
|
321
321
|
for (let field of data.fields) {
|
|
322
322
|
addErrorRow('-', field.message, 'aaaa', 'bbbbbb');
|
|
323
323
|
}
|
|
324
324
|
} else {
|
|
325
325
|
if (!data.imap || !data.imap.success) {
|
|
326
|
-
let error = data.imap && data.imap.error ||
|
|
326
|
+
let error = data.imap && data.imap.error || `{{_ "Couldn't connect to IMAP server" templateLocale }}`
|
|
327
327
|
if (data.imap && data.imap.responseText) {
|
|
328
|
-
addErrorRow('IMAP', error,
|
|
328
|
+
addErrorRow('IMAP', error, `{{_ "Server response:" templateLocale }}`, data.imap.responseText);
|
|
329
329
|
} else {
|
|
330
330
|
addErrorRow('IMAP', error);
|
|
331
331
|
}
|
|
332
332
|
}
|
|
333
333
|
|
|
334
334
|
if (!data.smtp || !data.smtp.success) {
|
|
335
|
-
let error = data.smtp && data.smtp.error ||
|
|
335
|
+
let error = data.smtp && data.smtp.error || `{{_ "Couldn't connect to SMTP server" templateLocale }}`
|
|
336
336
|
if (data.smtp && data.smtp.responseText) {
|
|
337
|
-
addErrorRow('SMTP', error,
|
|
337
|
+
addErrorRow('SMTP', error, `{{_ "Server response:" templateLocale }}`, data.smtp.responseText);
|
|
338
338
|
} else {
|
|
339
339
|
addErrorRow('SMTP', error);
|
|
340
340
|
}
|