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 "Miski läks valesti"
18
18
 
@@ -28,7 +28,7 @@ msgstr "Mine tagasi"
28
28
  msgid "Dashboard"
29
29
  msgstr "Töölaud"
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 päev"
@@ -38,6 +38,34 @@ msgstr[1] "%d päeva"
38
38
  msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
39
39
  msgstr "Kliki <a href=\"%s\">siin</a>, et jätkata&mldr;"
40
40
 
41
+ #: views/oauth-scope-error.hbs:2
42
+ msgid "Insufficient Permissions"
43
+ msgstr "Puuduvad õigused"
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
+ "Teenuse korrektseks toimimiseks on vajalikud kõik taotletud õigused. "
51
+ "Mõningaid vajalikke õigusi ei antud sisselogimisel."
52
+
53
+ #: views/oauth-scope-error.hbs:12
54
+ msgid "The following permissions were not granted:"
55
+ msgstr "Järgmisi õigusi ei antud:"
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
+ "Palun proovige uuesti ja veenduge, et Google’i nõusolekuaknas oleksid kõik "
63
+ "lubade valikukastid märgitud."
64
+
65
+ #: views/oauth-scope-error.hbs:27
66
+ msgid "Try Again"
67
+ msgstr "Proovige uuesti"
68
+
41
69
  #: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
42
70
  msgid "Unsubscribe"
43
71
  msgstr "Loobu tellimusest"
@@ -58,8 +86,8 @@ msgstr "Telli uuesti"
58
86
  #: views/unsubscribe.hbs:21
59
87
  msgid "Are you sure you want to re-subscribe your email address <em>%s</em>?"
60
88
  msgstr ""
61
- "Kas olete kindel, et soovite oma e-posti aadressi <em>%s</em> uuesti tellijate "
62
- "nimekirja lisada?"
89
+ "Kas olete kindel, et soovite oma e-posti aadressi <em>%s</em> uuesti "
90
+ "tellijate nimekirja lisada?"
63
91
 
64
92
  #: views/unsubscribe.hbs:32 views/accounts/register/imap-server.hbs:251
65
93
  msgid "Close"
@@ -85,34 +113,6 @@ msgstr "E-posti aadress"
85
113
  msgid "Enter your email address"
86
114
  msgstr "Sisestage oma e-posti aadress"
87
115
 
88
- #: views/oauth-scope-error.hbs:2
89
- msgid "Insufficient Permissions"
90
- msgstr "Puuduvad õigused"
91
-
92
- #: views/oauth-scope-error.hbs:8
93
- msgid ""
94
- "All requested permissions are required for this service to function properly. "
95
- "Some required permissions were not granted during sign-in."
96
- msgstr ""
97
- "Teenuse korrektseks toimimiseks on vajalikud kõik taotletud õigused. Mõningaid "
98
- "vajalikke õigusi ei antud sisselogimisel."
99
-
100
- #: views/oauth-scope-error.hbs:12
101
- msgid "The following permissions were not granted:"
102
- msgstr "Järgmisi õigusi ei antud:"
103
-
104
- #: views/oauth-scope-error.hbs:21
105
- msgid ""
106
- "Please try again and make sure all permission checkboxes are selected on the "
107
- "Google consent screen."
108
- msgstr ""
109
- "Palun proovige uuesti ja veenduge, et Google’i nõusolekuaknas oleksid kõik "
110
- "lubade valikukastid märgitud."
111
-
112
- #: views/oauth-scope-error.hbs:27
113
- msgid "Try Again"
114
- msgstr "Proovige uuesti"
115
-
116
116
  #: views/accounts/register/imap.hbs:11
117
117
  msgid "Your name"
118
118
  msgstr "Teie nimi"
@@ -121,7 +121,8 @@ msgstr "Teie nimi"
121
121
  msgid "Enter your full name"
122
122
  msgstr "Sisestage oma täisnimi"
123
123
 
124
- #: views/accounts/register/imap.hbs:31 views/accounts/register/imap-server.hbs:36
124
+ #: views/accounts/register/imap.hbs:31
125
+ #: views/accounts/register/imap-server.hbs:36
125
126
  #: views/accounts/register/imap-server.hbs:128
126
127
  msgid "Password"
127
128
  msgstr "Parool"
@@ -189,8 +190,8 @@ msgstr "TLS IMAP serveris"
189
190
 
190
191
  #: views/accounts/register/imap-server.hbs:100
191
192
  msgid ""
