emailengine-app 2.61.1 → 2.61.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/data/google-crawlers.json +1 -1
- package/lib/account/account-state.js +248 -0
- package/lib/account.js +45 -193
- package/lib/api-routes/account-routes.js +1023 -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 +10 -10
- package/sbom.json +1 -1
- package/static/js/app.js +5 -5
- package/static/licenses.html +79 -19
- package/translations/de.mo +0 -0
- package/translations/de.po +97 -86
- package/translations/en.mo +0 -0
- package/translations/en.po +80 -75
- package/translations/et.mo +0 -0
- package/translations/et.po +96 -86
- package/translations/fr.mo +0 -0
- package/translations/fr.po +97 -86
- package/translations/ja.mo +0 -0
- package/translations/ja.po +96 -86
- package/translations/messages.pot +105 -91
- package/translations/nl.mo +0 -0
- package/translations/nl.po +98 -86
- package/translations/pl.mo +0 -0
- package/translations/pl.po +96 -86
- 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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
msgid ""
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Content-Type: text/plain; charset=ascii\n"
|
|
4
|
-
"POT-Creation-Date:
|
|
4
|
+
"POT-Creation-Date: 2026-01-14 09:54+0000\n"
|
|
5
5
|
|
|
6
6
|
#: views/config/license.hbs:45
|
|
7
7
|
msgid "%d day"
|
|
@@ -9,6 +9,10 @@ msgid_plural "%d days"
|
|
|
9
9
|
msgstr[0] ""
|
|
10
10
|
msgstr[1] ""
|
|
11
11
|
|
|
12
|
+
#: views/redirect.hbs:1
|
|
13
|
+
msgid "Click <a href=\"%s\">here</a> to continue…"
|
|
14
|
+
msgstr ""
|
|
15
|
+
|
|
12
16
|
#: views/unsubscribe.hbs:3
|
|
13
17
|
#: views/unsubscribe.hbs:62
|
|
14
18
|
#: views/unsubscribe.hbs:85
|
|
@@ -58,10 +62,6 @@ msgstr ""
|
|
|
58
62
|
msgid "Enter your email address"
|
|
59
63
|
msgstr ""
|
|
60
64
|
|
|
61
|
-
#: views/redirect.hbs:1
|
|
62
|
-
msgid "Click <a href=\"%s\">here</a> to continue…"
|
|
63
|
-
msgstr ""
|
|
64
|
-
|
|
65
65
|
#: views/accounts/register/index.hbs:2
|
|
66
66
|
msgid "Choose your email account provider"
|
|
67
67
|
msgstr ""
|
|
@@ -70,21 +70,37 @@ msgstr ""
|
|
|
70
70
|
msgid "Standard IMAP"
|
|
71
71
|
msgstr ""
|
|
72
72
|
|
|
73
|
-
#: views/accounts/register/imap
|
|
74
|
-
msgid "
|
|
73
|
+
#: views/accounts/register/imap.hbs:11
|
|
74
|
+
msgid "Your name"
|
|
75
75
|
msgstr ""
|
|
76
76
|
|
|
77
|
-
#: views/accounts/register/imap
|
|
78
|
-
|
|
79
|
-
msgid "Username"
|
|
77
|
+
#: views/accounts/register/imap.hbs:17
|
|
78
|
+
msgid "Enter your full name"
|
|
80
79
|
msgstr ""
|
|
81
80
|
|
|
81
|
+
#: views/accounts/register/imap.hbs:31
|
|
82
82
|
#: views/accounts/register/imap-server.hbs:36
|
|
83
83
|
#: views/accounts/register/imap-server.hbs:128
|
|
84
|
-
#: views/accounts/register/imap.hbs:31
|
|
85
84
|
msgid "Password"
|
|
86
85
|
msgstr ""
|
|
87
86
|
|
|
87
|
+
#: views/accounts/register/imap.hbs:37
|
|
88
|
+
msgid "Enter your account password"
|
|
89
|
+
msgstr ""
|
|
90
|
+
|
|
91
|
+
#: views/accounts/register/imap.hbs:51
|
|
92
|
+
msgid "Continue"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
#: views/accounts/register/imap-server.hbs:19
|
|
96
|
+
msgid "IMAP"
|
|
97
|
+
msgstr ""
|
|
98
|
+
|
|
99
|
+
#: views/accounts/register/imap-server.hbs:22
|
|
100
|
+
#: views/accounts/register/imap-server.hbs:114
|
|
101
|
+
msgid "Username"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
88
104
|
#: views/accounts/register/imap-server.hbs:45
|
|
89
105
|
#: views/accounts/register/imap-server.hbs:136
|
|
90
106
|
msgid "Important"
|
|
@@ -147,170 +163,163 @@ msgid ""
|
|
|
147
163
|
msgstr ""
|
|
148
164
|
|
|
149
165
|
#: views/accounts/register/imap-server.hbs:209
|
|
150
|
-
msgid "
|
|
166
|
+
msgid "Verify connection"
|
|
151
167
|
msgstr ""
|
|
152
168
|
|
|
153
169
|
#: views/accounts/register/imap-server.hbs:218
|
|
154
|
-
|
|
155
|
-
msgid "Continue"
|
|
170
|
+
msgid "Save and continue"
|
|
156
171
|
msgstr ""
|
|
157
172
|
|
|
158
173
|
#: views/accounts/register/imap-server.hbs:226
|
|
159
|
-
msgid "
|
|
174
|
+
msgid "Skip verification"
|
|
160
175
|
msgstr ""
|
|
161
176
|
|
|
162
177
|
#: views/accounts/register/imap-server.hbs:241
|
|
163
|
-
msgid "
|
|
178
|
+
msgid "Connection test failed"
|
|
164
179
|
msgstr ""
|
|
165
180
|
|
|
166
181
|
#: views/accounts/register/imap-server.hbs:247
|
|
167
|
-
msgid "
|
|
182
|
+
msgid "We couldn't connect with these settings. Check the errors below."
|
|
168
183
|
msgstr ""
|
|
169
184
|
|
|
170
185
|
#: views/accounts/register/imap-server.hbs:318
|
|
171
|
-
msgid "
|
|
186
|
+
msgid "Error"
|
|
172
187
|
msgstr ""
|
|
173
188
|
|
|
174
189
|
#: views/accounts/register/imap-server.hbs:320
|
|
175
|
-
msgid "
|
|
190
|
+
msgid "Invalid settings"
|
|
176
191
|
msgstr ""
|
|
177
192
|
|
|
178
193
|
#: views/accounts/register/imap-server.hbs:326
|
|
179
|
-
msgid "
|
|
194
|
+
msgid "Couldn't connect to IMAP server"
|
|
180
195
|
msgstr ""
|
|
181
196
|
|
|
182
197
|
#: views/accounts/register/imap-server.hbs:328
|
|
183
|
-
|
|
198
|
+
#: views/accounts/register/imap-server.hbs:337
|
|
199
|
+
msgid "Server response:"
|
|
184
200
|
msgstr ""
|
|
185
201
|
|
|
186
202
|
#: views/accounts/register/imap-server.hbs:335
|
|
187
|
-
msgid "
|
|
188
|
-
msgstr ""
|
|
189
|
-
|
|
190
|
-
#: views/accounts/register/imap-server.hbs:337
|
|
191
|
-
msgid "SMTP Server responded with the following message:"
|
|
203
|
+
msgid "Couldn't connect to SMTP server"
|
|
192
204
|
msgstr ""
|
|
193
205
|
|
|
194
206
|
#: views/accounts/register/imap-server.hbs:395
|
|
195
|
-
msgid "
|
|
196
|
-
msgstr ""
|
|
197
|
-
|
|
198
|
-
#: views/accounts/register/imap.hbs:11
|
|
199
|
-
msgid "Your name"
|
|
200
|
-
msgstr ""
|
|
201
|
-
|
|
202
|
-
#: views/accounts/register/imap.hbs:17
|
|
203
|
-
msgid "Enter your full name"
|
|
204
|
-
msgstr ""
|
|
205
|
-
|
|
206
|
-
#: views/accounts/register/imap.hbs:37
|
|
207
|
-
msgid "Enter your account password"
|
|
207
|
+
msgid "Request failed."
|
|
208
208
|
msgstr ""
|
|
209
209
|
|
|
210
|
-
#: lib/routes-ui.js:
|
|
210
|
+
#: lib/routes-ui.js:519
|
|
211
|
+
#: lib/ui-routes/account-routes.js:60
|
|
211
212
|
msgid "Delegated"
|
|
212
213
|
msgstr ""
|
|
213
214
|
|
|
214
|
-
#: lib/routes-ui.js:
|
|
215
|
+
#: lib/routes-ui.js:520
|
|
216
|
+
#: lib/ui-routes/account-routes.js:61
|
|
215
217
|
msgid "Using credentials from \"%s\""
|
|
216
218
|
msgstr ""
|
|
217
219
|
|
|
218
|
-
#: lib/routes-ui.js:
|
|
220
|
+
#: lib/routes-ui.js:570
|
|
221
|
+
#: lib/ui-routes/account-routes.js:111
|
|
219
222
|
msgid ""
|
|
220
223
|
"Connection timed out. This usually occurs if you are behind a firewall or "
|
|
221
224
|
"connecting to the wrong port."
|
|
222
225
|
msgstr ""
|
|
223
226
|
|
|
224
|
-
#: lib/routes-ui.js:
|
|
227
|
+
#: lib/routes-ui.js:573
|
|
228
|
+
#: lib/ui-routes/account-routes.js:114
|
|
225
229
|
msgid "The server unexpectedly closed the connection."
|
|
226
230
|
msgstr ""
|
|
227
231
|
|
|
228
|
-
#: lib/routes-ui.js:
|
|
232
|
+
#: lib/routes-ui.js:576
|
|
233
|
+
#: lib/ui-routes/account-routes.js:117
|
|
229
234
|
msgid ""
|
|
230
235
|
"The server unexpectedly closed the connection. This usually happens when "
|
|
231
236
|
"attempting to connect to a TLS port without TLS enabled."
|
|
232
237
|
msgstr ""
|
|
233
238
|
|
|
234
|
-
#: lib/routes-ui.js:
|
|
239
|
+
#: lib/routes-ui.js:581
|
|
240
|
+
#: lib/ui-routes/account-routes.js:122
|
|
235
241
|
msgid ""
|
|
236
242
|
"The server refused the connection. This typically occurs if the server is "
|
|
237
243
|
"not running, is overloaded, or you are connecting to the wrong host or port."
|
|
238
244
|
msgstr ""
|
|
239
245
|
|
|
240
|
-
#: lib/routes-ui.js:
|
|
246
|
+
#: lib/routes-ui.js:699
|
|
241
247
|
msgid "Invalid API key for OpenAI"
|
|
242
248
|
msgstr ""
|
|
243
249
|
|
|
244
|
-
#: lib/routes-ui.js:
|
|
245
|
-
#: lib/routes-ui.js:
|
|
246
|
-
#: lib/routes-ui.js:
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
#:
|
|
251
|
-
#: lib/routes-
|
|
252
|
-
#: lib/routes-
|
|
253
|
-
|
|
250
|
+
#: lib/routes-ui.js:4443
|
|
251
|
+
#: lib/routes-ui.js:4478
|
|
252
|
+
#: lib/routes-ui.js:4593
|
|
253
|
+
#: lib/routes-ui.js:4640
|
|
254
|
+
#: lib/routes-ui.js:4869
|
|
255
|
+
#: lib/routes-ui.js:4905
|
|
256
|
+
#: workers/api.js:2398
|
|
257
|
+
#: lib/ui-routes/account-routes.js:535
|
|
258
|
+
#: lib/ui-routes/account-routes.js:571
|
|
259
|
+
#: lib/ui-routes/account-routes.js:688
|
|
260
|
+
#: lib/ui-routes/account-routes.js:735
|
|
261
|
+
#: lib/ui-routes/account-routes.js:966
|
|
262
|
+
#: lib/ui-routes/account-routes.js:1002
|
|
263
|
+
msgid "Email Account Setup"
|
|
254
264
|
msgstr ""
|
|
255
265
|
|
|
256
|
-
#: lib/routes-ui.js:
|
|
257
|
-
#: lib/routes-ui.js:
|
|
258
|
-
|
|
266
|
+
#: lib/routes-ui.js:4503
|
|
267
|
+
#: lib/routes-ui.js:4536
|
|
268
|
+
#: lib/routes-ui.js:7455
|
|
269
|
+
#: lib/ui-routes/account-routes.js:596
|
|
270
|
+
#: lib/ui-routes/account-routes.js:630
|
|
271
|
+
msgid "Invalid request. Check your input and try again."
|
|
259
272
|
msgstr ""
|
|
260
273
|
|
|
261
|
-
#: lib/routes-ui.js:
|
|
262
|
-
#: lib/routes-ui.js:
|
|
263
|
-
#: lib/routes-
|
|
264
|
-
#: lib/routes-
|
|
265
|
-
#: lib/routes-
|
|
266
|
-
|
|
267
|
-
#: workers/api.js:2407
|
|
268
|
-
msgid "Email Account Setup"
|
|
274
|
+
#: lib/routes-ui.js:4696
|
|
275
|
+
#: lib/routes-ui.js:4707
|
|
276
|
+
#: lib/ui-routes/account-routes.js:792
|
|
277
|
+
#: lib/ui-routes/account-routes.js:803
|
|
278
|
+
#: lib/ui-routes/admin-entities-routes.js:2020
|
|
279
|
+
msgid "Server hostname was not found"
|
|
269
280
|
msgstr ""
|
|
270
281
|
|
|
271
|
-
#: lib/routes-ui.js:
|
|
272
|
-
#: lib/routes-ui.js:
|
|
273
|
-
#: lib/routes-
|
|
274
|
-
|
|
282
|
+
#: lib/routes-ui.js:4699
|
|
283
|
+
#: lib/routes-ui.js:4710
|
|
284
|
+
#: lib/ui-routes/account-routes.js:795
|
|
285
|
+
#: lib/ui-routes/account-routes.js:806
|
|
286
|
+
#: lib/ui-routes/admin-entities-routes.js:2023
|
|
287
|
+
msgid "Invalid username or password"
|
|
275
288
|
msgstr ""
|
|
276
289
|
|
|
277
|
-
#: lib/routes-ui.js:
|
|
278
|
-
#: lib/routes-
|
|
279
|
-
|
|
290
|
+
#: lib/routes-ui.js:4714
|
|
291
|
+
#: lib/ui-routes/account-routes.js:810
|
|
292
|
+
#: lib/ui-routes/admin-entities-routes.js:2027
|
|
293
|
+
msgid "TLS protocol error"
|
|
280
294
|
msgstr ""
|
|
281
295
|
|
|
282
|
-
#: lib/routes-ui.js:
|
|
283
|
-
#: lib/tools.js:
|
|
296
|
+
#: lib/routes-ui.js:7418
|
|
297
|
+
#: lib/tools.js:778
|
|
284
298
|
msgid "Invalid input"
|
|
285
299
|
msgstr ""
|
|
286
300
|
|
|
287
|
-
#: lib/routes-ui.js:
|
|
288
|
-
#: lib/routes-ui.js:
|
|
289
|
-
#: lib/routes-ui.js:
|
|
290
|
-
#: lib/routes-ui.js:
|
|
301
|
+
#: lib/routes-ui.js:7428
|
|
302
|
+
#: lib/routes-ui.js:7546
|
|
303
|
+
#: lib/routes-ui.js:7563
|
|
304
|
+
#: lib/routes-ui.js:7599
|
|
291
305
|
msgid "Subscription Management"
|
|
292
306
|
msgstr ""
|
|
293
307
|
|
|
294
|
-
#:
|
|
295
|
-
#:
|
|
296
|
-
msgid "Failed to process request"
|
|
297
|
-
msgstr ""
|
|
298
|
-
|
|
299
|
-
#: workers/api.js:9113
|
|
300
|
-
#: workers/api.js:9229
|
|
308
|
+
#: workers/api.js:6825
|
|
309
|
+
#: workers/api.js:6941
|
|
301
310
|
msgid "Requested page not found"
|
|
302
311
|
msgstr ""
|
|
303
312
|
|
|
304
|
-
#: workers/api.js:
|
|
313
|
+
#: workers/api.js:6826
|
|
305
314
|
msgid "Something went wrong"
|
|
306
315
|
msgstr ""
|
|
307
316
|
|
|
308
|
-
#: lib/tools.js:
|
|
317
|
+
#: lib/tools.js:1477
|
|
309
318
|
msgid "Signature validation failed"
|
|
310
319
|
msgstr ""
|
|
311
320
|
|
|
312
|
-
#: lib/tools.js:
|
|
313
|
-
#: lib/tools.js:
|
|
321
|
+
#: lib/tools.js:1486
|
|
322
|
+
#: lib/tools.js:1491
|
|
314
323
|
msgid "Invalid or expired account setup URL"
|
|
315
324
|
msgstr ""
|
|
316
325
|
|
|
@@ -320,4 +329,9 @@ msgid ""
|
|
|
320
329
|
"for Outlook.com, Hotmail.com, and Microsoft 365 email accounts. To "
|
|
321
330
|
"continue, please use the \"Sign in with Microsoft\" button to securely "
|
|
322
331
|
"connect your account."
|
|
332
|
+
msgstr ""
|
|
333
|
+
|
|
334
|
+
#: lib/ui-routes/account-routes.js:728
|
|
335
|
+
#: lib/ui-routes/account-routes.js:995
|
|
336
|
+
msgid "Couldn't set up account. Try again."
|
|
323
337
|
msgstr ""
|
package/translations/nl.mo
CHANGED
|
Binary file
|
package/translations/nl.po
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
msgid ""
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: \n"
|
|
4
|
-
"POT-Creation-Date:
|
|
4
|
+
"POT-Creation-Date: 2026-01-14 09:54+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] "dag"
|
|
19
19
|
msgstr[1] "dagen"
|
|
20
20
|
|
|
21
|
+
#: views/redirect.hbs:1
|
|
22
|
+
msgid "Click <a href=\"%s\">here</a> to continue…"
|
|
23
|
+
msgstr "Klik <a href=\"%s\">hier</a> om door te gaan…"
|
|
24
|
+
|
|
21
25
|
#: views/unsubscribe.hbs:3 views/unsubscribe.hbs:62 views/unsubscribe.hbs:85
|
|
22
26
|
msgid "Unsubscribe"
|
|
23
27
|
msgstr "Uitschrijven"
|
|
@@ -63,10 +67,6 @@ msgstr "E-mailadres"
|
|
|
63
67
|
msgid "Enter your email address"
|
|
64
68
|
msgstr "Vul je email in"
|
|
65
69
|
|
|
66
|
-
#: views/redirect.hbs:1
|
|
67
|
-
msgid "Click <a href=\"%s\">here</a> to continue…"
|
|
68
|
-
msgstr "Klik <a href=\"%s\">hier</a> om door te gaan…"
|
|
69
|
-
|
|
70
70
|
#: views/accounts/register/index.hbs:2
|
|
71
71
|
msgid "Choose your email account provider"
|
|
72
72
|
msgstr "Kies je e-mailprovider"
|
|
@@ -75,6 +75,28 @@ msgstr "Kies je e-mailprovider"
|
|
|
75
75
|
msgid "Standard IMAP"
|
|
76
76
|
msgstr "Standaard IMAP"
|
|
77
77
|
|
|
78
|
+
#: views/accounts/register/imap.hbs:11
|
|
79
|
+
msgid "Your name"
|
|
80
|
+
msgstr "Jouw naam"
|
|
81
|
+
|
|
82
|
+
#: views/accounts/register/imap.hbs:17
|
|
83
|
+
msgid "Enter your full name"
|
|
84
|
+
msgstr "Vul je naam in"
|
|
85
|
+
|
|
86
|
+
#: views/accounts/register/imap.hbs:31
|
|
87
|
+
#: views/accounts/register/imap-server.hbs:36
|
|
88
|
+
#: views/accounts/register/imap-server.hbs:128
|
|
89
|
+
msgid "Password"
|
|
90
|
+
msgstr "Wachtwoord"
|
|
91
|
+
|
|
92
|
+
#: views/accounts/register/imap.hbs:37
|
|
93
|
+
msgid "Enter your account password"
|
|
94
|
+
msgstr "Vul je wachtwoord in"
|
|
95
|
+
|
|
96
|
+
#: views/accounts/register/imap.hbs:51
|
|
97
|
+
msgid "Continue"
|
|
98
|
+
msgstr "Doorgaan"
|
|
99
|
+
|
|
78
100
|
#: views/accounts/register/imap-server.hbs:19
|
|
79
101
|
msgid "IMAP"
|
|
80
102
|
msgstr "IMAP"
|
|
@@ -84,12 +106,6 @@ msgstr "IMAP"
|
|
|
84
106
|
msgid "Username"
|
|
85
107
|
msgstr "Gebruikersnaam"
|
|
86
108
|
|
|
87
|
-
#: views/accounts/register/imap-server.hbs:36
|
|
88
|
-
#: views/accounts/register/imap-server.hbs:128
|
|
89
|
-
#: views/accounts/register/imap.hbs:31
|
|
90
|
-
msgid "Password"
|
|
91
|
-
msgstr "Wachtwoord"
|
|
92
|
-
|
|
93
109
|
#: views/accounts/register/imap-server.hbs:45
|
|
94
110
|
#: views/accounts/register/imap-server.hbs:136
|
|
95
111
|
msgid "Important"
|
|
@@ -156,75 +172,61 @@ msgstr ""
|
|
|
156
172
|
"465. Voor andere poorten schakelt EmailEngine over op STARTTLS-versleuteling."
|
|
157
173
|
|
|
158
174
|
#: views/accounts/register/imap-server.hbs:209
|
|
159
|
-
msgid "
|
|
160
|
-
msgstr "
|
|
175
|
+
msgid "Verify connection"
|
|
176
|
+
msgstr "Verbinding controleren"
|
|
161
177
|
|
|
162
178
|
#: views/accounts/register/imap-server.hbs:218
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
msgstr "Doorgaan"
|
|
179
|
+
msgid "Save and continue"
|
|
180
|
+
msgstr "Opslaan en doorgaan"
|
|
166
181
|
|
|
167
182
|
#: views/accounts/register/imap-server.hbs:226
|
|
168
|
-
msgid "
|
|
169
|
-
msgstr "
|
|
183
|
+
msgid "Skip verification"
|
|
184
|
+
msgstr "Verificatie overslaan"
|
|
170
185
|
|
|
171
186
|
#: views/accounts/register/imap-server.hbs:241
|
|
172
|
-
msgid "
|
|
173
|
-
msgstr "
|
|
187
|
+
msgid "Connection test failed"
|
|
188
|
+
msgstr "Verbindingstest mislukt"
|
|
174
189
|
|
|
175
190
|
#: views/accounts/register/imap-server.hbs:247
|
|
176
|
-
msgid "
|
|
177
|
-
msgstr "
|
|
191
|
+
msgid "We couldn't connect with these settings. Check the errors below."
|
|
192
|
+
msgstr ""
|
|
193
|
+
"We konden geen verbinding maken met deze instellingen. Controleer de fouten "
|
|
194
|
+
"hieronder."
|
|
178
195
|
|
|
179
196
|
#: views/accounts/register/imap-server.hbs:318
|
|
180
|
-
msgid "
|
|
181
|
-
msgstr "
|
|
197
|
+
msgid "Error"
|
|
198
|
+
msgstr "Fout"
|
|
182
199
|
|
|
183
200
|
#: views/accounts/register/imap-server.hbs:320
|
|
184
|
-
msgid "
|
|
185
|
-
msgstr "
|
|
201
|
+
msgid "Invalid settings"
|
|
202
|
+
msgstr "Ongeldige instellingen"
|
|
186
203
|
|
|
187
204
|
#: views/accounts/register/imap-server.hbs:326
|
|
188
|
-
msgid "
|
|
189
|
-
msgstr "
|
|
205
|
+
msgid "Couldn't connect to IMAP server"
|
|
206
|
+
msgstr "Kon geen verbinding maken met IMAP-server"
|
|
190
207
|
|
|
191
208
|
#: views/accounts/register/imap-server.hbs:328
|
|
192
|
-
|
|
193
|
-
|
|
209
|
+
#: views/accounts/register/imap-server.hbs:337
|
|
210
|
+
msgid "Server response:"
|
|
211
|
+
msgstr "Server reactie:"
|
|
194
212
|
|
|
195
213
|
#: views/accounts/register/imap-server.hbs:335
|
|
196
|
-
msgid "
|
|
197
|
-
msgstr "
|
|
198
|
-
|
|
199
|
-
#: views/accounts/register/imap-server.hbs:337
|
|
200
|
-
msgid "SMTP Server responded with the following message:"
|
|
201
|
-
msgstr "De SMTP-server antwoordde met de volgende boodschap:"
|
|
214
|
+
msgid "Couldn't connect to SMTP server"
|
|
215
|
+
msgstr "Kon geen verbinding maken met SMTP-server"
|
|
202
216
|
|
|
203
217
|
#: views/accounts/register/imap-server.hbs:395
|
|
204
|
-
msgid "
|
|
205
|
-
msgstr "
|
|
206
|
-
|
|
207
|
-
#: views/accounts/register/imap.hbs:11
|
|
208
|
-
msgid "Your name"
|
|
209
|
-
msgstr "Jouw naam"
|
|
210
|
-
|
|
211
|
-
#: views/accounts/register/imap.hbs:17
|
|
212
|
-
msgid "Enter your full name"
|
|
213
|
-
msgstr "Vul je naam in"
|
|
218
|
+
msgid "Request failed."
|
|
219
|
+
msgstr "Verzoek mislukt."
|
|
214
220
|
|
|
215
|
-
#:
|
|
216
|
-
msgid "Enter your account password"
|
|
217
|
-
msgstr "Vul je wachtwoord in"
|
|
218
|
-
|
|
219
|
-
#: lib/routes-ui.js:529
|
|
221
|
+
#: lib/routes-ui.js:519 lib/ui-routes/account-routes.js:60
|
|
220
222
|
msgid "Delegated"
|
|
221
223
|
msgstr "Gedelegeerd"
|
|
222
224
|
|
|
223
|
-
#: lib/routes-ui.js:
|
|
225
|
+
#: lib/routes-ui.js:520 lib/ui-routes/account-routes.js:61
|
|
224
226
|
msgid "Using credentials from \"%s\""
|
|
225
227
|
msgstr "Gebruikmakend van inloggegevens van \"%s\""
|
|
226
228
|
|
|
227
|
-
#: lib/routes-ui.js:
|
|
229
|
+
#: lib/routes-ui.js:570 lib/ui-routes/account-routes.js:111
|
|
228
230
|
msgid ""
|
|
229
231
|
"Connection timed out. This usually occurs if you are behind a firewall or "
|
|
230
232
|
"connecting to the wrong port."
|
|
@@ -232,11 +234,11 @@ msgstr ""
|
|
|
232
234
|
"De verbinding is verlopen. Dit gebeurt meestal als je achter een firewall "
|
|
233
235
|
"zit of verbinding maakt met de verkeerde poort."
|
|
234
236
|
|
|
235
|
-
#: lib/routes-ui.js:
|
|
237
|
+
#: lib/routes-ui.js:573 lib/ui-routes/account-routes.js:114
|
|
236
238
|
msgid "The server unexpectedly closed the connection."
|
|
237
239
|
msgstr "De server sloot onverwacht de verbinding."
|
|
238
240
|
|
|
239
|
-
#: lib/routes-ui.js:
|
|
241
|
+
#: lib/routes-ui.js:576 lib/ui-routes/account-routes.js:117
|
|
240
242
|
msgid ""
|
|
241
243
|
"The server unexpectedly closed the connection. This usually happens when "
|
|
242
244
|
"attempting to connect to a TLS port without TLS enabled."
|
|
@@ -244,7 +246,7 @@ msgstr ""
|
|
|
244
246
|
"De server sloot onverwacht de verbinding. Dit gebeurt meestal wanneer je "
|
|
245
247
|
"probeert verbinding te maken met een TLS-poort zonder TLS ingeschakeld."
|
|
246
248
|
|
|
247
|
-
#: lib/routes-ui.js:
|
|
249
|
+
#: lib/routes-ui.js:581 lib/ui-routes/account-routes.js:122
|
|
248
250
|
msgid ""
|
|
249
251
|
"The server refused the connection. This typically occurs if the server is "
|
|
250
252
|
"not running, is overloaded, or you are connecting to the wrong host or port."
|
|
@@ -253,62 +255,63 @@ msgstr ""
|
|
|
253
255
|
"draait, overbelast is, of als je verbinding maakt met de verkeerde host of "
|
|
254
256
|
"poort."
|
|
255
257
|
|
|
256
|
-
#: lib/routes-ui.js:
|
|
258
|
+
#: lib/routes-ui.js:699
|
|
257
259
|
msgid "Invalid API key for OpenAI"
|
|
258
260
|
msgstr "Ongeldige API-sleutel voor OpenAI"
|
|
259
261
|
|
|
260
|
-
#: lib/routes-ui.js:
|
|
262
|
+
#: lib/routes-ui.js:4443 lib/routes-ui.js:4478 lib/routes-ui.js:4593
|
|
263
|
+
#: lib/routes-ui.js:4640 lib/routes-ui.js:4869 lib/routes-ui.js:4905
|
|
264
|
+
#: workers/api.js:2398 lib/ui-routes/account-routes.js:535
|
|
265
|
+
#: lib/ui-routes/account-routes.js:571 lib/ui-routes/account-routes.js:688
|
|
266
|
+
#: lib/ui-routes/account-routes.js:735 lib/ui-routes/account-routes.js:966
|
|
267
|
+
#: lib/ui-routes/account-routes.js:1002
|
|
268
|
+
msgid "Email Account Setup"
|
|
269
|
+
msgstr "E-mailaccountinstelling"
|
|
270
|
+
|
|
271
|
+
#: lib/routes-ui.js:4503 lib/routes-ui.js:4536 lib/routes-ui.js:7455
|
|
272
|
+
#: lib/ui-routes/account-routes.js:596 lib/ui-routes/account-routes.js:630
|
|
273
|
+
msgid "Invalid request. Check your input and try again."
|
|
274
|
+
msgstr "Het valideren van de aanvraag-argumenten is mislukt."
|
|
275
|
+
|
|
276
|
+
#: lib/routes-ui.js:4696 lib/routes-ui.js:4707
|
|
277
|
+
#: lib/ui-routes/account-routes.js:792 lib/ui-routes/account-routes.js:803
|
|
278
|
+
#: lib/ui-routes/admin-entities-routes.js:2020
|
|
261
279
|
msgid "Server hostname was not found"
|
|
262
280
|
msgstr "De serverhostnaam kon niet worden gevonden."
|
|
263
281
|
|
|
264
|
-
#: lib/routes-ui.js:
|
|
282
|
+
#: lib/routes-ui.js:4699 lib/routes-ui.js:4710
|
|
283
|
+
#: lib/ui-routes/account-routes.js:795 lib/ui-routes/account-routes.js:806
|
|
284
|
+
#: lib/ui-routes/admin-entities-routes.js:2023
|
|
265
285
|
msgid "Invalid username or password"
|
|
266
286
|
msgstr "Ongeldige gebruikersnaam of wachtwoord"
|
|
267
287
|
|
|
268
|
-
#: lib/routes-ui.js:
|
|
288
|
+
#: lib/routes-ui.js:4714 lib/ui-routes/account-routes.js:810
|
|
289
|
+
#: lib/ui-routes/admin-entities-routes.js:2027
|
|
269
290
|
msgid "TLS protocol error"
|
|
270
291
|
msgstr "TLS-protocolfout"
|
|
271
292
|
|
|
272
|
-
#: lib/routes-ui.js:
|
|
273
|
-
#: lib/routes-ui.js:6902 lib/routes-ui.js:7131 lib/routes-ui.js:7167
|
|
274
|
-
#: workers/api.js:2346
|
|
275
|
-
msgid "Email Account Setup"
|
|
276
|
-
msgstr "E-mailaccountinstelling"
|
|
277
|
-
|
|
278
|
-
#: lib/routes-ui.js:6765 lib/routes-ui.js:6798 lib/routes-ui.js:9717
|
|
279
|
-
msgid "Failed to validate request arguments"
|
|
280
|
-
msgstr "Het valideren van de aanvraag-argumenten is mislukt"
|
|
281
|
-
|
|
282
|
-
#: lib/routes-ui.js:6895 lib/routes-ui.js:7160
|
|
283
|
-
msgid "Failed to process account"
|
|
284
|
-
msgstr "Het verwerken van het account is mislukt"
|
|
285
|
-
|
|
286
|
-
#: lib/routes-ui.js:9680 lib/tools.js:795
|
|
293
|
+
#: lib/routes-ui.js:7418 lib/tools.js:778
|
|
287
294
|
msgid "Invalid input"
|
|
288
295
|
msgstr "Ongeldige invoer"
|
|
289
296
|
|
|
290
|
-
#: lib/routes-ui.js:
|
|
291
|
-
#: lib/routes-ui.js:
|
|
297
|
+
#: lib/routes-ui.js:7428 lib/routes-ui.js:7546 lib/routes-ui.js:7563
|
|
298
|
+
#: lib/routes-ui.js:7599
|
|
292
299
|
msgid "Subscription Management"
|
|
293
300
|
msgstr "Abonnementenbeheer"
|
|
294
301
|
|
|
295
|
-
#:
|
|
296
|
-
msgid "Failed to process request"
|
|
297
|
-
msgstr "Verzoek kon niet worden verwerkt."
|
|
298
|
-
|
|
299
|
-
#: workers/api.js:8996 workers/api.js:9112
|
|
302
|
+
#: workers/api.js:6825 workers/api.js:6941
|
|
300
303
|
msgid "Requested page not found"
|
|
301
304
|
msgstr "Opgevraagde pagina niet gevonden"
|
|
302
305
|
|
|
303
|
-
#: workers/api.js:
|
|
306
|
+
#: workers/api.js:6826
|
|
304
307
|
msgid "Something went wrong"
|
|
305
308
|
msgstr "Er ging iets mis"
|
|
306
309
|
|
|
307
|
-
#: lib/tools.js:
|
|
310
|
+
#: lib/tools.js:1477
|
|
308
311
|
msgid "Signature validation failed"
|
|
309
312
|
msgstr "Handtekeningvalidatie mislukt"
|
|
310
313
|
|
|
311
|
-
#: lib/tools.js:
|
|
314
|
+
#: lib/tools.js:1486 lib/tools.js:1491
|
|
312
315
|
msgid "Invalid or expired account setup URL"
|
|
313
316
|
msgstr "Ongeldige of verlopen accountinstellings-URL"
|
|
314
317
|
|
|
@@ -323,3 +326,12 @@ msgstr ""
|
|
|
323
326
|
"applicatiewachtwoorden) uitgeschakeld voor Outlook.com, Hotmail.com en "
|
|
324
327
|
"Microsoft 365 e-mailaccounts. Gebruik de knop \"Inloggen met Microsoft\" om "
|
|
325
328
|
"je account veilig te verbinden."
|
|
329
|
+
|
|
330
|
+
#: lib/ui-routes/account-routes.js:728 lib/ui-routes/account-routes.js:995
|
|
331
|
+
msgid "Couldn't set up account. Try again."
|
|
332
|
+
msgstr "Kan geen account aanmaken. Probeer het opnieuw."
|
|
333
|
+
|
|
334
|
+
#, fuzzy
|
|
335
|
+
#~| msgid "Failed to process request"
|
|
336
|
+
#~ msgid "Couldn't process request. Try again."
|
|
337
|
+
#~ msgstr "Verzoek kon niet worden verwerkt."
|
package/translations/pl.mo
CHANGED
|
Binary file
|