emailengine-app 2.69.0 → 2.71.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.
Files changed (97) hide show
  1. package/.github/workflows/deploy.yml +6 -3
  2. package/.github/workflows/release.yaml +2 -0
  3. package/.github/workflows/test.yml +73 -12
  4. package/.ncurc.js +3 -3
  5. package/CHANGELOG.md +37 -0
  6. package/Gruntfile.js +21 -23
  7. package/bin/emailengine.js +8 -1
  8. package/config/default.toml +5 -0
  9. package/config/test.toml +5 -0
  10. package/data/google-crawlers.json +1 -1
  11. package/getswagger.sh +44 -4
  12. package/gettext-extract.js +163 -0
  13. package/lib/account.js +104 -72
  14. package/lib/api-routes/account-routes.js +231 -71
  15. package/lib/api-routes/blocklist-routes.js +25 -18
  16. package/lib/api-routes/chat-routes.js +32 -14
  17. package/lib/api-routes/delivery-test-routes.js +30 -5
  18. package/lib/api-routes/export-routes.js +27 -2
  19. package/lib/api-routes/gateway-routes.js +63 -12
  20. package/lib/api-routes/license-routes.js +18 -4
  21. package/lib/api-routes/mailbox-routes.js +33 -7
  22. package/lib/api-routes/message-routes.js +291 -145
  23. package/lib/api-routes/oauth2-app-routes.js +90 -24
  24. package/lib/api-routes/outbox-routes.js +16 -4
  25. package/lib/api-routes/pubsub-routes.js +8 -4
  26. package/lib/api-routes/route-helpers.js +14 -1
  27. package/lib/api-routes/settings-routes.js +51 -25
  28. package/lib/api-routes/stats-routes.js +37 -3
  29. package/lib/api-routes/submit-routes.js +31 -42
  30. package/lib/api-routes/template-routes.js +54 -21
  31. package/lib/api-routes/token-routes.js +67 -67
  32. package/lib/api-routes/webhook-route-routes.js +37 -8
  33. package/lib/autodetect-imap-settings.js +0 -2
  34. package/lib/consts.js +5 -0
  35. package/lib/document-store.js +22 -1
  36. package/lib/email-client/base-client.js +31 -8
  37. package/lib/email-client/gmail-client.js +119 -112
  38. package/lib/email-client/imap/mailbox.js +2 -2
  39. package/lib/email-client/imap/subconnection.js +0 -1
  40. package/lib/email-client/imap/sync-operations.js +1 -1
  41. package/lib/email-client/imap-client.js +36 -17
  42. package/lib/email-client/notification-handler.js +3 -6
  43. package/lib/email-client/outlook-client.js +49 -62
  44. package/lib/export.js +49 -1
  45. package/lib/feature-flags.js +8 -2
  46. package/lib/gateway.js +4 -9
  47. package/lib/get-raw-email.js +5 -5
  48. package/lib/imapproxy/imap-core/lib/imap-connection.js +0 -1
  49. package/lib/license-beacon.js +367 -0
  50. package/lib/logger.js +35 -22
  51. package/lib/metrics-collector.js +0 -2
  52. package/lib/oauth2-apps.js +13 -4
  53. package/lib/outbox.js +24 -40
  54. package/lib/redis-operations.js +1 -1
  55. package/lib/routes-ui.js +2 -1
  56. package/lib/schemas.js +403 -83
  57. package/lib/sentry.js +139 -0
  58. package/lib/settings.js +9 -3
  59. package/lib/stream-encrypt.js +1 -1
  60. package/lib/templates.js +1 -1
  61. package/lib/tokens.js +5 -3
  62. package/lib/tools.js +28 -6
  63. package/lib/ui-routes/account-routes.js +7 -4
  64. package/lib/ui-routes/admin-config-routes.js +20 -6
  65. package/lib/ui-routes/document-store-routes.js +7 -1
  66. package/lib/ui-routes/oauth-config-routes.js +0 -2
  67. package/lib/ui-routes/route-helpers.js +0 -2
  68. package/lib/ui-routes/unsubscribe-routes.js +0 -2
  69. package/lib/webhooks.js +8 -4
  70. package/package.json +23 -19
  71. package/sbom.json +1 -1
  72. package/server.js +38 -31
  73. package/static/licenses.html +171 -391
  74. package/translations/de.mo +0 -0
  75. package/translations/de.po +154 -142
  76. package/translations/et.mo +0 -0
  77. package/translations/et.po +129 -131
  78. package/translations/fr.mo +0 -0
  79. package/translations/fr.po +133 -136
  80. package/translations/ja.mo +0 -0
  81. package/translations/ja.po +126 -129
  82. package/translations/messages.pot +107 -107
  83. package/translations/nl.mo +0 -0
  84. package/translations/nl.po +128 -130
  85. package/translations/pl.mo +0 -0
  86. package/translations/pl.po +125 -128
  87. package/update-info.sh +19 -1
  88. package/views/config/logging.hbs +48 -0
  89. package/views/dashboard.hbs +22 -0
  90. package/workers/api.js +33 -37
  91. package/workers/documents.js +2 -22
  92. package/workers/export.js +73 -92
  93. package/workers/imap-proxy.js +3 -23
  94. package/workers/imap.js +2 -22
  95. package/workers/smtp.js +2 -22
  96. package/workers/submit.js +6 -24
  97. package/workers/webhooks.js +2 -22
