emailengine-app 2.65.0 → 2.67.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 (50) hide show
  1. package/.github/workflows/deploy.yml +8 -8
  2. package/.github/workflows/release.yaml +9 -9
  3. package/.github/workflows/test.yml +2 -2
  4. package/CHANGELOG.md +53 -0
  5. package/bin/emailengine.js +3 -0
  6. package/data/google-crawlers.json +7 -1
  7. package/lib/account.js +35 -29
  8. package/lib/consts.js +5 -0
  9. package/lib/email-client/gmail-client.js +23 -27
  10. package/lib/email-client/imap/mailbox.js +46 -19
  11. package/lib/email-client/imap/sync-operations.js +51 -19
  12. package/lib/email-client/imap-client.js +28 -5
  13. package/lib/email-client/outlook-client.js +155 -1
  14. package/lib/oauth/gmail.js +52 -1
  15. package/lib/passkeys.js +206 -0
  16. package/lib/routes-ui.js +522 -21
  17. package/lib/ui-routes/oauth-routes.js +6 -1
  18. package/package.json +13 -11
  19. package/sbom.json +1 -1
  20. package/static/js/login-passkey.js +75 -0
  21. package/static/js/passkey-register.js +107 -0
  22. package/static/licenses.html +238 -38
  23. package/static/vendor/handlebars/handlebars.min-v4.7.9.js +29 -0
  24. package/static/vendor/simplewebauthn/browser.min.js +2 -0
  25. package/translations/de.mo +0 -0
  26. package/translations/de.po +91 -53
  27. package/translations/en.mo +0 -0
  28. package/translations/en.po +84 -52
  29. package/translations/et.mo +0 -0
  30. package/translations/et.po +95 -60
  31. package/translations/fr.mo +0 -0
  32. package/translations/fr.po +102 -65
  33. package/translations/ja.mo +0 -0
  34. package/translations/ja.po +93 -57
  35. package/translations/messages.pot +101 -76
  36. package/translations/nl.mo +0 -0
  37. package/translations/nl.po +92 -56
  38. package/translations/pl.mo +0 -0
  39. package/translations/pl.po +106 -70
  40. package/views/account/login.hbs +35 -25
  41. package/views/account/password.hbs +4 -4
  42. package/views/account/security.hbs +101 -12
  43. package/views/account/totp.hbs +3 -3
  44. package/views/config/oauth/app.hbs +25 -0
  45. package/views/layout/app.hbs +2 -2
  46. package/views/layout/login.hbs +6 -1
  47. package/views/oauth-scope-error.hbs +29 -0
  48. package/workers/api.js +81 -3
  49. package/workers/imap.js +4 -0
  50. package/static/vendor/handlebars/handlebars.min-v4.7.7.js +0 -29
@@ -1,8 +1,8 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2026-03-10 13:39+0000\n"
5
- "PO-Revision-Date: 2026-03-10 15:39+0200\n"
4
+ "POT-Creation-Date: 2026-03-31 08:47+0000\n"
5
+ "PO-Revision-Date: 2026-03-31 11:54+0300\n"
6
6
  "Last-Translator: \n"
7
7
  "Language-Team: \n"
8
8
  "Language: en\n"
@@ -10,10 +10,10 @@ msgstr ""
10
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
11
  "Content-Transfer-Encoding: 8bit\n"
12
12
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
- "X-Generator: Poedit 3.8\n"
13
+ "X-Generator: Poedit 3.9\n"
14
14
  "X-Poedit-Basepath: .\n"
15
15
 
16
- #: views/error.hbs:4 workers/api.js:7043
16
+ #: views/error.hbs:4 workers/api.js:7103
17
17
  msgid "Something went wrong"
18
18
  msgstr ""
19
19
 
@@ -29,12 +29,16 @@ msgstr "Go back"
29
29
  msgid "Dashboard"
30
30
  msgstr "Dashboard"
31
31
 