192
- "TLS (also known as SSL) is usually only needed when using port 993. For other "
193
- "ports EmailEngine falls back to using STARTTLS based encryption."
193
+ "TLS (also known as SSL) is usually only needed when using port 993. For "
194
+ "other ports EmailEngine falls back to using STARTTLS based encryption."
194
195
  msgstr ""
195
196
  "TLS (tuntud ka kui SSL) on tavaliselt vajalik ainult siis, kui kasutatakse "
196
197
  "porti 993. Teiste portide puhul kasutab EmailEngine STARTTLS-põhist "
@@ -211,8 +212,8 @@ msgstr "TLS SMTP serveris"
211
212
 
212
213
  #: views/accounts/register/imap-server.hbs:191
213
214
  msgid ""
214
- "TLS (also known as SSL) is usually only needed when using port 465. For other "
215
- "ports EmailEngine falls back to using STARTTLS based encryption."
215
+ "TLS (also known as SSL) is usually only needed when using port 465. For "
216
+ "other ports EmailEngine falls back to using STARTTLS based encryption."
216
217
  msgstr ""
217
218
  "TLS (tuntud ka kui SSL) on tavaliselt vajalik ainult siis, kui kasutatakse "
218
219
  "porti 465. Teiste portide puhul kasutab EmailEngine STARTTLS-põhist "
@@ -263,153 +264,150 @@ msgstr "SMTP serveriga ei õnnestunud ühendust luua"
263
264
  msgid "Request failed."
264
265
  msgstr "Päring ebaõnnestus."
265
266
 
266
- #: lib/routes-ui.js:384 lib/ui-routes/account-routes.js:60
267
- msgid "Delegated"
268
- msgstr "Delegeeritud"
269
-
270
- #: lib/routes-ui.js:385 lib/ui-routes/account-routes.js:61
271
- msgid "Using credentials from \"%s\""
272
- msgstr "Kasutades volitusi \"%s\""
273
-
274
- #: lib/routes-ui.js:435 lib/ui-routes/account-routes.js:111
275
- msgid ""
276
- "Connection timed out. This usually occurs if you are behind a firewall or "
277
- "connecting to the wrong port."
278
- msgstr ""
279
- "Ühendus on aegunud. See juhtub tavaliselt siis, kui olete tulemüüri taga või "
280
- "ühendute valesse porti."
281
-
282
- #: lib/routes-ui.js:438 lib/ui-routes/account-routes.js:114
283
- msgid "The server unexpectedly closed the connection."
284
- msgstr "Server sulges ootamatult ühenduse."
285
-
286
- #: lib/routes-ui.js:441 lib/ui-routes/account-routes.js:117
287
- msgid ""
288
- "The server unexpectedly closed the connection. This usually happens when "
289
- "attempting to connect to a TLS port without TLS enabled."
290
- msgstr ""
291
- "Server sulges ootamatult ühenduse. See juhtub tavaliselt siis, kui üritatakse "
292
- "luua ühendust TLS-porti, ilma et TLS oleks lubatud."
293
-
294
- #: lib/routes-ui.js:446 lib/ui-routes/account-routes.js:122
267
+ #: lib/autodetect-imap-settings.js:80
295
268
  msgid ""
296
- "The server refused the connection. This typically occurs if the server is not "
297
- "running, is overloaded, or you are connecting to the wrong host or port."
269
+ "Microsoft has disabled password-based sign-ins (including app passwords) for "
270
+ "Outlook.com, Hotmail.com, and Microsoft 365 email accounts. To continue, "
271
+ "please use the \"Sign in with Microsoft\" button to securely connect your "
272
+ "account."
298
273
  msgstr ""
299
- "Server keeldus ühendusest. See juhtub tavaliselt siis, kui server ei tööta, on "
300
- "ülekoormatud või ühendute vale hostiga või porti."
274
+ "Microsoft on keelanud paroolil põhineva sisselogimise (sealhulgas rakenduste "
275
+ "paroolid) Outlook.com, Hotmail.com ja Microsoft 365 e-posti kontodele. "
276
+ "Jätkamiseks kasutage oma konto turvaliseks ühendamiseks nuppu \"Sign in with "
277
+ "Microsoft\"."
301
278
 
302
- #: lib/routes-ui.js:573
303
- msgid "Invalid API key for OpenAI"
304
- msgstr "OpenAI jaoks vale API võti"
279
+ #: lib/tools.js:975 lib/ui-routes/unsubscribe-routes.js:28
280
+ msgid "Invalid input"
281
+ msgstr "Vale sisestus"
305
282
 