@@ -1,7 +1,7 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2026-03-31 08:47+0000\n"
4
+ "POT-Creation-Date: 2026-06-15 18:35+0000\n"
5
5
  "PO-Revision-Date: \n"
6
6
  "Last-Translator: \n"
7
7
  "Language-Team: \n"
@@ -12,7 +12,7 @@ msgstr ""
12
12
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
13
  "X-Generator: Poedit 3.9\n"
14
14
 
15
- #: views/error.hbs:4 workers/api.js:7103
15
+ #: views/error.hbs:4 workers/api.js:2957
16
16
  msgid "Something went wrong"
17
17
  msgstr "Er ging iets mis"
18
18
 
@@ -28,7 +28,7 @@ msgstr "Ga terug"
28
28
  msgid "Dashboard"
29
29
  msgstr "Dashboard"
30
30
 
31
- #: views/config/license.hbs:45 lib/routes-ui.js:2497
31
+ #: views/config/license.hbs:45 lib/ui-routes/oauth-config-routes.js:217
32
32
  msgid "%d day"
33
33
  msgid_plural "%d days"
34
34
  msgstr[0] "%d dag"
@@ -38,6 +38,34 @@ msgstr[1] "%d dagen"
38
38
  msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
39
39
  msgstr "Klik <a href=\"%s\">hier</a> om door te gaan&mldr;"
40
40
 
41
+ #: views/oauth-scope-error.hbs:2
42
+ msgid "Insufficient Permissions"
43
+ msgstr "Onvoldoende rechten"
44
+
45
+ #: views/oauth-scope-error.hbs:8
46
+ msgid ""
47
+ "All requested permissions are required for this service to function "
48
+ "properly. Some required permissions were not granted during sign-in."
49
+ msgstr ""
50
+ "Alle gevraagde machtigingen zijn vereist om deze dienst correct te laten "
51
+ "werken. Bij het inloggen zijn sommige vereiste machtigingen niet verleend."
52
+
53
+ #: views/oauth-scope-error.hbs:12
54
+ msgid "The following permissions were not granted:"
55
+ msgstr "De volgende machtigingen zijn niet verleend:"
56
+
57
+ #: views/oauth-scope-error.hbs:21
58
+ msgid ""
59
+ "Please try again and make sure all permission checkboxes are selected on the "
60
+ "Google consent screen."
61
+ msgstr ""
62
+ "Probeer het nog eens en zorg ervoor dat alle selectievakjes voor toestemming "
63
+ "op het toestemmingsscherm van Google zijn aangevinkt."
64
+
65
+ #: views/oauth-scope-error.hbs:27
66
+ msgid "Try Again"
67
+ msgstr "Probeer opnieuw"
68
+
41
69
  #: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
42
70
  msgid "Unsubscribe"
43
71
  msgstr "Uitschrijven"
@@ -57,7 +85,8 @@ msgstr "Opnieuw abonneren"
57
85
 
58
86
  #: views/unsubscribe.hbs:21
59
87
  msgid "Are you sure you want to re-subscribe your email address <em>%s</em>?"
60
- msgstr "Weet je zeker dat je je e-mailadres <em>%s</em> opnieuw wilt abonneren?"
88
+ msgstr ""
89
+ "Weet je zeker dat je je e-mailadres <em>%s</em> opnieuw wilt abonneren?"
61
90
 
62
91
  #: views/unsubscribe.hbs:32 views/accounts/register/imap-server.hbs:251