32
- #: views/config/license.hbs:45
32
+ #: views/config/license.hbs:45 lib/routes-ui.js:2497
33
33
  msgid "%d day"
34
34
  msgid_plural "%d days"
35
35
  msgstr[0] ""
36
36
  msgstr[1] ""
37
37
 
38
+ #: views/redirect.hbs:1
39
+ msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
40
+ msgstr ""
41
+
38
42
  #: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
39
43
  msgid "Unsubscribe"
40
44
  msgstr ""
@@ -79,8 +83,28 @@ msgstr ""
79
83
  msgid "Enter your email address"
80
84
  msgstr ""
81
85
 
82
- #: views/redirect.hbs:1
83
- msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
86
+ #: views/oauth-scope-error.hbs:2
87
+ msgid "Insufficient Permissions"
88
+ msgstr ""
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
+
96
+ #: views/oauth-scope-error.hbs:12
97
+ msgid "The following permissions were not granted:"
98
+ msgstr ""
99
+
100
+ #: views/oauth-scope-error.hbs:21
101
+ msgid ""
102
+ "Please try again and make sure all permission checkboxes are selected on the "
103
+ "Google consent screen."
104
+ msgstr ""
105
+
106
+ #: views/oauth-scope-error.hbs:27
107
+ msgid "Try Again"
84
108
  msgstr ""
85
109
 
86
110
  #: views/accounts/register/imap.hbs:11
@@ -105,6 +129,14 @@ msgstr ""
105
129
  msgid "Continue"
106
130
  msgstr ""
107
131
 
132
+ #: views/accounts/register/index.hbs:2
133
+ msgid "Choose your email account provider"
134
+ msgstr ""
135
+
136
+ #: views/accounts/register/index.hbs:15
137
+ msgid "Standard IMAP"
138
+ msgstr ""
139
+
108
140
  #: views/accounts/register/imap-server.hbs:19
109
141
  msgid "IMAP"
110
142
  msgstr ""
@@ -152,8 +184,8 @@ msgstr ""
152
184
 
153
185
  #: views/accounts/register/imap-server.hbs:100
154
186
  msgid ""
155
- "TLS (also known as SSL) is usually only needed when using port 993. For "
156
- "other ports EmailEngine falls back to using STARTTLS based encryption."
187
+ "TLS (also known as SSL) is usually only needed when using port 993. For other "
188
+ "ports EmailEngine falls back to using STARTTLS based encryption."
157
189
  msgstr ""
158
190
 
159
191
  #: views/accounts/register/imap-server.hbs:102
@@ -171,8 +203,8 @@ msgstr ""
171
203
 
172
204
  #: views/accounts/register/imap-server.hbs:191
173
205
  msgid ""
174
- "TLS (also known as SSL) is usually only needed when using port 465. For "
175
- "other ports EmailEngine falls back to using STARTTLS based encryption."
206
+ "TLS (also known as SSL) is usually only needed when using port 465. For other "
207
+ "ports EmailEngine falls back to using STARTTLS based encryption."
176
208
  msgstr ""
177
209
 
178
210
  #: views/accounts/register/imap-server.hbs:209
@@ -220,116 +252,116 @@ msgstr ""
220
252
  msgid "Request failed."
221
253
  msgstr ""
222
254
 
223
- #: views/accounts/register/index.hbs:2
224
- msgid "Choose your email account provider"
225
- msgstr ""
226
-
227
- #: views/accounts/register/index.hbs:15
228
- msgid "Standard IMAP"
229
- msgstr ""
230
-
231
- #: lib/routes-ui.js:523 lib/ui-routes/account-routes.js:60
255
+ #: lib/routes-ui.js:384 lib/ui-routes/account-routes.js:60
232
256
  msgid "Delegated"
233
257
  msgstr ""
234
258
 
235
- #: lib/routes-ui.js:524 lib/ui-routes/account-routes.js:61
259
+ #: lib/routes-ui.js:385 lib/ui-routes/account-routes.js:61
236
260
  msgid "Using credentials from \"%s\""