306
- #: lib/routes-ui.js:2490
307
- msgid "Unknown"
308
- msgstr "Tundmatu"
283
+ #: lib/tools.js:1742
284
+ msgid "Signature validation failed"
285
+ msgstr "Päringu allkirja kontroll ebaõnnestus"
309
286
 
310
- #: lib/routes-ui.js:2499
311
- msgid "Indefinite"
312
- msgstr "Määramata"
287
+ #: lib/tools.js:1751 lib/tools.js:1756
288
+ msgid "Invalid or expired account setup URL"
289
+ msgstr "Kehtetu või aegunud konto seadistamise URL"
313
290
 
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
291
+ #: lib/ui-routes/account-routes.js:402 lib/ui-routes/account-routes.js:437
292
+ #: lib/ui-routes/account-routes.js:552 lib/ui-routes/account-routes.js:599
293
+ #: lib/ui-routes/account-routes.js:846 lib/ui-routes/account-routes.js:882
294
+ #: workers/api.js:2158 workers/api.js:2486
320
295
  msgid "Email Account Setup"
321
296
  msgstr "E-posti konto seadistamine"
322
297
 
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
298
+ #: lib/ui-routes/account-routes.js:462 lib/ui-routes/account-routes.js:495
299
+ #: lib/ui-routes/unsubscribe-routes.js:65
325
300
  msgid "Invalid request. Check your input and try again."
326
301
  msgstr "Vigane päring. Kontrollige sisestatud andmeid ja proovige uuesti."
327
302
 
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
303
+ #: lib/ui-routes/account-routes.js:592 lib/ui-routes/account-routes.js:875
304
+ msgid "Couldn't set up account. Try again."
305
+ msgstr "Kontot ei õnnestunud luua. Proovi uuesti."
306
+
307
+ #: lib/ui-routes/account-routes.js:655 lib/ui-routes/account-routes.js:666
330
308
  #: lib/ui-routes/admin-entities-routes.js:2020
331
309
  msgid "Server hostname was not found"
332
310
  msgstr "Serveri hostinime ei leitud"
333
311
 
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
312
+ #: lib/ui-routes/account-routes.js:658 lib/ui-routes/account-routes.js:669
336
313
  #: lib/ui-routes/admin-entities-routes.js:2023
337
314
  msgid "Invalid username or password"
338
315
  msgstr "Vigane kasutajanimi või parool"
339
316
 
340
- #: lib/routes-ui.js:5403 lib/ui-routes/account-routes.js:828
317
+ #: lib/ui-routes/account-routes.js:672
341
318
  #: lib/ui-routes/admin-entities-routes.js:2026
342
319
  msgid "Authentication credentials were not provided"
343
320
  msgstr "Autentimise andmeid ei esitatud"
344
321
 
345
- #: lib/routes-ui.js:5406 lib/ui-routes/account-routes.js:831
322
+ #: lib/ui-routes/account-routes.js:675
346
323
  #: lib/ui-routes/admin-entities-routes.js:2029
347
324
  msgid "OAuth2 authentication failed"
348
325
  msgstr "OAuth2 autentimine ebaõnnestus"
349
326
 
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
327
+ #: lib/ui-routes/account-routes.js:678 lib/ui-routes/account-routes.js:682
352
328
  #: lib/ui-routes/admin-entities-routes.js:2032
353
329
  #: lib/ui-routes/admin-entities-routes.js:2036
354
330
  msgid "TLS protocol error"
355
331
  msgstr "TLS protokolli viga"
356
332
 
357
- #: lib/routes-ui.js:5417 lib/ui-routes/account-routes.js:842
333
+ #: lib/ui-routes/account-routes.js:686
358
334
  #: lib/ui-routes/admin-entities-routes.js:2040
359
335
  msgid "Connection timed out"
360
336
  msgstr "Ühenduse aegumine"
361
337
 
362
- #: lib/routes-ui.js:5420 lib/ui-routes/account-routes.js:845
338
+ #: lib/ui-routes/account-routes.js:689
363
339
  #: lib/ui-routes/admin-entities-routes.js:2043
364
340
  msgid "Could not connect to server"
365
341
  msgstr "Ei õnnestunud ühenduda serveriga"
366
342
 
367
- #: lib/routes-ui.js:5423 lib/ui-routes/account-routes.js:848
343
+ #: lib/ui-routes/account-routes.js:692
368
344
  #: lib/ui-routes/admin-entities-routes.js:2046