63
92
  msgid "Close"
@@ -83,34 +112,6 @@ msgstr "E-mailadres"
83
112
  msgid "Enter your email address"
84
113
  msgstr "Vul je e-mailadres in"
85
114
 
86
- #: views/oauth-scope-error.hbs:2
87
- msgid "Insufficient Permissions"
88
- msgstr "Onvoldoende rechten"
89
-
90
- #: views/oauth-scope-error.hbs:8
91
- msgid ""
92
- "All requested permissions are required for this service to function properly. "
93
- "Some required permissions were not granted during sign-in."
94
- msgstr ""
95
- "Alle gevraagde machtigingen zijn vereist om deze dienst correct te laten "
96
- "werken. Bij het inloggen zijn sommige vereiste machtigingen niet verleend."
97
-
98
- #: views/oauth-scope-error.hbs:12
99
- msgid "The following permissions were not granted:"
100
- msgstr "De volgende machtigingen zijn niet verleend:"
101
-
102
- #: views/oauth-scope-error.hbs:21
103
- msgid ""
104
- "Please try again and make sure all permission checkboxes are selected on the "
105
- "Google consent screen."
106
- msgstr ""
107
- "Probeer het nog eens en zorg ervoor dat alle selectievakjes voor toestemming "
108
- "op het toestemmingsscherm van Google zijn aangevinkt."
109
-
110
- #: views/oauth-scope-error.hbs:27
111
- msgid "Try Again"
112
- msgstr "Probeer opnieuw"
113
-
114
115
  #: views/accounts/register/imap.hbs:11
115
116
  msgid "Your name"
116
117
  msgstr "Jouw naam"
@@ -188,8 +189,8 @@ msgstr "TLS voor IMAP"
188
189
 
189
190
  #: views/accounts/register/imap-server.hbs:100
190
191
  msgid ""
191
- "TLS (also known as SSL) is usually only needed when using port 993. For other "
192
- "ports EmailEngine falls back to using STARTTLS based encryption."
192
+ "TLS (also known as SSL) is usually only needed when using port 993. For "
193
+ "other ports EmailEngine falls back to using STARTTLS based encryption."
193
194
  msgstr ""
194
195
  "TLS (ook wel SSL genoemd) is meestal alleen nodig bij het gebruik van poort "
195
196
  "993. Voor andere poorten schakelt EmailEngine over op STARTTLS-versleuteling."
@@ -209,8 +210,8 @@ msgstr "TLS voor SMTP"
209
210
 
210
211
  #: views/accounts/register/imap-server.hbs:191
211
212
  msgid ""
212
- "TLS (also known as SSL) is usually only needed when using port 465. For other "
213
- "ports EmailEngine falls back to using STARTTLS based encryption."
213
+ "TLS (also known as SSL) is usually only needed when using port 465. For "
214
+ "other ports EmailEngine falls back to using STARTTLS based encryption."
214
215
  msgstr ""
215
216
  "TLS (ook wel SSL genoemd) is meestal alleen nodig bij het gebruik van poort "
216
217
  "465. Voor andere poorten schakelt EmailEngine over op STARTTLS-versleuteling."
@@ -262,151 +263,148 @@ msgstr "Kon geen verbinding maken met SMTP-server"
262
263
  msgid "Request failed."
263
264
  msgstr "Verzoek mislukt."
264
265
 
265
- #: lib/routes-ui.js:384 lib/ui-routes/account-routes.js:60
266
- msgid "Delegated"
267
- msgstr "Gedelegeerd"
268
-
269
- #: lib/routes-ui.js:385 lib/ui-routes/account-routes.js:61
270
- msgid "Using credentials from \"%s\""
271
- msgstr "Gebruikmakend van inloggegevens van \"%s\""
272
-
273
- #: lib/routes-ui.js:435 lib/ui-routes/account-routes.js:111
274
- msgid ""
275
- "Connection timed out. This usually occurs if you are behind a firewall or "
276
- "connecting to the wrong port."
277
- msgstr ""
278
- "De verbinding is verlopen. Dit gebeurt meestal als je achter een firewall zit "
279
- "of verbinding maakt met de verkeerde poort."
280
-
281
- #: lib/routes-ui.js:438 lib/ui-routes/account-routes.js:114
282
- msgid "The server unexpectedly closed the connection."
283
- msgstr "De server sloot onverwacht de verbinding."
284
-
285
- #: lib/routes-ui.js:441 lib/ui-routes/account-routes.js:117
286
- msgid ""
287
- "The server unexpectedly closed the connection. This usually happens when "
288
- "attempting to connect to a TLS port without TLS enabled."
289
- msgstr ""
290
- "De server sloot onverwacht de verbinding. Dit gebeurt meestal wanneer je "
291
- "probeert verbinding te maken met een TLS-poort zonder TLS ingeschakeld."
292
-
293
- #: lib/routes-ui.js:446 lib/ui-routes/account-routes.js:122
266
+ #: lib/autodetect-imap-settings.js:80
294
267
  msgid ""