237
261
  msgstr ""
238
262
 
239
- #: lib/routes-ui.js:574 lib/ui-routes/account-routes.js:111
263
+ #: lib/routes-ui.js:435 lib/ui-routes/account-routes.js:111
240
264
  msgid ""
241
265
  "Connection timed out. This usually occurs if you are behind a firewall or "
242
266
  "connecting to the wrong port."
243
267
  msgstr ""
244
268
 
245
- #: lib/routes-ui.js:577 lib/ui-routes/account-routes.js:114
269
+ #: lib/routes-ui.js:438 lib/ui-routes/account-routes.js:114
246
270
  msgid "The server unexpectedly closed the connection."
247
271
  msgstr ""
248
272
 
249
- #: lib/routes-ui.js:580 lib/ui-routes/account-routes.js:117
273
+ #: lib/routes-ui.js:441 lib/ui-routes/account-routes.js:117
250
274
  msgid ""
251
275
  "The server unexpectedly closed the connection. This usually happens when "
252
276
  "attempting to connect to a TLS port without TLS enabled."
253
277
  msgstr ""
254
278
 
255
- #: lib/routes-ui.js:585 lib/ui-routes/account-routes.js:122
279
+ #: lib/routes-ui.js:446 lib/ui-routes/account-routes.js:122
256
280
  msgid ""
257
- "The server refused the connection. This typically occurs if the server is "
258
- "not running, is overloaded, or you are connecting to the wrong host or port."
281
+ "The server refused the connection. This typically occurs if the server is not "
282
+ "running, is overloaded, or you are connecting to the wrong host or port."
259
283
  msgstr ""
260
284
 
261
- #: lib/routes-ui.js:712
285
+ #: lib/routes-ui.js:573
262
286
  msgid "Invalid API key for OpenAI"
263
287
  msgstr ""
264
288
 
265
- #: lib/routes-ui.js:4754 lib/routes-ui.js:4789 lib/routes-ui.js:4904
266
- #: lib/routes-ui.js:4951 lib/routes-ui.js:5198 lib/routes-ui.js:5234
267
- #: workers/api.js:2557 lib/ui-routes/account-routes.js:549
268
- #: lib/ui-routes/account-routes.js:585 lib/ui-routes/account-routes.js:702
269
- #: lib/ui-routes/account-routes.js:749 lib/ui-routes/account-routes.js:998
270
- #: lib/ui-routes/account-routes.js:1034
289
+ #: lib/routes-ui.js:2490
290
+ msgid "Unknown"
291
+ msgstr ""
292
+
293
+ #: lib/routes-ui.js:2499
294
+ msgid "Indefinite"
295
+ msgstr ""
296
+
297
+ #: lib/routes-ui.js:5133 lib/routes-ui.js:5168 lib/routes-ui.js:5283
298
+ #: lib/routes-ui.js:5330 lib/routes-ui.js:5577 lib/routes-ui.js:5613
299
+ #: workers/api.js:2279 workers/api.js:2607 lib/ui-routes/account-routes.js:554
300
+ #: lib/ui-routes/account-routes.js:590 lib/ui-routes/account-routes.js:707
301
+ #: lib/ui-routes/account-routes.js:754 lib/ui-routes/account-routes.js:1003
302
+ #: lib/ui-routes/account-routes.js:1039
271
303
  msgid "Email Account Setup"
272
304
  msgstr ""
273
305
 
274
- #: lib/routes-ui.js:4814 lib/routes-ui.js:4847 lib/routes-ui.js:7807
275
- #: lib/ui-routes/account-routes.js:610 lib/ui-routes/account-routes.js:644
306
+ #: lib/routes-ui.js:5193 lib/routes-ui.js:5226 lib/routes-ui.js:8186
307
+ #: lib/ui-routes/account-routes.js:615 lib/ui-routes/account-routes.js:649
276
308
  msgid "Invalid request. Check your input and try again."
277
309
  msgstr ""
278
310
 
