emailengine-app 2.61.1 → 2.61.2
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 +9 -0
- package/data/google-crawlers.json +1 -1
- package/lib/account/account-state.js +248 -0
- package/lib/account.js +17 -178
- package/lib/api-routes/account-routes.js +1006 -0
- package/lib/api-routes/message-routes.js +1377 -0
- package/lib/consts.js +12 -2
- package/lib/email-client/base-client.js +282 -771
- package/lib/email-client/gmail/gmail-api.js +243 -0
- package/lib/email-client/gmail-client.js +145 -53
- package/lib/email-client/imap/mailbox.js +24 -698
- package/lib/email-client/imap/sync-operations.js +812 -0
- package/lib/email-client/imap-client.js +1 -1
- package/lib/email-client/message-builder.js +566 -0
- package/lib/email-client/notification-handler.js +314 -0
- package/lib/email-client/outlook/graph-api.js +326 -0
- package/lib/email-client/outlook-client.js +159 -113
- package/lib/email-client/smtp-pool-manager.js +196 -0
- package/lib/imapproxy/imap-server.js +3 -12
- package/lib/oauth/gmail.js +4 -4
- package/lib/oauth/mail-ru.js +30 -5
- package/lib/oauth/outlook.js +57 -3
- package/lib/oauth/pubsub/google.js +30 -11
- package/lib/oauth/scope-checker.js +202 -0
- package/lib/oauth2-apps.js +8 -4
- package/lib/redis-operations.js +484 -0
- package/lib/routes-ui.js +283 -2582
- package/lib/tools.js +4 -196
- package/lib/ui-routes/account-routes.js +1931 -0
- package/lib/ui-routes/admin-config-routes.js +1233 -0
- package/lib/ui-routes/admin-entities-routes.js +2367 -0
- package/lib/ui-routes/oauth-routes.js +992 -0
- package/lib/utils/network.js +237 -0
- package/package.json +9 -9
- package/sbom.json +1 -1
- package/static/js/app.js +5 -5
- package/static/licenses.html +78 -18
- package/translations/de.mo +0 -0
- package/translations/de.po +85 -82
- package/translations/en.mo +0 -0
- package/translations/en.po +63 -71
- package/translations/et.mo +0 -0
- package/translations/et.po +84 -82
- package/translations/fr.mo +0 -0
- package/translations/fr.po +85 -82
- package/translations/ja.mo +0 -0
- package/translations/ja.po +84 -82
- package/translations/messages.pot +74 -87
- package/translations/nl.mo +0 -0
- package/translations/nl.po +86 -82
- package/translations/pl.mo +0 -0
- package/translations/pl.po +84 -82
- package/views/account/security.hbs +4 -4
- package/views/accounts/account.hbs +13 -13
- package/views/accounts/register/imap-server.hbs +12 -12
- package/views/config/document-store/pre-processing/index.hbs +4 -2
- package/views/config/oauth/app.hbs +6 -7
- package/views/config/oauth/index.hbs +2 -2
- package/views/config/service.hbs +3 -4
- package/views/dashboard.hbs +5 -7
- package/views/error.hbs +22 -7
- package/views/gateways/gateway.hbs +2 -2
- package/views/partials/add_account_modal.hbs +7 -10
- package/views/partials/document_store_header.hbs +1 -1
- package/views/partials/editor_scope_info.hbs +0 -1
- package/views/partials/oauth_config_header.hbs +1 -1
- package/views/partials/side_menu.hbs +3 -3
- package/views/partials/webhook_form.hbs +2 -2
- package/views/templates/index.hbs +1 -1
- package/views/templates/template.hbs +8 -8
- package/views/tokens/index.hbs +6 -6
- package/views/tokens/new.hbs +1 -1
- package/views/webhooks/index.hbs +4 -4
- package/views/webhooks/webhook.hbs +7 -7
- package/workers/api.js +148 -2436
- package/workers/smtp.js +2 -1
- package/lib/imapproxy/imap-core/test/client.js +0 -46
- package/lib/imapproxy/imap-core/test/fixtures/append.eml +0 -1196
- package/lib/imapproxy/imap-core/test/fixtures/chunks.js +0 -44
- package/lib/imapproxy/imap-core/test/fixtures/fix1.eml +0 -6
- package/lib/imapproxy/imap-core/test/fixtures/fix2.eml +0 -599
- package/lib/imapproxy/imap-core/test/fixtures/fix3.eml +0 -32
- package/lib/imapproxy/imap-core/test/fixtures/fix4.eml +0 -6
- package/lib/imapproxy/imap-core/test/fixtures/mimetorture.eml +0 -599
- package/lib/imapproxy/imap-core/test/fixtures/mimetorture.js +0 -2740
- package/lib/imapproxy/imap-core/test/fixtures/mimetorture.json +0 -1411
- package/lib/imapproxy/imap-core/test/fixtures/mimetree.js +0 -85
- package/lib/imapproxy/imap-core/test/fixtures/nodemailer.eml +0 -582
- package/lib/imapproxy/imap-core/test/fixtures/ryan_finnie_mime_torture.eml +0 -599
- package/lib/imapproxy/imap-core/test/fixtures/simple.eml +0 -42
- package/lib/imapproxy/imap-core/test/fixtures/simple.json +0 -164
- package/lib/imapproxy/imap-core/test/imap-compile-stream-test.js +0 -671
- package/lib/imapproxy/imap-core/test/imap-compiler-test.js +0 -272
- package/lib/imapproxy/imap-core/test/imap-indexer-test.js +0 -236
- package/lib/imapproxy/imap-core/test/imap-parser-test.js +0 -922
- package/lib/imapproxy/imap-core/test/memory-notifier.js +0 -129
- package/lib/imapproxy/imap-core/test/prepare.sh +0 -74
- package/lib/imapproxy/imap-core/test/protocol-test.js +0 -1756
- package/lib/imapproxy/imap-core/test/search-test.js +0 -1356
- package/lib/imapproxy/imap-core/test/test-client.js +0 -152
- package/lib/imapproxy/imap-core/test/test-server.js +0 -623
- package/lib/imapproxy/imap-core/test/tools-test.js +0 -22
- package/test/api-test.js +0 -899
- package/test/autoreply-test.js +0 -327
- package/test/bounce-test.js +0 -151
- package/test/complaint-test.js +0 -256
- package/test/fixtures/autoreply/LICENSE +0 -27
- package/test/fixtures/autoreply/rfc3834-01.eml +0 -23
- package/test/fixtures/autoreply/rfc3834-02.eml +0 -24
- package/test/fixtures/autoreply/rfc3834-03.eml +0 -26
- package/test/fixtures/autoreply/rfc3834-04.eml +0 -48
- package/test/fixtures/autoreply/rfc3834-05.eml +0 -19
- package/test/fixtures/autoreply/rfc3834-06.eml +0 -59
- package/test/fixtures/bounces/163.eml +0 -2521
- package/test/fixtures/bounces/fastmail.eml +0 -242
- package/test/fixtures/bounces/gmail.eml +0 -252
- package/test/fixtures/bounces/hotmail.eml +0 -655
- package/test/fixtures/bounces/mailru.eml +0 -121
- package/test/fixtures/bounces/outlook.eml +0 -1107
- package/test/fixtures/bounces/postfix.eml +0 -101
- package/test/fixtures/bounces/rambler.eml +0 -116
- package/test/fixtures/bounces/workmail.eml +0 -142
- package/test/fixtures/bounces/yahoo.eml +0 -139
- package/test/fixtures/bounces/zoho.eml +0 -83
- package/test/fixtures/bounces/zonemta.eml +0 -100
- package/test/fixtures/complaints/LICENSE +0 -27
- package/test/fixtures/complaints/amazonses.eml +0 -72
- package/test/fixtures/complaints/dmarc.eml +0 -59
- package/test/fixtures/complaints/hotmail.eml +0 -49
- package/test/fixtures/complaints/optout.eml +0 -40
- package/test/fixtures/complaints/standard-arf.eml +0 -68
- package/test/fixtures/complaints/yahoo.eml +0 -68
- package/test/oauth2-apps-test.js +0 -301
- package/test/sendonly-test.js +0 -160
- package/test/test-config.js +0 -34
- package/test/webhooks-server.js +0 -39
package/translations/en.po
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
msgid ""
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: \n"
|
|
4
|
-
"POT-Creation-Date: 2025-
|
|
5
|
-
"PO-Revision-Date: 2025-
|
|
4
|
+
"POT-Creation-Date: 2025-12-29 11:35+0000\n"
|
|
5
|
+
"PO-Revision-Date: 2025-12-29 13:36+0200\n"
|
|
6
6
|
"Last-Translator: \n"
|
|
7
7
|
"Language-Team: \n"
|
|
8
8
|
"Language: en\n"
|
|
@@ -10,7 +10,7 @@ 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.
|
|
13
|
+
"X-Generator: Poedit 3.8\n"
|
|
14
14
|
"X-Poedit-Basepath: .\n"
|
|
15
15
|
|
|
16
16
|
#: views/config/license.hbs:45
|
|
@@ -19,6 +19,10 @@ msgid_plural "%d days"
|
|
|
19
19
|
msgstr[0] ""
|
|
20
20
|
msgstr[1] ""
|
|
21
21
|
|
|
22
|
+
#: views/redirect.hbs:1
|
|
23
|
+
msgid "Click <a href=\"%s\">here</a> to continue…"
|
|
24
|
+
msgstr ""
|
|
25
|
+
|
|
22
26
|
#: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
|
|
23
27
|
msgid "Unsubscribe"
|
|
24
28
|
msgstr ""
|
|
@@ -63,10 +67,6 @@ msgstr ""
|
|
|
63
67
|
msgid "Enter your email address"
|
|
64
68
|
msgstr ""
|
|
65
69
|
|
|
66
|
-
#: views/redirect.hbs:1
|
|
67
|
-
msgid "Click <a href=\"%s\">here</a> to continue…"
|
|
68
|
-
msgstr ""
|
|
69
|
-
|
|
70
70
|
#: views/accounts/register/index.hbs:2
|
|
71
71
|
msgid "Choose your email account provider"
|
|
72
72
|
msgstr ""
|
|
@@ -75,21 +75,37 @@ msgstr ""
|
|
|
75
75
|
msgid "Standard IMAP"
|
|
76
76
|
msgstr ""
|
|
77
77
|
|
|
78
|
-
#: views/accounts/register/imap
|
|
79
|
-
msgid "
|
|
78
|
+
#: views/accounts/register/imap.hbs:11
|
|
79
|
+
msgid "Your name"
|
|
80
80
|
msgstr ""
|
|
81
81
|
|
|
82
|
-
#: views/accounts/register/imap
|
|
83
|
-
|
|
84
|
-
msgid "Username"
|
|
82
|
+
#: views/accounts/register/imap.hbs:17
|
|
83
|
+
msgid "Enter your full name"
|
|
85
84
|
msgstr ""
|
|
86
85
|
|
|
86
|
+
#: views/accounts/register/imap.hbs:31
|
|
87
87
|
#: views/accounts/register/imap-server.hbs:36
|
|
88
88
|
#: views/accounts/register/imap-server.hbs:128
|
|
89
|
-
#: views/accounts/register/imap.hbs:31
|
|
90
89
|
msgid "Password"
|
|
91
90
|
msgstr ""
|
|
92
91
|
|
|
92
|
+
#: views/accounts/register/imap.hbs:37
|
|
93
|
+
msgid "Enter your account password"
|
|
94
|
+
msgstr ""
|
|
95
|
+
|
|
96
|
+
#: views/accounts/register/imap.hbs:51
|
|
97
|
+
msgid "Continue"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
#: views/accounts/register/imap-server.hbs:19
|
|
101
|
+
msgid "IMAP"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
|
+
#: views/accounts/register/imap-server.hbs:22
|
|
105
|
+
#: views/accounts/register/imap-server.hbs:114
|
|
106
|
+
msgid "Username"
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
93
109
|
#: views/accounts/register/imap-server.hbs:45
|
|
94
110
|
#: views/accounts/register/imap-server.hbs:136
|
|
95
111
|
msgid "Important"
|
|
@@ -152,152 +168,128 @@ msgid ""
|
|
|
152
168
|
msgstr ""
|
|
153
169
|
|
|
154
170
|
#: views/accounts/register/imap-server.hbs:209
|
|
155
|
-
msgid "
|
|
171
|
+
msgid "Verify connection"
|
|
156
172
|
msgstr ""
|
|
157
173
|
|
|
158
174
|
#: views/accounts/register/imap-server.hbs:218
|
|
159
|
-
|
|
160
|
-
msgid "Continue"
|
|
175
|
+
msgid "Save and continue"
|
|
161
176
|
msgstr ""
|
|
162
177
|
|
|
163
178
|
#: views/accounts/register/imap-server.hbs:226
|
|
164
|
-
msgid "
|
|
179
|
+
msgid "Skip verification"
|
|
165
180
|
msgstr ""
|
|
166
181
|
|
|
167
182
|
#: views/accounts/register/imap-server.hbs:241
|
|
168
|
-
msgid "
|
|
183
|
+
msgid "Connection test failed"
|
|
169
184
|
msgstr ""
|
|
170
185
|
|
|
171
186
|
#: views/accounts/register/imap-server.hbs:247
|
|
172
|
-
msgid "
|
|
187
|
+
msgid "We couldn't connect with these settings. Check the errors below."
|
|
173
188
|
msgstr ""
|
|
174
189
|
|
|
175
190
|
#: views/accounts/register/imap-server.hbs:318
|
|
176
|
-
msgid "
|
|
191
|
+
msgid "Error"
|
|
177
192
|
msgstr ""
|
|
178
193
|
|
|
179
194
|
#: views/accounts/register/imap-server.hbs:320
|
|
180
|
-
msgid "
|
|
195
|
+
msgid "Invalid settings"
|
|
181
196
|
msgstr ""
|
|
182
197
|
|
|
183
198
|
#: views/accounts/register/imap-server.hbs:326
|
|
184
|
-
msgid "
|
|
199
|
+
msgid "Couldn't connect to IMAP server"
|
|
185
200
|
msgstr ""
|
|
186
201
|
|
|
187
202
|
#: views/accounts/register/imap-server.hbs:328
|
|
188
|
-
|
|
203
|
+
#: views/accounts/register/imap-server.hbs:337
|
|
204
|
+
msgid "Server response:"
|
|
189
205
|
msgstr ""
|
|
190
206
|
|
|
191
207
|
#: views/accounts/register/imap-server.hbs:335
|
|
192
|
-
msgid "
|
|
193
|
-
msgstr ""
|
|
194
|
-
|
|
195
|
-
#: views/accounts/register/imap-server.hbs:337
|
|
196
|
-
msgid "SMTP Server responded with the following message:"
|
|
208
|
+
msgid "Couldn't connect to SMTP server"
|
|
197
209
|
msgstr ""
|
|
198
210
|
|
|
199
211
|
#: views/accounts/register/imap-server.hbs:395
|
|
200
|
-
msgid "
|
|
201
|
-
msgstr ""
|
|
202
|
-
|
|
203
|
-
#: views/accounts/register/imap.hbs:11
|
|
204
|
-
msgid "Your name"
|
|
212
|
+
msgid "Request failed."
|
|
205
213
|
msgstr ""
|
|
206
214
|
|
|
207
|
-
#:
|
|
208
|
-
msgid "Enter your full name"
|
|
209
|
-
msgstr ""
|
|
210
|
-
|
|
211
|
-
#: views/accounts/register/imap.hbs:37
|
|
212
|
-
msgid "Enter your account password"
|
|
213
|
-
msgstr ""
|
|
214
|
-
|
|
215
|
-
#: lib/routes-ui.js:529
|
|
215
|
+
#: lib/routes-ui.js:532
|
|
216
216
|
msgid "Delegated"
|
|
217
217
|
msgstr ""
|
|
218
218
|
|
|
219
|
-
#: lib/routes-ui.js:
|
|
219
|
+
#: lib/routes-ui.js:533
|
|
220
220
|
msgid "Using credentials from \"%s\""
|
|
221
221
|
msgstr ""
|
|
222
222
|
|
|
223
|
-
#: lib/routes-ui.js:
|
|
223
|
+
#: lib/routes-ui.js:583
|
|
224
224
|
msgid ""
|
|
225
225
|
"Connection timed out. This usually occurs if you are behind a firewall or "
|
|
226
226
|
"connecting to the wrong port."
|
|
227
227
|
msgstr ""
|
|
228
228
|
|
|
229
|
-
#: lib/routes-ui.js:
|
|
229
|
+
#: lib/routes-ui.js:586
|
|
230
230
|
msgid "The server unexpectedly closed the connection."
|
|
231
231
|
msgstr ""
|
|
232
232
|
|
|
233
|
-
#: lib/routes-ui.js:
|
|
233
|
+
#: lib/routes-ui.js:589
|
|
234
234
|
msgid ""
|
|
235
235
|
"The server unexpectedly closed the connection. This usually happens when "
|
|
236
236
|
"attempting to connect to a TLS port without TLS enabled."
|
|
237
237
|
msgstr ""
|
|
238
238
|
|
|
239
|
-
#: lib/routes-ui.js:
|
|
239
|
+
#: lib/routes-ui.js:594
|
|
240
240
|
msgid ""
|
|
241
241
|
"The server refused the connection. This typically occurs if the server is "
|
|
242
242
|
"not running, is overloaded, or you are connecting to the wrong host or port."
|
|
243
243
|
msgstr ""
|
|
244
244
|
|
|
245
|
-
#: lib/routes-ui.js:
|
|
245
|
+
#: lib/routes-ui.js:712
|
|
246
246
|
msgid "Invalid API key for OpenAI"
|
|
247
247
|
msgstr ""
|
|
248
248
|
|
|
249
|
-
#: lib/routes-ui.js:
|
|
249
|
+
#: lib/routes-ui.js:5031 lib/routes-ui.js:6986 lib/routes-ui.js:6997
|
|
250
250
|
msgid "Server hostname was not found"
|
|
251
251
|
msgstr ""
|
|
252
252
|
|
|
253
|
-
#: lib/routes-ui.js:
|
|
253
|
+
#: lib/routes-ui.js:5034 lib/routes-ui.js:6989 lib/routes-ui.js:7000
|
|
254
254
|
msgid "Invalid username or password"
|
|
255
255
|
msgstr ""
|
|
256
256
|
|
|
257
|
-
#: lib/routes-ui.js:
|
|
257
|
+
#: lib/routes-ui.js:5038 lib/routes-ui.js:7004
|
|
258
258
|
msgid "TLS protocol error"
|
|
259
259
|
msgstr ""
|
|
260
260
|
|
|
261
|
-
#: lib/routes-ui.js:
|
|
262
|
-
#: lib/routes-ui.js:
|
|
263
|
-
#: workers/api.js:
|
|
261
|
+
#: lib/routes-ui.js:6733 lib/routes-ui.js:6768 lib/routes-ui.js:6883
|
|
262
|
+
#: lib/routes-ui.js:6930 lib/routes-ui.js:7159 lib/routes-ui.js:7195
|
|
263
|
+
#: workers/api.js:2407
|
|
264
264
|
msgid "Email Account Setup"
|
|
265
265
|
msgstr ""
|
|
266
266
|
|
|
267
|
-
#: lib/routes-ui.js:
|
|
268
|
-
msgid "
|
|
267
|
+
#: lib/routes-ui.js:6793 lib/routes-ui.js:6826 lib/routes-ui.js:9745
|
|
268
|
+
msgid "Invalid request. Check your input and try again."
|
|
269
269
|
msgstr ""
|
|
270
270
|
|
|
271
|
-
#: lib/routes-ui.js:
|
|
272
|
-
msgid "Failed to process account"
|
|
273
|
-
msgstr ""
|
|
274
|
-
|
|
275
|
-
#: lib/routes-ui.js:9680 lib/tools.js:795
|
|
271
|
+
#: lib/routes-ui.js:9708 lib/tools.js:794
|
|
276
272
|
msgid "Invalid input"
|
|
277
273
|
msgstr ""
|
|
278
274
|
|
|
279
|
-
#: lib/routes-ui.js:
|
|
280
|
-
#: lib/routes-ui.js:
|
|
275
|
+
#: lib/routes-ui.js:9718 lib/routes-ui.js:9836 lib/routes-ui.js:9853
|
|
276
|
+
#: lib/routes-ui.js:9889
|
|
281
277
|
msgid "Subscription Management"
|
|
282
278
|
msgstr ""
|
|
283
279
|
|
|
284
|
-
#:
|
|
285
|
-
msgid "Failed to process request"
|
|
286
|
-
msgstr ""
|
|
287
|
-
|
|
288
|
-
#: workers/api.js:8996 workers/api.js:9112
|
|
280
|
+
#: workers/api.js:9113 workers/api.js:9229
|
|
289
281
|
msgid "Requested page not found"
|
|
290
282
|
msgstr ""
|
|
291
283
|
|
|
292
|
-
#: workers/api.js:
|
|
284
|
+
#: workers/api.js:9114
|
|
293
285
|
msgid "Something went wrong"
|
|
294
286
|
msgstr ""
|
|
295
287
|
|
|
296
|
-
#: lib/tools.js:
|
|
288
|
+
#: lib/tools.js:1493
|
|
297
289
|
msgid "Signature validation failed"
|
|
298
290
|
msgstr ""
|
|
299
291
|
|
|
300
|
-
#: lib/tools.js:
|
|
292
|
+
#: lib/tools.js:1502 lib/tools.js:1507
|
|
301
293
|
msgid "Invalid or expired account setup URL"
|
|
302
294
|
msgstr ""
|
|
303
295
|
|
package/translations/et.mo
CHANGED
|
Binary file
|
package/translations/et.po
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
msgid ""
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: \n"
|
|
4
|
-
"POT-Creation-Date: 2025-
|
|
4
|
+
"POT-Creation-Date: 2025-12-29 11:35+0000\n"
|
|
5
5
|
"PO-Revision-Date: \n"
|
|
6
6
|
"Last-Translator: \n"
|
|
7
7
|
"Language-Team: \n"
|
|
@@ -10,7 +10,7 @@ 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.
|
|
13
|
+
"X-Generator: Poedit 3.8\n"
|
|
14
14
|
|
|
15
15
|
#: views/config/license.hbs:45
|
|
16
16
|
msgid "%d day"
|
|
@@ -18,6 +18,10 @@ msgid_plural "%d days"
|
|
|
18
18
|
msgstr[0] "%d päev"
|
|
19
19
|
msgstr[1] "%d päeva"
|
|
20
20
|
|
|
21
|
+
#: views/redirect.hbs:1
|
|
22
|
+
msgid "Click <a href=\"%s\">here</a> to continue…"
|
|
23
|
+
msgstr "Kliki <a href=\"%s\">siin</a>, et jätkata…"
|
|
24
|
+
|
|
21
25
|
#: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
|
|
22
26
|
msgid "Unsubscribe"
|
|
23
27
|
msgstr "Loobu tellimusest"
|
|
@@ -65,10 +69,6 @@ msgstr "E-posti aadress"
|
|
|
65
69
|
msgid "Enter your email address"
|
|
66
70
|
msgstr "Sisestage oma e-posti aadress"
|
|
67
71
|
|
|
68
|
-
#: views/redirect.hbs:1
|
|
69
|
-
msgid "Click <a href=\"%s\">here</a> to continue…"
|
|
70
|
-
msgstr "Kliki <a href=\"%s\">siin</a>, et jätkata…"
|
|
71
|
-
|
|
72
72
|
#: views/accounts/register/index.hbs:2
|
|
73
73
|
msgid "Choose your email account provider"
|
|
74
74
|
msgstr "Valige oma e-posti konto pakkuja"
|
|
@@ -77,6 +77,28 @@ msgstr "Valige oma e-posti konto pakkuja"
|
|
|
77
77
|
msgid "Standard IMAP"
|
|
78
78
|
msgstr "Standardne IMAP"
|
|
79
79
|
|
|
80
|
+
#: views/accounts/register/imap.hbs:11
|
|
81
|
+
msgid "Your name"
|
|
82
|
+
msgstr "Sinu nimi"
|
|
83
|
+
|
|
84
|
+
#: views/accounts/register/imap.hbs:17
|
|
85
|
+
msgid "Enter your full name"
|
|
86
|
+
msgstr "Sisestage oma täisnimi"
|
|
87
|
+
|
|
88
|
+
#: views/accounts/register/imap.hbs:31
|
|
89
|
+
#: views/accounts/register/imap-server.hbs:36
|
|
90
|
+
#: views/accounts/register/imap-server.hbs:128
|
|
91
|
+
msgid "Password"
|
|
92
|
+
msgstr "Parool"
|
|
93
|
+
|
|
94
|
+
#: views/accounts/register/imap.hbs:37
|
|
95
|
+
msgid "Enter your account password"
|
|
96
|
+
msgstr "Sisestage oma konto parool"
|
|
97
|
+
|
|
98
|
+
#: views/accounts/register/imap.hbs:51
|
|
99
|
+
msgid "Continue"
|
|
100
|
+
msgstr "Jätka"
|
|
101
|
+
|
|
80
102
|
#: views/accounts/register/imap-server.hbs:19
|
|
81
103
|
msgid "IMAP"
|
|
82
104
|
msgstr "IMAP"
|
|
@@ -86,12 +108,6 @@ msgstr "IMAP"
|
|
|
86
108
|
msgid "Username"
|
|
87
109
|
msgstr "Kasutajanimi"
|
|
88
110
|
|
|
89
|
-
#: views/accounts/register/imap-server.hbs:36
|
|
90
|
-
#: views/accounts/register/imap-server.hbs:128
|
|
91
|
-
#: views/accounts/register/imap.hbs:31
|
|
92
|
-
msgid "Password"
|
|
93
|
-
msgstr "Parool"
|
|
94
|
-
|
|
95
111
|
#: views/accounts/register/imap-server.hbs:45
|
|
96
112
|
#: views/accounts/register/imap-server.hbs:136
|
|
97
113
|
msgid "Important"
|
|
@@ -160,75 +176,59 @@ msgstr ""
|
|
|
160
176
|
"krüpteerimist."
|
|
161
177
|
|
|
162
178
|
#: views/accounts/register/imap-server.hbs:209
|
|
163
|
-
msgid "
|
|
164
|
-
msgstr "Kontrolli
|
|
179
|
+
msgid "Verify connection"
|
|
180
|
+
msgstr "Kontrolli ühendust"
|
|
165
181
|
|
|
166
182
|
#: views/accounts/register/imap-server.hbs:218
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
msgstr "Jätka"
|
|
183
|
+
msgid "Save and continue"
|
|
184
|
+
msgstr "Salvesta ja jätka"
|
|
170
185
|
|
|
171
186
|
#: views/accounts/register/imap-server.hbs:226
|
|
172
|
-
msgid "
|
|
173
|
-
msgstr "
|
|
187
|
+
msgid "Skip verification"
|
|
188
|
+
msgstr "Jäta kontroll vahele"
|
|
174
189
|
|
|
175
190
|
#: views/accounts/register/imap-server.hbs:241
|
|
176
|
-
msgid "
|
|
177
|
-
msgstr "
|
|
191
|
+
msgid "Connection test failed"
|
|
192
|
+
msgstr "Ühenduse kontroll ebaõnnestus"
|
|
178
193
|
|
|
179
194
|
#: views/accounts/register/imap-server.hbs:247
|
|
180
|
-
msgid "
|
|
181
|
-
msgstr "
|
|
195
|
+
msgid "We couldn't connect with these settings. Check the errors below."
|
|
196
|
+
msgstr "Nende seadetega ei õnnestunud ühendust luua. Kontrolli vigu allpool."
|
|
182
197
|
|
|
183
198
|
#: views/accounts/register/imap-server.hbs:318
|
|
184
|
-
msgid "
|
|
185
|
-
msgstr "
|
|
199
|
+
msgid "Error"
|
|
200
|
+
msgstr "Viga"
|
|
186
201
|
|
|
187
202
|
#: views/accounts/register/imap-server.hbs:320
|
|
188
|
-
msgid "
|
|
189
|
-
msgstr "
|
|
203
|
+
msgid "Invalid settings"
|
|
204
|
+
msgstr "Vigased seaded"
|
|
190
205
|
|
|
191
206
|
#: views/accounts/register/imap-server.hbs:326
|
|
192
|
-
msgid "
|
|
193
|
-
msgstr "IMAP
|
|
207
|
+
msgid "Couldn't connect to IMAP server"
|
|
208
|
+
msgstr "IMAP serveriga ei õnnestunud ühendust luua"
|
|
194
209
|
|
|
195
210
|
#: views/accounts/register/imap-server.hbs:328
|
|
196
|
-
|
|
197
|
-
|
|
211
|
+
#: views/accounts/register/imap-server.hbs:337
|
|
212
|
+
msgid "Server response:"
|
|
213
|
+
msgstr "Serveri vastus:"
|
|
198
214
|
|
|
199
215
|
#: views/accounts/register/imap-server.hbs:335
|
|
200
|
-
msgid "
|
|
201
|
-
msgstr "SMTP
|
|
202
|
-
|
|
203
|
-
#: views/accounts/register/imap-server.hbs:337
|
|
204
|
-
msgid "SMTP Server responded with the following message:"
|
|
205
|
-
msgstr "SMTP server vastas järgmise teatega:"
|
|
216
|
+
msgid "Couldn't connect to SMTP server"
|
|
217
|
+
msgstr "SMTP serveriga ei õnnestunud ühendust luua"
|
|
206
218
|
|
|
207
219
|
#: views/accounts/register/imap-server.hbs:395
|
|
208
|
-
msgid "
|
|
209
|
-
msgstr "
|
|
210
|
-
|
|
211
|
-
#: views/accounts/register/imap.hbs:11
|
|
212
|
-
msgid "Your name"
|
|
213
|
-
msgstr "Sinu nimi"
|
|
220
|
+
msgid "Request failed."
|
|
221
|
+
msgstr "Päring ebaõnnestus."
|
|
214
222
|
|
|
215
|
-
#:
|
|
216
|
-
msgid "Enter your full name"
|
|
217
|
-
msgstr "Sisestage oma täisnimi"
|
|
218
|
-
|
|
219
|
-
#: views/accounts/register/imap.hbs:37
|
|
220
|
-
msgid "Enter your account password"
|
|
221
|
-
msgstr "Sisestage oma konto parool"
|
|
222
|
-
|
|
223
|
-
#: lib/routes-ui.js:529
|
|
223
|
+
#: lib/routes-ui.js:532
|
|
224
224
|
msgid "Delegated"
|
|
225
225
|
msgstr "Delegeeritud"
|
|
226
226
|
|
|
227
|
-
#: lib/routes-ui.js:
|
|
227
|
+
#: lib/routes-ui.js:533
|
|
228
228
|
msgid "Using credentials from \"%s\""
|
|
229
229
|
msgstr "Kasutades volitusi \"%s\""
|
|
230
230
|
|
|
231
|
-
#: lib/routes-ui.js:
|
|
231
|
+
#: lib/routes-ui.js:583
|
|
232
232
|
msgid ""
|
|
233
233
|
"Connection timed out. This usually occurs if you are behind a firewall or "
|
|
234
234
|
"connecting to the wrong port."
|
|
@@ -236,11 +236,11 @@ msgstr ""
|
|
|
236
236
|
"Ühendus on aegunud. See juhtub tavaliselt siis, kui olete tulemüüri taga või "
|
|
237
237
|
"ühendute valesse porti."
|
|
238
238
|
|
|
239
|
-
#: lib/routes-ui.js:
|
|
239
|
+
#: lib/routes-ui.js:586
|
|
240
240
|
msgid "The server unexpectedly closed the connection."
|
|
241
241
|
msgstr "Server sulges ootamatult ühenduse."
|
|
242
242
|
|
|
243
|
-
#: lib/routes-ui.js:
|
|
243
|
+
#: lib/routes-ui.js:589
|
|
244
244
|
msgid ""
|
|
245
245
|
"The server unexpectedly closed the connection. This usually happens when "
|
|
246
246
|
"attempting to connect to a TLS port without TLS enabled."
|
|
@@ -248,7 +248,7 @@ msgstr ""
|
|
|
248
248
|
"Server sulges ootamatult ühenduse. See juhtub tavaliselt siis, kui "
|
|
249
249
|
"üritatakse luua ühendust TLS-porti, ilma et TLS oleks lubatud."
|
|
250
250
|
|
|
251
|
-
#: lib/routes-ui.js:
|
|
251
|
+
#: lib/routes-ui.js:594
|
|
252
252
|
msgid ""
|
|
253
253
|
"The server refused the connection. This typically occurs if the server is "
|
|
254
254
|
"not running, is overloaded, or you are connecting to the wrong host or port."
|
|
@@ -256,62 +256,54 @@ msgstr ""
|
|
|
256
256
|
"Server keeldus ühendusest. See juhtub tavaliselt siis, kui server ei tööta, "
|
|
257
257
|
"on ülekoormatud või ühendute vale hostiga või porti."
|
|
258
258
|
|
|
259
|
-
#: lib/routes-ui.js:
|
|
259
|
+
#: lib/routes-ui.js:712
|
|
260
260
|
msgid "Invalid API key for OpenAI"
|
|
261
261
|
msgstr "OpenAI jaoks vale API võti"
|
|
262
262
|
|
|
263
|
-
#: lib/routes-ui.js:
|
|
263
|
+
#: lib/routes-ui.js:5031 lib/routes-ui.js:6986 lib/routes-ui.js:6997
|
|
264
264
|
msgid "Server hostname was not found"
|
|
265
265
|
msgstr "Serverit ei leitud"
|
|
266
266
|
|
|
267
|
-
#: lib/routes-ui.js:
|
|
267
|
+
#: lib/routes-ui.js:5034 lib/routes-ui.js:6989 lib/routes-ui.js:7000
|
|
268
268
|
msgid "Invalid username or password"
|
|
269
269
|
msgstr "Vigane kasutajanimi või parool"
|
|
270
270
|
|
|
271
|
-
#: lib/routes-ui.js:
|
|
271
|
+
#: lib/routes-ui.js:5038 lib/routes-ui.js:7004
|
|
272
272
|
msgid "TLS protocol error"
|
|
273
273
|
msgstr "TLS protokolli viga"
|
|
274
274
|
|
|
275
|
-
#: lib/routes-ui.js:
|
|
276
|
-
#: lib/routes-ui.js:
|
|
277
|
-
#: workers/api.js:
|
|
275
|
+
#: lib/routes-ui.js:6733 lib/routes-ui.js:6768 lib/routes-ui.js:6883
|
|
276
|
+
#: lib/routes-ui.js:6930 lib/routes-ui.js:7159 lib/routes-ui.js:7195
|
|
277
|
+
#: workers/api.js:2407
|
|
278
278
|
msgid "Email Account Setup"
|
|
279
279
|
msgstr "E-posti konto seadistamine"
|
|
280
280
|
|
|
281
|
-
#: lib/routes-ui.js:
|
|
282
|
-
msgid "
|
|
283
|
-
msgstr "Päringu argumentide kontroll ebaõnnestus"
|
|
284
|
-
|
|
285
|
-
#: lib/routes-ui.js:6895 lib/routes-ui.js:7160
|
|
286
|
-
msgid "Failed to process account"
|
|
287
|
-
msgstr "Konto töötlemine ebaõnnestus"
|
|
281
|
+
#: lib/routes-ui.js:6793 lib/routes-ui.js:6826 lib/routes-ui.js:9745
|
|
282
|
+
msgid "Invalid request. Check your input and try again."
|
|
283
|
+
msgstr "Päringu argumentide kontroll ebaõnnestus."
|
|
288
284
|
|
|
289
|
-
#: lib/routes-ui.js:
|
|
285
|
+
#: lib/routes-ui.js:9708 lib/tools.js:794
|
|
290
286
|
msgid "Invalid input"
|
|
291
287
|
msgstr "Vale sisestus"
|
|
292
288
|
|
|
293
|
-
#: lib/routes-ui.js:
|
|
294
|
-
#: lib/routes-ui.js:
|
|
289
|
+
#: lib/routes-ui.js:9718 lib/routes-ui.js:9836 lib/routes-ui.js:9853
|
|
290
|
+
#: lib/routes-ui.js:9889
|
|
295
291
|
msgid "Subscription Management"
|
|
296
292
|
msgstr "Tellimuse haldamine"
|
|
297
293
|
|
|
298
|
-
#:
|
|
299
|
-
msgid "Failed to process request"
|
|
300
|
-
msgstr "Päringu töötlemine ebaõnnestus"
|
|
301
|
-
|
|
302
|
-
#: workers/api.js:8996 workers/api.js:9112
|
|
294
|
+
#: workers/api.js:9113 workers/api.js:9229
|
|
303
295
|
msgid "Requested page not found"
|
|
304
296
|
msgstr "Soovitud lehekülge ei leitud"
|
|
305
297
|
|
|
306
|
-
#: workers/api.js:
|
|
298
|
+
#: workers/api.js:9114
|
|
307
299
|
msgid "Something went wrong"
|
|
308
300
|
msgstr "Miski läks valesti"
|
|
309
301
|
|
|
310
|
-
#: lib/tools.js:
|
|
302
|
+
#: lib/tools.js:1493
|
|
311
303
|
msgid "Signature validation failed"
|
|
312
304
|
msgstr "Päringu allkirja kontroll ebaõnnestus"
|
|
313
305
|
|
|
314
|
-
#: lib/tools.js:
|
|
306
|
+
#: lib/tools.js:1502 lib/tools.js:1507
|
|
315
307
|
msgid "Invalid or expired account setup URL"
|
|
316
308
|
msgstr "Kehtetu või aegunud konto seadistamise URL"
|
|
317
309
|
|
|
@@ -327,5 +319,15 @@ msgstr ""
|
|
|
327
319
|
"Jätkamiseks kasutage oma konto turvaliseks ühendamiseks nuppu \"Sign in with "
|
|
328
320
|
"Microsoft\"."
|
|
329
321
|
|
|
322
|
+
#, fuzzy
|
|
323
|
+
#~| msgid "Failed to process account"
|
|
324
|
+
#~ msgid "Couldn't set up account. Try again."
|
|
325
|
+
#~ msgstr "Konto töötlemine ebaõnnestus"
|
|
326
|
+
|
|
327
|
+
#, fuzzy
|
|
328
|
+
#~| msgid "Failed to process request"
|
|
329
|
+
#~ msgid "Couldn't process request. Try again."
|
|
330
|
+
#~ msgstr "Päringu töötlemine ebaõnnestus"
|
|
331
|
+
|
|
330
332
|
#~ msgid "Unknown OAuth provider"
|
|
331
333
|
#~ msgstr "Tundmatu OAuth teenus"
|
package/translations/fr.mo
CHANGED
|
Binary file
|