295
- "The server refused the connection. This typically occurs if the server is not "
296
- "running, is overloaded, or you are connecting to the wrong host or port."
268
+ "Microsoft has disabled password-based sign-ins (including app passwords) for "
269
+ "Outlook.com, Hotmail.com, and Microsoft 365 email accounts. To continue, "
270
+ "please use the \"Sign in with Microsoft\" button to securely connect your "
271
+ "account."
297
272
  msgstr ""
298
- "De server weigerde de verbinding. Dit gebeurt meestal als de server niet "
299
- "draait, overbelast is, of als je verbinding maakt met de verkeerde host of "
300
- "poort."
273
+ "Microsoft heeft wachtwoordgebaseerde inlogmethodes (inclusief "
274
+ "applicatiewachtwoorden) uitgeschakeld voor Outlook.com, Hotmail.com en "
275
+ "Microsoft 365 e-mailaccounts. Gebruik de knop \"Inloggen met Microsoft\" om "
276
+ "je account veilig te verbinden."
301
277
 
302
- #: lib/routes-ui.js:573
303
- msgid "Invalid API key for OpenAI"
304
- msgstr "Ongeldige API-sleutel voor OpenAI"
278
+ #: lib/tools.js:975 lib/ui-routes/unsubscribe-routes.js:28
279
+ msgid "Invalid input"
280
+ msgstr "Ongeldige invoer"
305
281
 
306
- #: lib/routes-ui.js:2490
307
- msgid "Unknown"
308
- msgstr "Onbekend"
282
+ #: lib/tools.js:1742
283
+ msgid "Signature validation failed"
284
+ msgstr "Handtekeningvalidatie mislukt"
309
285
 
310
- #: lib/routes-ui.js:2499
311
- msgid "Indefinite"
312
- msgstr "Voor onbepaalde tijd"
286
+ #: lib/tools.js:1751 lib/tools.js:1756
287
+ msgid "Invalid or expired account setup URL"
288
+ msgstr "Ongeldige of verlopen accountinstellings-URL"
313
289
 
314
- #: lib/routes-ui.js:5133 lib/routes-ui.js:5168 lib/routes-ui.js:5283
315
- #: lib/routes-ui.js:5330 lib/routes-ui.js:5577 lib/routes-ui.js:5613
316
- #: workers/api.js:2279 workers/api.js:2607 lib/ui-routes/account-routes.js:554
317
- #: lib/ui-routes/account-routes.js:590 lib/ui-routes/account-routes.js:707
318
- #: lib/ui-routes/account-routes.js:754 lib/ui-routes/account-routes.js:1003
319
- #: lib/ui-routes/account-routes.js:1039
290
+ #: lib/ui-routes/account-routes.js:402 lib/ui-routes/account-routes.js:437
291
+ #: lib/ui-routes/account-routes.js:552 lib/ui-routes/account-routes.js:599
292
+ #: lib/ui-routes/account-routes.js:846 lib/ui-routes/account-routes.js:882
293
+ #: workers/api.js:2158 workers/api.js:2486
320
294
  msgid "Email Account Setup"
321
295
  msgstr "E-mailaccount instellen"
322
296
 
323
- #: lib/routes-ui.js:5193 lib/routes-ui.js:5226 lib/routes-ui.js:8186
324
- #: lib/ui-routes/account-routes.js:615 lib/ui-routes/account-routes.js:649
297
+ #: lib/ui-routes/account-routes.js:462 lib/ui-routes/account-routes.js:495
298
+ #: lib/ui-routes/unsubscribe-routes.js:65
325
299
  msgid "Invalid request. Check your input and try again."
326
300
  msgstr "Ongeldige aanvraag. Controleer je invoer en probeer het opnieuw."
327
301
 