279
- #: lib/routes-ui.js:5007 lib/routes-ui.js:5018
280
- #: lib/ui-routes/account-routes.js:806 lib/ui-routes/account-routes.js:817
311
+ #: lib/routes-ui.js:5386 lib/routes-ui.js:5397
312
+ #: lib/ui-routes/account-routes.js:811 lib/ui-routes/account-routes.js:822
281
313
  #: lib/ui-routes/admin-entities-routes.js:2020
282
314
  msgid "Server hostname was not found"
283
315
  msgstr ""
284
316
 
285
- #: lib/routes-ui.js:5010 lib/routes-ui.js:5021
286
- #: lib/ui-routes/account-routes.js:809 lib/ui-routes/account-routes.js:820
317
+ #: lib/routes-ui.js:5389 lib/routes-ui.js:5400
318
+ #: lib/ui-routes/account-routes.js:814 lib/ui-routes/account-routes.js:825
287
319
  #: lib/ui-routes/admin-entities-routes.js:2023
288
320
  msgid "Invalid username or password"
289
321
  msgstr ""
290
322
 
291
- #: lib/routes-ui.js:5024 lib/ui-routes/account-routes.js:823
323
+ #: lib/routes-ui.js:5403 lib/ui-routes/account-routes.js:828
292
324
  #: lib/ui-routes/admin-entities-routes.js:2026
293
325
  msgid "Authentication credentials were not provided"
294
326
  msgstr ""
295
327
 
296
- #: lib/routes-ui.js:5027 lib/ui-routes/account-routes.js:826
328
+ #: lib/routes-ui.js:5406 lib/ui-routes/account-routes.js:831
297
329
  #: lib/ui-routes/admin-entities-routes.js:2029
298
330
  msgid "OAuth2 authentication failed"
299
331
  msgstr ""
300
332
 
301
- #: lib/routes-ui.js:5030 lib/routes-ui.js:5034
302
- #: lib/ui-routes/account-routes.js:829 lib/ui-routes/account-routes.js:833
333
+ #: lib/routes-ui.js:5409 lib/routes-ui.js:5413
334
+ #: lib/ui-routes/account-routes.js:834 lib/ui-routes/account-routes.js:838
303
335
  #: lib/ui-routes/admin-entities-routes.js:2032
304
336
  #: lib/ui-routes/admin-entities-routes.js:2036
305
337
  msgid "TLS protocol error"
306
338
  msgstr ""
307
339
 
308
- #: lib/routes-ui.js:5038 lib/ui-routes/account-routes.js:837
340
+ #: lib/routes-ui.js:5417 lib/ui-routes/account-routes.js:842
309
341
  #: lib/ui-routes/admin-entities-routes.js:2040
310
342
  msgid "Connection timed out"
311
343
  msgstr ""
312
344
 
313
- #: lib/routes-ui.js:5041 lib/ui-routes/account-routes.js:840
345
+ #: lib/routes-ui.js:5420 lib/ui-routes/account-routes.js:845
314
346
  #: lib/ui-routes/admin-entities-routes.js:2043
315
347
  msgid "Could not connect to server"
316
348
  msgstr ""
317
349
 
318
- #: lib/routes-ui.js:5044 lib/ui-routes/account-routes.js:843
350
+ #: lib/routes-ui.js:5423 lib/ui-routes/account-routes.js:848
319
351
  #: lib/ui-routes/admin-entities-routes.js:2046
320
352
  msgid "Unexpected server response"
321
353
  msgstr ""
322
354
 
323
- #: lib/routes-ui.js:7770 lib/tools.js:950
355
+ #: lib/routes-ui.js:8149 lib/tools.js:950
324
356
  msgid "Invalid input"
325
357
  msgstr ""
326
358
 
327
- #: lib/routes-ui.js:7780 lib/routes-ui.js:7898 lib/routes-ui.js:7915
328
- #: lib/routes-ui.js:7951
359
+ #: lib/routes-ui.js:8159 lib/routes-ui.js:8277 lib/routes-ui.js:8294
360
+ #: lib/routes-ui.js:8330
329
361
  msgid "Subscription Management"
