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
|
@@ -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-12 11:16+0000\n"
|
|
5
5
|
|
|
6
6
|
#: views/config/license.hbs:45
|
|
7
7
|
msgid "%d day"
|
|
@@ -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,141 @@ 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 "
|
|
207
|
+
msgid "Request failed."
|
|
196
208
|
msgstr ""
|
|
197
209
|
|
|
198
|
-
#:
|
|
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"
|
|
208
|
-
msgstr ""
|
|
209
|
-
|
|
210
|
-
#: lib/routes-ui.js:532
|
|
210
|
+
#: lib/routes-ui.js:519
|
|
211
211
|
msgid "Delegated"
|
|
212
212
|
msgstr ""
|
|
213
213
|
|
|
214
|
-
#: lib/routes-ui.js:
|
|
214
|
+
#: lib/routes-ui.js:520
|
|
215
215
|
msgid "Using credentials from \"%s\""
|
|
216
216
|
msgstr ""
|
|
217
217
|
|
|
218
|
-
#: lib/routes-ui.js:
|
|
218
|
+
#: lib/routes-ui.js:570
|
|
219
219
|
msgid ""
|
|
220
220
|
"Connection timed out. This usually occurs if you are behind a firewall or "
|
|
221
221
|
"connecting to the wrong port."
|
|
222
222
|
msgstr ""
|
|
223
223
|
|
|
224
|
-
#: lib/routes-ui.js:
|
|
224
|
+
#: lib/routes-ui.js:573
|
|
225
225
|
msgid "The server unexpectedly closed the connection."
|
|
226
226
|
msgstr ""
|
|
227
227
|
|
|
228
|
-
#: lib/routes-ui.js:
|
|
228
|
+
#: lib/routes-ui.js:576
|
|
229
229
|
msgid ""
|
|
230
230
|
"The server unexpectedly closed the connection. This usually happens when "
|
|
231
231
|
"attempting to connect to a TLS port without TLS enabled."
|
|
232
232
|
msgstr ""
|
|
233
233
|
|
|
234
|
-
#: lib/routes-ui.js:
|
|
234
|
+
#: lib/routes-ui.js:581
|
|
235
235
|
msgid ""
|
|
236
236
|
"The server refused the connection. This typically occurs if the server is "
|
|
237
237
|
"not running, is overloaded, or you are connecting to the wrong host or port."
|
|
238
238
|
msgstr ""
|
|
239
239
|
|
|
240
|
-
#: lib/routes-ui.js:
|
|
240
|
+
#: lib/routes-ui.js:699
|
|
241
241
|
msgid "Invalid API key for OpenAI"
|
|
242
242
|
msgstr ""
|
|
243
243
|
|
|
244
|
-
#: lib/routes-ui.js:
|
|
245
|
-
#: lib/routes-ui.js:
|
|
246
|
-
#: lib/routes-ui.js:
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
#:
|
|
251
|
-
|
|
252
|
-
#: lib/routes-ui.js:7000
|
|
253
|
-
msgid "Invalid username or password"
|
|
244
|
+
#: lib/routes-ui.js:4443
|
|
245
|
+
#: lib/routes-ui.js:4478
|
|
246
|
+
#: lib/routes-ui.js:4593
|
|
247
|
+
#: lib/routes-ui.js:4640
|
|
248
|
+
#: lib/routes-ui.js:4869
|
|
249
|
+
#: lib/routes-ui.js:4905
|
|
250
|
+
#: workers/api.js:2398
|
|
251
|
+
msgid "Email Account Setup"
|
|
254
252
|
msgstr ""
|
|
255
253
|
|
|
256
|
-
#: lib/routes-ui.js:
|
|
257
|
-
#: lib/routes-ui.js:
|
|
258
|
-
|
|
254
|
+
#: lib/routes-ui.js:4503
|
|
255
|
+
#: lib/routes-ui.js:4536
|
|
256
|
+
#: lib/routes-ui.js:7455
|
|
257
|
+
msgid "Invalid request. Check your input and try again."
|
|
259
258
|
msgstr ""
|
|
260
259
|
|
|
261
|
-
#: lib/routes-ui.js:
|
|
262
|
-
#: lib/routes-ui.js:
|
|
263
|
-
|
|
264
|
-
#: lib/routes-ui.js:6930
|
|
265
|
-
#: lib/routes-ui.js:7159
|
|
266
|
-
#: lib/routes-ui.js:7195
|
|
267
|
-
#: workers/api.js:2407
|
|
268
|
-
msgid "Email Account Setup"
|
|
260
|
+
#: lib/routes-ui.js:4696
|
|
261
|
+
#: lib/routes-ui.js:4707
|
|
262
|
+
msgid "Server hostname was not found"
|
|
269
263
|
msgstr ""
|
|
270
264
|
|
|
271
|
-
#: lib/routes-ui.js:
|
|
272
|
-
#: lib/routes-ui.js:
|
|
273
|
-
|
|
274
|
-
msgid "Failed to validate request arguments"
|
|
265
|
+
#: lib/routes-ui.js:4699
|
|
266
|
+
#: lib/routes-ui.js:4710
|
|
267
|
+
msgid "Invalid username or password"
|
|
275
268
|
msgstr ""
|
|
276
269
|
|
|
277
|
-
#: lib/routes-ui.js:
|
|
278
|
-
|
|
279
|
-
msgid "Failed to process account"
|
|
270
|
+
#: lib/routes-ui.js:4714
|
|
271
|
+
msgid "TLS protocol error"
|
|
280
272
|
msgstr ""
|
|
281
273
|
|
|
282
|
-
#: lib/routes-ui.js:
|
|
283
|
-
#: lib/tools.js:
|
|
274
|
+
#: lib/routes-ui.js:7418
|
|
275
|
+
#: lib/tools.js:778
|
|
284
276
|
msgid "Invalid input"
|
|
285
277
|
msgstr ""
|
|
286
278
|
|
|
287
|
-
#: lib/routes-ui.js:
|
|
288
|
-
#: lib/routes-ui.js:
|
|
289
|
-
#: lib/routes-ui.js:
|
|
290
|
-
#: lib/routes-ui.js:
|
|
279
|
+
#: lib/routes-ui.js:7428
|
|
280
|
+
#: lib/routes-ui.js:7546
|
|
281
|
+
#: lib/routes-ui.js:7563
|
|
282
|
+
#: lib/routes-ui.js:7599
|
|
291
283
|
msgid "Subscription Management"
|
|
292
284
|
msgstr ""
|
|
293
285
|
|
|
294
|
-
#:
|
|
295
|
-
#:
|
|
296
|
-
msgid "Failed to process request"
|
|
297
|
-
msgstr ""
|
|
298
|
-
|
|
299
|
-
#: workers/api.js:9113
|
|
300
|
-
#: workers/api.js:9229
|
|
286
|
+
#: workers/api.js:6825
|
|
287
|
+
#: workers/api.js:6941
|
|
301
288
|
msgid "Requested page not found"
|
|
302
289
|
msgstr ""
|
|
303
290
|
|
|
304
|
-
#: workers/api.js:
|
|
291
|
+
#: workers/api.js:6826
|
|
305
292
|
msgid "Something went wrong"
|
|
306
293
|
msgstr ""
|
|
307
294
|
|
|
308
|
-
#: lib/tools.js:
|
|
295
|
+
#: lib/tools.js:1477
|
|
309
296
|
msgid "Signature validation failed"
|
|
310
297
|
msgstr ""
|
|
311
298
|
|
|
312
|
-
#: lib/tools.js:
|
|
313
|
-
#: lib/tools.js:
|
|
299
|
+
#: lib/tools.js:1486
|
|
300
|
+
#: lib/tools.js:1491
|
|
314
301
|
msgid "Invalid or expired account setup URL"
|
|
315
302
|
msgstr ""
|
|
316
303
|
|
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: 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] "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"
|
|
218
|
+
msgid "Request failed."
|
|
219
|
+
msgstr "Verzoek mislukt."
|
|
210
220
|
|
|
211
|
-
#:
|
|
212
|
-
msgid "Enter your full name"
|
|
213
|
-
msgstr "Vul je naam in"
|
|
214
|
-
|
|
215
|
-
#: views/accounts/register/imap.hbs:37
|
|
216
|
-
msgid "Enter your account password"
|
|
217
|
-
msgstr "Vul je wachtwoord in"
|
|
218
|
-
|
|
219
|
-
#: lib/routes-ui.js:529
|
|
221
|
+
#: lib/routes-ui.js:532
|
|
220
222
|
msgid "Delegated"
|
|
221
223
|
msgstr "Gedelegeerd"
|
|
222
224
|
|
|
223
|
-
#: lib/routes-ui.js:
|
|
225
|
+
#: lib/routes-ui.js:533
|
|
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:583
|
|
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:586
|
|
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:589
|
|
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:594
|
|
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,54 @@ 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:712
|
|
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:5031 lib/routes-ui.js:6986 lib/routes-ui.js:6997
|
|
261
263
|
msgid "Server hostname was not found"
|
|
262
264
|
msgstr "De serverhostnaam kon niet worden gevonden."
|
|
263
265
|
|
|
264
|
-
#: lib/routes-ui.js:
|
|
266
|
+
#: lib/routes-ui.js:5034 lib/routes-ui.js:6989 lib/routes-ui.js:7000
|
|
265
267
|
msgid "Invalid username or password"
|
|
266
268
|
msgstr "Ongeldige gebruikersnaam of wachtwoord"
|
|
267
269
|
|
|
268
|
-
#: lib/routes-ui.js:
|
|
270
|
+
#: lib/routes-ui.js:5038 lib/routes-ui.js:7004
|
|
269
271
|
msgid "TLS protocol error"
|
|
270
272
|
msgstr "TLS-protocolfout"
|
|
271
273
|
|
|
272
|
-
#: lib/routes-ui.js:
|
|
273
|
-
#: lib/routes-ui.js:
|
|
274
|
-
#: workers/api.js:
|
|
274
|
+
#: lib/routes-ui.js:6733 lib/routes-ui.js:6768 lib/routes-ui.js:6883
|
|
275
|
+
#: lib/routes-ui.js:6930 lib/routes-ui.js:7159 lib/routes-ui.js:7195
|
|
276
|
+
#: workers/api.js:2407
|
|
275
277
|
msgid "Email Account Setup"
|
|
276
278
|
msgstr "E-mailaccountinstelling"
|
|
277
279
|
|
|
278
|
-
#: lib/routes-ui.js:
|
|
279
|
-
msgid "
|
|
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"
|
|
280
|
+
#: lib/routes-ui.js:6793 lib/routes-ui.js:6826 lib/routes-ui.js:9745
|
|
281
|
+
msgid "Invalid request. Check your input and try again."
|
|
282
|
+
msgstr "Het valideren van de aanvraag-argumenten is mislukt."
|
|
285
283
|
|
|
286
|
-
#: lib/routes-ui.js:
|
|
284
|
+
#: lib/routes-ui.js:9708 lib/tools.js:794
|
|
287
285
|
msgid "Invalid input"
|
|
288
286
|
msgstr "Ongeldige invoer"
|
|
289
287
|
|
|
290
|
-
#: lib/routes-ui.js:
|
|
291
|
-
#: lib/routes-ui.js:
|
|
288
|
+
#: lib/routes-ui.js:9718 lib/routes-ui.js:9836 lib/routes-ui.js:9853
|
|
289
|
+
#: lib/routes-ui.js:9889
|
|
292
290
|
msgid "Subscription Management"
|
|
293
291
|
msgstr "Abonnementenbeheer"
|
|
294
292
|
|
|
295
|
-
#:
|
|
296
|
-
msgid "Failed to process request"
|
|
297
|
-
msgstr "Verzoek kon niet worden verwerkt."
|
|
298
|
-
|
|
299
|
-
#: workers/api.js:8996 workers/api.js:9112
|
|
293
|
+
#: workers/api.js:9113 workers/api.js:9229
|
|
300
294
|
msgid "Requested page not found"
|
|
301
295
|
msgstr "Opgevraagde pagina niet gevonden"
|
|
302
296
|
|
|
303
|
-
#: workers/api.js:
|
|
297
|
+
#: workers/api.js:9114
|
|
304
298
|
msgid "Something went wrong"
|
|
305
299
|
msgstr "Er ging iets mis"
|
|
306
300
|
|
|
307
|
-
#: lib/tools.js:
|
|
301
|
+
#: lib/tools.js:1493
|
|
308
302
|
msgid "Signature validation failed"
|
|
309
303
|
msgstr "Handtekeningvalidatie mislukt"
|
|
310
304
|
|
|
311
|
-
#: lib/tools.js:
|
|
305
|
+
#: lib/tools.js:1502 lib/tools.js:1507
|
|
312
306
|
msgid "Invalid or expired account setup URL"
|
|
313
307
|
msgstr "Ongeldige of verlopen accountinstellings-URL"
|
|
314
308
|
|
|
@@ -323,3 +317,13 @@ msgstr ""
|
|
|
323
317
|
"applicatiewachtwoorden) uitgeschakeld voor Outlook.com, Hotmail.com en "
|
|
324
318
|
"Microsoft 365 e-mailaccounts. Gebruik de knop \"Inloggen met Microsoft\" om "
|
|
325
319
|
"je account veilig te verbinden."
|
|
320
|
+
|
|
321
|
+
#, fuzzy
|
|
322
|
+
#~| msgid "Failed to process account"
|
|
323
|
+
#~ msgid "Couldn't set up account. Try again."
|
|
324
|
+
#~ msgstr "Het verwerken van het account is mislukt"
|
|
325
|
+
|
|
326
|
+
#, fuzzy
|
|
327
|
+
#~| msgid "Failed to process request"
|
|
328
|
+
#~ msgid "Couldn't process request. Try again."
|
|
329
|
+
#~ msgstr "Verzoek kon niet worden verwerkt."
|
package/translations/pl.mo
CHANGED
|
Binary file
|