328
- #: lib/routes-ui.js:5386 lib/routes-ui.js:5397
329
- #: lib/ui-routes/account-routes.js:811 lib/ui-routes/account-routes.js:822
302
+ #: lib/ui-routes/account-routes.js:592 lib/ui-routes/account-routes.js:875
303
+ msgid "Couldn't set up account. Try again."
304
+ msgstr "Kan geen account aanmaken. Probeer het opnieuw."
305
+
306
+ #: lib/ui-routes/account-routes.js:655 lib/ui-routes/account-routes.js:666
330
307
  #: lib/ui-routes/admin-entities-routes.js:2020
331
308
  msgid "Server hostname was not found"
332
309
  msgstr "De serverhostnaam kon niet worden gevonden."
333
310
 
334
- #: lib/routes-ui.js:5389 lib/routes-ui.js:5400
335
- #: lib/ui-routes/account-routes.js:814 lib/ui-routes/account-routes.js:825
311
+ #: lib/ui-routes/account-routes.js:658 lib/ui-routes/account-routes.js:669
336
312
  #: lib/ui-routes/admin-entities-routes.js:2023
337
313
  msgid "Invalid username or password"
338
314
  msgstr "Ongeldige gebruikersnaam of wachtwoord"
339
315
 
340
- #: lib/routes-ui.js:5403 lib/ui-routes/account-routes.js:828
316
+ #: lib/ui-routes/account-routes.js:672
341
317
  #: lib/ui-routes/admin-entities-routes.js:2026
342
318
  msgid "Authentication credentials were not provided"
343
319
  msgstr "Er zijn geen authenticatiegegevens verstrekt"
344
320
 
345
- #: lib/routes-ui.js:5406 lib/ui-routes/account-routes.js:831
321
+ #: lib/ui-routes/account-routes.js:675
346
322
  #: lib/ui-routes/admin-entities-routes.js:2029
347
323
  msgid "OAuth2 authentication failed"
348
324
  msgstr "OAuth2-authenticatie mislukt"
349
325
 
350
- #: lib/routes-ui.js:5409 lib/routes-ui.js:5413
351
- #: lib/ui-routes/account-routes.js:834 lib/ui-routes/account-routes.js:838
326
+ #: lib/ui-routes/account-routes.js:678 lib/ui-routes/account-routes.js:682
352
327
  #: lib/ui-routes/admin-entities-routes.js:2032
353
328
  #: lib/ui-routes/admin-entities-routes.js:2036
354
329
  msgid "TLS protocol error"
355
330
  msgstr "TLS-protocolfout"
356
331
 
357
- #: lib/routes-ui.js:5417 lib/ui-routes/account-routes.js:842
332
+ #: lib/ui-routes/account-routes.js:686
358
333
  #: lib/ui-routes/admin-entities-routes.js:2040
359
334
  msgid "Connection timed out"
360
335
  msgstr "Verbindingstime-out"
361
336
 
362
- #: lib/routes-ui.js:5420 lib/ui-routes/account-routes.js:845
337
+ #: lib/ui-routes/account-routes.js:689
363
338
  #: lib/ui-routes/admin-entities-routes.js:2043
364
339
  msgid "Could not connect to server"
365
340
  msgstr "Kan geen verbinding maken met de server"
366
341
 
367
- #: lib/routes-ui.js:5423 lib/ui-routes/account-routes.js:848
342
+ #: lib/ui-routes/account-routes.js:692
368
343
  #: lib/ui-routes/admin-entities-routes.js:2046
369
344
  msgid "Unexpected server response"
370
345
  msgstr "Onverwachte serverreactie"
371
346
 
372
- #: lib/routes-ui.js:8149 lib/tools.js:950
373
- msgid "Invalid input"
374
- msgstr "Ongeldige invoer"
347
+ #: lib/ui-routes/admin-config-routes.js:145
348
+ msgid "Invalid API key for OpenAI"
349
+ msgstr "Ongeldige API-sleutel voor OpenAI"
375
350
 
376
- #: lib/routes-ui.js:8159 lib/routes-ui.js:8277 lib/routes-ui.js:8294
377
- #: lib/routes-ui.js:8330
378
- msgid "Subscription Management"
379
- msgstr "Abonnementenbeheer"
351
+ #: lib/ui-routes/oauth-config-routes.js:210
352
+ msgid "Unknown"
353
+ msgstr "Onbekend"
380
354
 