330
362
  msgstr ""
331
363
 
332
- #: workers/api.js:7042 workers/api.js:7159
364
+ #: workers/api.js:7102 workers/api.js:7219
333
365
  msgid "Requested page not found"
334
366
  msgstr ""
335
367
 
@@ -349,6 +381,6 @@ msgid ""
349
381
  "account."
350
382
  msgstr ""
351
383
 
352
- #: lib/ui-routes/account-routes.js:742 lib/ui-routes/account-routes.js:1027
384
+ #: lib/ui-routes/account-routes.js:747 lib/ui-routes/account-routes.js:1032
353
385
  msgid "Couldn't set up account. Try again."
354
386
  msgstr ""
Binary file
@@ -1,7 +1,7 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2026-03-10 13:39+0000\n"
4
+ "POT-Creation-Date: 2026-03-31 08:47+0000\n"
5
5
  "PO-Revision-Date: \n"
6
6
  "Last-Translator: \n"
7
7
  "Language-Team: \n"
@@ -10,9 +10,9 @@ msgstr ""
10
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
11
  "Content-Transfer-Encoding: 8bit\n"
12
12
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
- "X-Generator: Poedit 3.8\n"
13
+ "X-Generator: Poedit 3.9\n"
14
14
 
15
- #: views/error.hbs:4 workers/api.js:7043
15
+ #: views/error.hbs:4 workers/api.js:7103
16
16
  msgid "Something went wrong"
17
17
  msgstr "Miski läks valesti"
18
18
 
@@ -28,12 +28,16 @@ msgstr "Mine tagasi"
28
28
  msgid "Dashboard"
29
29
  msgstr "Avaleht"
30
30
 
31
- #: views/config/license.hbs:45
31
+ #: views/config/license.hbs:45 lib/routes-ui.js:2497
32
32
  msgid "%d day"
33
33
  msgid_plural "%d days"
34
34
  msgstr[0] "%d päev"
35
35
  msgstr[1] "%d päeva"
36
36
 
37
+ #: views/redirect.hbs:1
38
+ msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
39
+ msgstr "Kliki <a href=\"%s\">siin</a>, et jätkata&mldr;"
40
+
37
41
  #: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
38
42
  msgid "Unsubscribe"
39
43
  msgstr "Loobu tellimusest"
@@ -54,8 +58,8 @@ msgstr "Uuesti tellimine"
54
58
  #: views/unsubscribe.hbs:21
55
59
  msgid "Are you sure you want to re-subscribe your email address <em>%s</em>?"
56
60
  msgstr ""
57
- "Kas olete kindel, et soovite oma e-posti aadressi <em>%s</em> uuesti "
58
- "tellijaks märkida?"
61
+ "Kas olete kindel, et soovite oma e-posti aadressi <em>%s</em> uuesti tellijaks "
62
+ "märkida?"
59
63
 
60
64
  #: views/unsubscribe.hbs:32 views/accounts/register/imap-server.hbs:251
61
65
  msgid "Close"
@@ -81,9 +85,33 @@ msgstr "E-posti aadress"
81
85
  msgid "Enter your email address"
82
86
  msgstr "Sisestage oma e-posti aadress"
83
87
 
84
- #: views/redirect.hbs:1
85
- msgid "Click <a href=\"%s\">here</a> to continue&mldr;"
86
- msgstr "Kliki <a href=\"%s\">siin</a>, et jätkata&mldr;"
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"
87
115
 
88
116
  #: views/accounts/register/imap.hbs:11
89
117
  msgid "Your name"
@@ -93,8 +121,7 @@ msgstr "Sinu nimi"
93
121
  msgid "Enter your full name"
94
122
  msgstr "Sisestage oma täisnimi"
95
123
 