369
345
  msgid "Unexpected server response"
370
346
  msgstr "Ootamatu serveri vastus"
371
347
 
372
- #: lib/routes-ui.js:8149 lib/tools.js:950
373
- msgid "Invalid input"
374
- msgstr "Vale sisestus"
348
+ #: lib/ui-routes/admin-config-routes.js:145
349
+ msgid "Invalid API key for OpenAI"
350
+ msgstr "OpenAI jaoks vale API võti"
375
351
 
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 "Tellimuse haldamine"
352
+ #: lib/ui-routes/oauth-config-routes.js:210
353
+ msgid "Unknown"
354
+ msgstr "Tundmatu"
380
355
 
381
- #: workers/api.js:7102 workers/api.js:7219
382
- msgid "Requested page not found"
383
- msgstr "Soovitud lehekülge ei leitud"
356
+ #: lib/ui-routes/oauth-config-routes.js:219
357
+ msgid "Indefinite"
358
+ msgstr "Määramata"
384
359
 
385
- #: lib/tools.js:1653
386
- msgid "Signature validation failed"
387
- msgstr "Päringu allkirja kontroll ebaõnnestus"
360
+ #: lib/ui-routes/route-helpers.js:81
361
+ msgid "Delegated"
362
+ msgstr "Delegeeritud"
388
363
 
389
- #: lib/tools.js:1662 lib/tools.js:1667
390
- msgid "Invalid or expired account setup URL"
391
- msgstr "Kehtetu või aegunud konto seadistamise URL"
364
+ #: lib/ui-routes/route-helpers.js:82
365
+ msgid "Using credentials from \"%s\""
366
+ msgstr "Kasutades volitusi \"%s\""
392
367
 
393
- #: lib/autodetect-imap-settings.js:80
368
+ #: lib/ui-routes/route-helpers.js:132
394
369
  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."
370
+ "Connection timed out. This usually occurs if you are behind a firewall or "
371
+ "connecting to the wrong port."
399
372
  msgstr ""
400
- "Microsoft on keelanud paroolil põhineva sisselogimise (sealhulgas rakenduste "
401
- "paroolid) Outlook.com, Hotmail.com ja Microsoft 365 e-posti kontodele. "
402
- "Jätkamiseks kasutage oma konto turvaliseks ühendamiseks nuppu \"Sign in with "
403
- "Microsoft\"."
373
+ "Ühendus on aegunud. See juhtub tavaliselt siis, kui olete tulemüüri taga või "
374
+ "ühendute valesse porti."
404
375
 
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 "Kontot ei õnnestunud luua. Proovi uuesti."
376
+ #: lib/ui-routes/route-helpers.js:135
377
+ msgid "The server unexpectedly closed the connection."
378
+ msgstr "Server sulges ootamatult ühenduse."
379
+
380
+ #: lib/ui-routes/route-helpers.js:138
381
+ msgid ""
382
+ "The server unexpectedly closed the connection. This usually happens when "
383
+ "attempting to connect to a TLS port without TLS enabled."
384
+ msgstr ""
385
+ "Server sulges ootamatult ühenduse. See juhtub tavaliselt siis, kui "
386
+ "üritatakse luua ühendust TLS-porti, ilma et TLS oleks lubatud."
408
387
 
409
- #, fuzzy
410
- #~| msgid "Failed to process request"
411
- #~ msgid "Couldn't process request. Try again."
412
- #~ msgstr "Päringu töötlemine ebaõnnestus"
388
+ #: lib/ui-routes/route-helpers.js:143
389
+ msgid ""
390
+ "The server refused the connection. This typically occurs if the server is "
391
+ "not running, is overloaded, or you are connecting to the wrong host or port."
392
+ msgstr ""
393
+ "Server keeldus ühendusest. See juhtub tavaliselt siis, kui server ei tööta, "
394
+ "on ülekoormatud või ühendute vale hostiga või porti."
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 "Tellimuse haldamine"
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 "Päringut ei õnnestunud töödelda. Proovi uuesti."
407
+
408
+ #: workers/api.js:2956 workers/api.js:3071
409
+ msgid "Requested page not found"
410
+ msgstr "Soovitud lehekülge ei leitud"
413
411
 
414
412
  #~ msgid "Unknown OAuth provider"
415
413
  #~ msgstr "Tundmatu OAuth teenus"
Binary file