381
- #: workers/api.js:7102 workers/api.js:7219
382
- msgid "Requested page not found"
383
- msgstr "Opgevraagde pagina niet gevonden"
355
+ #: lib/ui-routes/oauth-config-routes.js:219
356
+ msgid "Indefinite"
357
+ msgstr "Voor onbepaalde tijd"
384
358
 
385
- #: lib/tools.js:1653
386
- msgid "Signature validation failed"
387
- msgstr "Handtekeningvalidatie mislukt"
359
+ #: lib/ui-routes/route-helpers.js:81
360
+ msgid "Delegated"
361
+ msgstr "Gedelegeerd"
388
362
 
389
- #: lib/tools.js:1662 lib/tools.js:1667
390
- msgid "Invalid or expired account setup URL"
391
- msgstr "Ongeldige of verlopen accountinstellings-URL"
363
+ #: lib/ui-routes/route-helpers.js:82
364
+ msgid "Using credentials from \"%s\""
365
+ msgstr "Gebruikmakend van inloggegevens van \"%s\""
392
366
 
393
- #: lib/autodetect-imap-settings.js:80
367
+ #: lib/ui-routes/route-helpers.js:132
394
368
  msgid ""
395
- "Microsoft has disabled password-based sign-ins (including app passwords) for "
396
- "Outlook.com, Hotmail.com, and Microsoft 365 email accounts. To continue, "
397
- "please use the \"Sign in with Microsoft\" button to securely connect your "
398
- "account."
369
+ "Connection timed out. This usually occurs if you are behind a firewall or "
370
+ "connecting to the wrong port."
399
371
  msgstr ""
400
- "Microsoft heeft wachtwoordgebaseerde inlogmethodes (inclusief "
401
- "applicatiewachtwoorden) uitgeschakeld voor Outlook.com, Hotmail.com en "
402
- "Microsoft 365 e-mailaccounts. Gebruik de knop \"Inloggen met Microsoft\" om "
403
- "je account veilig te verbinden."
372
+ "De verbinding is verlopen. Dit gebeurt meestal als je achter een firewall "
373
+ "zit of verbinding maakt met de verkeerde poort."
404
374
 
405
- #: lib/ui-routes/account-routes.js:747 lib/ui-routes/account-routes.js:1032
406
- msgid "Couldn't set up account. Try again."
407
- msgstr "Kan geen account aanmaken. Probeer het opnieuw."
375
+ #: lib/ui-routes/route-helpers.js:135
376
+ msgid "The server unexpectedly closed the connection."
377
+ msgstr "De server sloot onverwacht de verbinding."
408
378
 
409
- #, fuzzy
410
- #~| msgid "Failed to process request"
411
- #~ msgid "Couldn't process request. Try again."
412
- #~ msgstr "Verzoek kon niet worden verwerkt."
379
+ #: lib/ui-routes/route-helpers.js:138
380
+ msgid ""
381
+ "The server unexpectedly closed the connection. This usually happens when "
382
+ "attempting to connect to a TLS port without TLS enabled."
383
+ msgstr ""
384
+ "De server sloot onverwacht de verbinding. Dit gebeurt meestal wanneer je "
385
+ "probeert verbinding te maken met een TLS-poort zonder TLS ingeschakeld."
386
+
387
+ #: lib/ui-routes/route-helpers.js:143
388
+ msgid ""
389
+ "The server refused the connection. This typically occurs if the server is "
390
+ "not running, is overloaded, or you are connecting to the wrong host or port."
391
+ msgstr ""
392
+ "De server weigerde de verbinding. Dit gebeurt meestal als de server niet "
393
+ "draait, overbelast is, of als je verbinding maakt met de verkeerde host of "
394
+ "poort."
395
+
396
+ #: lib/ui-routes/unsubscribe-routes.js:38
397
+ #: lib/ui-routes/unsubscribe-routes.js:156
398
+ #: lib/ui-routes/unsubscribe-routes.js:173
399
+ #: lib/ui-routes/unsubscribe-routes.js:209
400
+ msgid "Subscription Management"
401
+ msgstr "Abonnementenbeheer"
402
+
403
+ #: lib/ui-routes/unsubscribe-routes.js:167
404
+ #: lib/ui-routes/unsubscribe-routes.js:202
405
+ msgid "Couldn't process request. Try again."
406
+ msgstr "Het verzoek kon niet worden verwerkt. Probeer het nog eens."
407
+
408
+ #: workers/api.js:2956 workers/api.js:3071
409
+ msgid "Requested page not found"
410
+ msgstr "Opgevraagde pagina niet gevonden"
Binary file