96
- #: views/accounts/register/imap.hbs:31
97
- #: views/accounts/register/imap-server.hbs:36
124
+ #: views/accounts/register/imap.hbs:31 views/accounts/register/imap-server.hbs:36
98
125
  #: views/accounts/register/imap-server.hbs:128
99
126
  msgid "Password"
100
127
  msgstr "Parool"
@@ -107,6 +134,14 @@ msgstr "Sisestage oma konto parool"
107
134
  msgid "Continue"
108
135
  msgstr "Jätka"
109
136
 
137
+ #: views/accounts/register/index.hbs:2
138
+ msgid "Choose your email account provider"
139
+ msgstr "Valige oma e-posti konto pakkuja"
140
+
141
+ #: views/accounts/register/index.hbs:15
142
+ msgid "Standard IMAP"
143
+ msgstr "Standardne IMAP"
144
+
110
145
  #: views/accounts/register/imap-server.hbs:19
111
146
  msgid "IMAP"
112
147
  msgstr "IMAP"
@@ -154,8 +189,8 @@ msgstr "TLS IMAP serveris"
154
189
 
155
190
  #: views/accounts/register/imap-server.hbs:100
156
191
  msgid ""
157
- "TLS (also known as SSL) is usually only needed when using port 993. For "
158
- "other ports EmailEngine falls back to using STARTTLS based encryption."
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."
159
194
  msgstr ""
160
195
  "TLS (tuntud ka kui SSL) on tavaliselt vajalik ainult siis, kui kasutatakse "
161
196
  "porti 993. Teiste portide puhul kasutab EmailEngine STARTTLS-põhist "
@@ -176,8 +211,8 @@ msgstr "TLS SMTP serveris"
176
211
 
177
212
  #: views/accounts/register/imap-server.hbs:191
178
213
  msgid ""
179
- "TLS (also known as SSL) is usually only needed when using port 465. For "
180
- "other ports EmailEngine falls back to using STARTTLS based encryption."
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."
181
216
  msgstr ""
182
217
  "TLS (tuntud ka kui SSL) on tavaliselt vajalik ainult siis, kui kasutatakse "
183
218
  "porti 465. Teiste portide puhul kasutab EmailEngine STARTTLS-põhist "
@@ -228,23 +263,15 @@ msgstr "SMTP serveriga ei õnnestunud ühendust luua"
228
263
  msgid "Request failed."
229
264
  msgstr "Päring ebaõnnestus."
230
265
 
231
- #: views/accounts/register/index.hbs:2
232
- msgid "Choose your email account provider"
233
- msgstr "Valige oma e-posti konto pakkuja"
234
-
235
- #: views/accounts/register/index.hbs:15
236
- msgid "Standard IMAP"
237
- msgstr "Standardne IMAP"
238
-
239
- #: lib/routes-ui.js:523 lib/ui-routes/account-routes.js:60
266
+ #: lib/routes-ui.js:384 lib/ui-routes/account-routes.js:60
240
267
  msgid "Delegated"
241
268
  msgstr "Delegeeritud"
242
269
 
243
- #: lib/routes-ui.js:524 lib/ui-routes/account-routes.js:61
270
+ #: lib/routes-ui.js:385 lib/ui-routes/account-routes.js:61
244
271
  msgid "Using credentials from \"%s\""
245
272
  msgstr "Kasutades volitusi \"%s\""
246
273
 
247
- #: lib/routes-ui.js:574 lib/ui-routes/account-routes.js:111
274
+ #: lib/routes-ui.js:435 lib/ui-routes/account-routes.js:111
248
275
  msgid ""
249
276
  "Connection timed out. This usually occurs if you are behind a firewall or "
250
277
  "connecting to the wrong port."
@@ -252,98 +279,106 @@ msgstr ""
252
279
  "Ühendus on aegunud. See juhtub tavaliselt siis, kui olete tulemüüri taga või "
253
280
  "ühendute valesse porti."
254
281
 
255
- #: lib/routes-ui.js:577 lib/ui-routes/account-routes.js:114
282
+ #: lib/routes-ui.js:438 lib/ui-routes/account-routes.js:114
256
283
  msgid "The server unexpectedly closed the connection."
257
284
  msgstr "Server sulges ootamatult ühenduse."
258
285
 
259
- #: lib/routes-ui.js:580 lib/ui-routes/account-routes.js:117
286
+ #: lib/routes-ui.js:441 lib/ui-routes/account-routes.js:117
260
287
  msgid ""
261
288
  "The server unexpectedly closed the connection. This usually happens when "
262
289
  "attempting to connect to a TLS port without TLS enabled."
263
290
  msgstr ""
264
- "Server sulges ootamatult ühenduse. See juhtub tavaliselt siis, kui "
265
- "üritatakse luua ühendust TLS-porti, ilma et TLS oleks lubatud."
291
+ "Server sulges ootamatult ühenduse. See juhtub tavaliselt siis, kui üritatakse "
292
+ "luua ühendust TLS-porti, ilma et TLS oleks lubatud."
266
293
 
267
- #: lib/routes-ui.js:585 lib/ui-routes/account-routes.js:122
294
+ #: lib/routes-ui.js:446 lib/ui-routes/account-routes.js:122
268
295
  msgid ""
269
- "The server refused the connection. This typically occurs if the server is "
270
- "not running, is overloaded, or you are connecting to the wrong host or port."
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."
271
298
  msgstr ""
272
- "Server keeldus ühendusest. See juhtub tavaliselt siis, kui server ei tööta, "
273
- "on ülekoormatud või ühendute vale hostiga või porti."
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
301
 
275
- #: lib/routes-ui.js:712
302
+ #: lib/routes-ui.js:573
276
303
  msgid "Invalid API key for OpenAI"
277
304
  msgstr "OpenAI jaoks vale API võti"
278
305
 
279
- #: lib/routes-ui.js:4754 lib/routes-ui.js:4789 lib/routes-ui.js:4904
280
- #: lib/routes-ui.js:4951 lib/routes-ui.js:5198 lib/routes-ui.js:5234
281
- #: workers/api.js:2557 lib/ui-routes/account-routes.js:549
282
- #: lib/ui-routes/account-routes.js:585 lib/ui-routes/account-routes.js:702
283
- #: lib/ui-routes/account-routes.js:749 lib/ui-routes/account-routes.js:998
284
- #: lib/ui-routes/account-routes.js:1034
306
+ #: lib/routes-ui.js:2490
307
+ msgid "Unknown"
308
+ msgstr "Tundmatu"
309
+
310
+ #: lib/routes-ui.js:2499
311
+ msgid "Indefinite"
312
+ msgstr "Määramata"
313
+
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
285
320
  msgid "Email Account Setup"
286
321
  msgstr "E-posti konto seadistamine"
287
322
 
288
- #: lib/routes-ui.js:4814 lib/routes-ui.js:4847 lib/routes-ui.js:7807
289
- #: lib/ui-routes/account-routes.js:610 lib/ui-routes/account-routes.js:644
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
290
325
  msgid "Invalid request. Check your input and try again."
291
326
  msgstr "Päringu argumentide kontroll ebaõnnestus."
292
327
 
293
- #: lib/routes-ui.js:5007 lib/routes-ui.js:5018
294
- #: lib/ui-routes/account-routes.js:806 lib/ui-routes/account-routes.js:817
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
295
330
  #: lib/ui-routes/admin-entities-routes.js:2020
296
331
  msgid "Server hostname was not found"
297
332
  msgstr "Serverit ei leitud"
298
333
 
299
- #: lib/routes-ui.js:5010 lib/routes-ui.js:5021
300
- #: lib/ui-routes/account-routes.js:809 lib/ui-routes/account-routes.js:820
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
301
336
  #: lib/ui-routes/admin-entities-routes.js:2023
302
337
  msgid "Invalid username or password"
303
338
  msgstr "Vigane kasutajanimi või parool"
304
339
 
305
- #: lib/routes-ui.js:5024 lib/ui-routes/account-routes.js:823
340
+ #: lib/routes-ui.js:5403 lib/ui-routes/account-routes.js:828
306
341
  #: lib/ui-routes/admin-entities-routes.js:2026
307
342
  msgid "Authentication credentials were not provided"
308
343
  msgstr "Autentimise andmeid ei esitatud"
309
344
 
310
- #: lib/routes-ui.js:5027 lib/ui-routes/account-routes.js:826
345
+ #: lib/routes-ui.js:5406 lib/ui-routes/account-routes.js:831
311
346
  #: lib/ui-routes/admin-entities-routes.js:2029
312
347
  msgid "OAuth2 authentication failed"
313
348
  msgstr "OAuth2 autentimine ebaõnnestus"
314
349
 
315
- #: lib/routes-ui.js:5030 lib/routes-ui.js:5034
316
- #: lib/ui-routes/account-routes.js:829 lib/ui-routes/account-routes.js:833
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
317
352
  #: lib/ui-routes/admin-entities-routes.js:2032
318
353
  #: lib/ui-routes/admin-entities-routes.js:2036
319
354
  msgid "TLS protocol error"
320
355
  msgstr "TLS protokolli viga"
321
356
 
322
- #: lib/routes-ui.js:5038 lib/ui-routes/account-routes.js:837
357
+ #: lib/routes-ui.js:5417 lib/ui-routes/account-routes.js:842
323
358
  #: lib/ui-routes/admin-entities-routes.js:2040
324
359
  msgid "Connection timed out"
325
360
  msgstr "Ühenduse aegumine"
326
361
 
327
- #: lib/routes-ui.js:5041 lib/ui-routes/account-routes.js:840
362
+ #: lib/routes-ui.js:5420 lib/ui-routes/account-routes.js:845
328
363
  #: lib/ui-routes/admin-entities-routes.js:2043
329
364
  msgid "Could not connect to server"
330
365
  msgstr "Ei õnnestunud ühenduda serveriga"
331
366
 
332
- #: lib/routes-ui.js:5044 lib/ui-routes/account-routes.js:843
367
+ #: lib/routes-ui.js:5423 lib/ui-routes/account-routes.js:848
333
368
  #: lib/ui-routes/admin-entities-routes.js:2046
334
369
  msgid "Unexpected server response"
335
370
  msgstr "Ootamatu serveri vastus"
336
371
 
337
- #: lib/routes-ui.js:7770 lib/tools.js:950
372
+ #: lib/routes-ui.js:8149 lib/tools.js:950
338
373
  msgid "Invalid input"
339
374
  msgstr "Vale sisestus"
340
375
 
341
- #: lib/routes-ui.js:7780 lib/routes-ui.js:7898 lib/routes-ui.js:7915
342
- #: lib/routes-ui.js:7951
376
+ #: lib/routes-ui.js:8159 lib/routes-ui.js:8277 lib/routes-ui.js:8294
377
+ #: lib/routes-ui.js:8330
343
378
  msgid "Subscription Management"
344
379
  msgstr "Tellimuse haldamine"
345
380
 
346
- #: workers/api.js:7042 workers/api.js:7159
381
+ #: workers/api.js:7102 workers/api.js:7219
347
382
  msgid "Requested page not found"
348
383
  msgstr "Soovitud lehekülge ei leitud"
349
384
 
@@ -367,7 +402,7 @@ msgstr ""
367
402
  "Jätkamiseks kasutage oma konto turvaliseks ühendamiseks nuppu \"Sign in with "
368
403
  "Microsoft\"."
369
404
 
370
- #: lib/ui-routes/account-routes.js:742 lib/ui-routes/account-routes.js:1027
405
+ #: lib/ui-routes/account-routes.js:747 lib/ui-routes/account-routes.js:1032
371
406
  msgid "Couldn't set up account. Try again."
372
407
  msgstr "Kontot ei õnnestunud luua. Proovi uuesti."
373
408
 
Binary file