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
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:
|
|
5
|
-
"PO-Revision-Date:
|
|
4
|
+
"POT-Creation-Date: 2026-01-14 09:54+0000\n"
|
|
5
|
+
"PO-Revision-Date: 2026-01-14 11:55+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,137 @@ 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"
|
|
205
|
-
msgstr ""
|
|
206
|
-
|
|
207
|
-
#: views/accounts/register/imap.hbs:17
|
|
208
|
-
msgid "Enter your full name"
|
|
209
|
-
msgstr ""
|
|
210
|
-
|
|
211
|
-
#: views/accounts/register/imap.hbs:37
|
|
212
|
-
msgid "Enter your account password"
|
|
212
|
+
msgid "Request failed."
|
|
213
213
|
msgstr ""
|
|
214
214
|
|
|
215
|
-
#: lib/routes-ui.js:
|
|
215
|
+
#: lib/routes-ui.js:519 lib/ui-routes/account-routes.js:60
|
|
216
216
|
msgid "Delegated"
|
|
217
217
|
msgstr ""
|
|
218
218
|
|
|
219
|
-
#: lib/routes-ui.js:
|
|
219
|
+
#: lib/routes-ui.js:520 lib/ui-routes/account-routes.js:61
|
|
220
220
|
msgid "Using credentials from \"%s\""
|
|
221
221
|
msgstr ""
|
|
222
222
|
|
|
223
|
-
#: lib/routes-ui.js:
|
|
223
|
+
#: lib/routes-ui.js:570 lib/ui-routes/account-routes.js:111
|
|
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:573 lib/ui-routes/account-routes.js:114
|
|
230
230
|
msgid "The server unexpectedly closed the connection."
|
|
231
231
|
msgstr ""
|
|
232
232
|
|
|
233
|
-
#: lib/routes-ui.js:
|
|
233
|
+
#: lib/routes-ui.js:576 lib/ui-routes/account-routes.js:117
|
|
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:581 lib/ui-routes/account-routes.js:122
|
|
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:699
|
|
246
246
|
msgid "Invalid API key for OpenAI"
|
|
247
247
|
msgstr ""
|
|
248
248
|
|
|
249
|
-
#: lib/routes-ui.js:
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
#: lib/routes-
|
|
254
|
-
|
|
249
|
+
#: lib/routes-ui.js:4443 lib/routes-ui.js:4478 lib/routes-ui.js:4593
|
|
250
|
+
#: lib/routes-ui.js:4640 lib/routes-ui.js:4869 lib/routes-ui.js:4905
|
|
251
|
+
#: workers/api.js:2398 lib/ui-routes/account-routes.js:535
|
|
252
|
+
#: lib/ui-routes/account-routes.js:571 lib/ui-routes/account-routes.js:688
|
|
253
|
+
#: lib/ui-routes/account-routes.js:735 lib/ui-routes/account-routes.js:966
|
|
254
|
+
#: lib/ui-routes/account-routes.js:1002
|
|
255
|
+
msgid "Email Account Setup"
|
|
255
256
|
msgstr ""
|
|
256
257
|
|
|
257
|
-
#: lib/routes-ui.js:
|
|
258
|
-
|
|
258
|
+
#: lib/routes-ui.js:4503 lib/routes-ui.js:4536 lib/routes-ui.js:7455
|
|
259
|
+
#: lib/ui-routes/account-routes.js:596 lib/ui-routes/account-routes.js:630
|
|
260
|
+
msgid "Invalid request. Check your input and try again."
|
|
259
261
|
msgstr ""
|
|
260
262
|
|
|
261
|
-
#: lib/routes-ui.js:
|
|
262
|
-
#: lib/routes-
|
|
263
|
-
#:
|
|
264
|
-
msgid "
|
|
263
|
+
#: lib/routes-ui.js:4696 lib/routes-ui.js:4707
|
|
264
|
+
#: lib/ui-routes/account-routes.js:792 lib/ui-routes/account-routes.js:803
|
|
265
|
+
#: lib/ui-routes/admin-entities-routes.js:2020
|
|
266
|
+
msgid "Server hostname was not found"
|
|
265
267
|
msgstr ""
|
|
266
268
|
|
|
267
|
-
#: lib/routes-ui.js:
|
|
268
|
-
|
|
269
|
+
#: lib/routes-ui.js:4699 lib/routes-ui.js:4710
|
|
270
|
+
#: lib/ui-routes/account-routes.js:795 lib/ui-routes/account-routes.js:806
|
|
271
|
+
#: lib/ui-routes/admin-entities-routes.js:2023
|
|
272
|
+
msgid "Invalid username or password"
|
|
269
273
|
msgstr ""
|
|
270
274
|
|
|
271
|
-
#: lib/routes-ui.js:
|
|
272
|
-
|
|
275
|
+
#: lib/routes-ui.js:4714 lib/ui-routes/account-routes.js:810
|
|
276
|
+
#: lib/ui-routes/admin-entities-routes.js:2027
|
|
277
|
+
msgid "TLS protocol error"
|
|
273
278
|
msgstr ""
|
|
274
279
|
|
|
275
|
-
#: lib/routes-ui.js:
|
|
280
|
+
#: lib/routes-ui.js:7418 lib/tools.js:778
|
|
276
281
|
msgid "Invalid input"
|
|
277
282
|
msgstr ""
|
|
278
283
|
|
|
279
|
-
#: lib/routes-ui.js:
|
|
280
|
-
#: lib/routes-ui.js:
|
|
284
|
+
#: lib/routes-ui.js:7428 lib/routes-ui.js:7546 lib/routes-ui.js:7563
|
|
285
|
+
#: lib/routes-ui.js:7599
|
|
281
286
|
msgid "Subscription Management"
|
|
282
287
|
msgstr ""
|
|
283
288
|
|
|
284
|
-
#:
|
|
285
|
-
msgid "Failed to process request"
|
|
286
|
-
msgstr ""
|
|
287
|
-
|
|
288
|
-
#: workers/api.js:8996 workers/api.js:9112
|
|
289
|
+
#: workers/api.js:6825 workers/api.js:6941
|
|
289
290
|
msgid "Requested page not found"
|
|
290
291
|
msgstr ""
|
|
291
292
|
|
|
292
|
-
#: workers/api.js:
|
|
293
|
+
#: workers/api.js:6826
|
|
293
294
|
msgid "Something went wrong"
|
|
294
295
|
msgstr ""
|
|
295
296
|
|
|
296
|
-
#: lib/tools.js:
|
|
297
|
+
#: lib/tools.js:1477
|
|
297
298
|
msgid "Signature validation failed"
|
|
298
299
|
msgstr ""
|
|
299
300
|
|
|
300
|
-
#: lib/tools.js:
|
|
301
|
+
#: lib/tools.js:1486 lib/tools.js:1491
|
|
301
302
|
msgid "Invalid or expired account setup URL"
|
|
302
303
|
msgstr ""
|
|
303
304
|
|
|
@@ -308,3 +309,7 @@ msgid ""
|
|
|
308
309
|
"please use the \"Sign in with Microsoft\" button to securely connect your "
|
|
309
310
|
"account."
|
|
310
311
|
msgstr ""
|
|
312
|
+
|
|
313
|
+
#: lib/ui-routes/account-routes.js:728 lib/ui-routes/account-routes.js:995
|
|
314
|
+
msgid "Couldn't set up account. Try again."
|
|
315
|
+
msgstr ""
|
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:
|
|
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] "%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"
|
|
214
|
-
|
|
215
|
-
#: views/accounts/register/imap.hbs:17
|
|
216
|
-
msgid "Enter your full name"
|
|
217
|
-
msgstr "Sisestage oma täisnimi"
|
|
220
|
+
msgid "Request failed."
|
|
221
|
+
msgstr "Päring ebaõnnestus."
|
|
218
222
|
|
|
219
|
-
#:
|
|
220
|
-
msgid "Enter your account password"
|
|
221
|
-
msgstr "Sisestage oma konto parool"
|
|
222
|
-
|
|
223
|
-
#: lib/routes-ui.js:529
|
|
223
|
+
#: lib/routes-ui.js:519 lib/ui-routes/account-routes.js:60
|
|
224
224
|
msgid "Delegated"
|
|
225
225
|
msgstr "Delegeeritud"
|
|
226
226
|
|
|
227
|
-
#: lib/routes-ui.js:
|
|
227
|
+
#: lib/routes-ui.js:520 lib/ui-routes/account-routes.js:61
|
|
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:570 lib/ui-routes/account-routes.js:111
|
|
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:573 lib/ui-routes/account-routes.js:114
|
|
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:576 lib/ui-routes/account-routes.js:117
|
|
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:581 lib/ui-routes/account-routes.js:122
|
|
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,63 @@ 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:699
|
|
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:4443 lib/routes-ui.js:4478 lib/routes-ui.js:4593
|
|
264
|
+
#: lib/routes-ui.js:4640 lib/routes-ui.js:4869 lib/routes-ui.js:4905
|
|
265
|
+
#: workers/api.js:2398 lib/ui-routes/account-routes.js:535
|
|
266
|
+
#: lib/ui-routes/account-routes.js:571 lib/ui-routes/account-routes.js:688
|
|
267
|
+
#: lib/ui-routes/account-routes.js:735 lib/ui-routes/account-routes.js:966
|
|
268
|
+
#: lib/ui-routes/account-routes.js:1002
|
|
269
|
+
msgid "Email Account Setup"
|
|
270
|
+
msgstr "E-posti konto seadistamine"
|
|
271
|
+
|
|
272
|
+
#: lib/routes-ui.js:4503 lib/routes-ui.js:4536 lib/routes-ui.js:7455
|
|
273
|
+
#: lib/ui-routes/account-routes.js:596 lib/ui-routes/account-routes.js:630
|
|
274
|
+
msgid "Invalid request. Check your input and try again."
|
|
275
|
+
msgstr "Päringu argumentide kontroll ebaõnnestus."
|
|
276
|
+
|
|
277
|
+
#: lib/routes-ui.js:4696 lib/routes-ui.js:4707
|
|
278
|
+
#: lib/ui-routes/account-routes.js:792 lib/ui-routes/account-routes.js:803
|
|
279
|
+
#: lib/ui-routes/admin-entities-routes.js:2020
|
|
264
280
|
msgid "Server hostname was not found"
|
|
265
281
|
msgstr "Serverit ei leitud"
|
|
266
282
|
|
|
267
|
-
#: lib/routes-ui.js:
|
|
283
|
+
#: lib/routes-ui.js:4699 lib/routes-ui.js:4710
|
|
284
|
+
#: lib/ui-routes/account-routes.js:795 lib/ui-routes/account-routes.js:806
|
|
285
|
+
#: lib/ui-routes/admin-entities-routes.js:2023
|
|
268
286
|
msgid "Invalid username or password"
|
|
269
287
|
msgstr "Vigane kasutajanimi või parool"
|
|
270
288
|
|
|
271
|
-
#: lib/routes-ui.js:
|
|
289
|
+
#: lib/routes-ui.js:4714 lib/ui-routes/account-routes.js:810
|
|
290
|
+
#: lib/ui-routes/admin-entities-routes.js:2027
|
|
272
291
|
msgid "TLS protocol error"
|
|
273
292
|
msgstr "TLS protokolli viga"
|
|
274
293
|
|
|
275
|
-
#: lib/routes-ui.js:
|
|
276
|
-
#: lib/routes-ui.js:6902 lib/routes-ui.js:7131 lib/routes-ui.js:7167
|
|
277
|
-
#: workers/api.js:2346
|
|
278
|
-
msgid "Email Account Setup"
|
|
279
|
-
msgstr "E-posti konto seadistamine"
|
|
280
|
-
|
|
281
|
-
#: lib/routes-ui.js:6765 lib/routes-ui.js:6798 lib/routes-ui.js:9717
|
|
282
|
-
msgid "Failed to validate request arguments"
|
|
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"
|
|
288
|
-
|
|
289
|
-
#: lib/routes-ui.js:9680 lib/tools.js:795
|
|
294
|
+
#: lib/routes-ui.js:7418 lib/tools.js:778
|
|
290
295
|
msgid "Invalid input"
|
|
291
296
|
msgstr "Vale sisestus"
|
|
292
297
|
|
|
293
|
-
#: lib/routes-ui.js:
|
|
294
|
-
#: lib/routes-ui.js:
|
|
298
|
+
#: lib/routes-ui.js:7428 lib/routes-ui.js:7546 lib/routes-ui.js:7563
|
|
299
|
+
#: lib/routes-ui.js:7599
|
|
295
300
|
msgid "Subscription Management"
|
|
296
301
|
msgstr "Tellimuse haldamine"
|
|
297
302
|
|
|
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
|
|
303
|
+
#: workers/api.js:6825 workers/api.js:6941
|
|
303
304
|
msgid "Requested page not found"
|
|
304
305
|
msgstr "Soovitud lehekülge ei leitud"
|
|
305
306
|
|
|
306
|
-
#: workers/api.js:
|
|
307
|
+
#: workers/api.js:6826
|
|
307
308
|
msgid "Something went wrong"
|
|
308
309
|
msgstr "Miski läks valesti"
|
|
309
310
|
|
|
310
|
-
#: lib/tools.js:
|
|
311
|
+
#: lib/tools.js:1477
|
|
311
312
|
msgid "Signature validation failed"
|
|
312
313
|
msgstr "Päringu allkirja kontroll ebaõnnestus"
|
|
313
314
|
|
|
314
|
-
#: lib/tools.js:
|
|
315
|
+
#: lib/tools.js:1486 lib/tools.js:1491
|
|
315
316
|
msgid "Invalid or expired account setup URL"
|
|
316
317
|
msgstr "Kehtetu või aegunud konto seadistamise URL"
|
|
317
318
|
|
|
@@ -327,5 +328,14 @@ msgstr ""
|
|
|
327
328
|
"Jätkamiseks kasutage oma konto turvaliseks ühendamiseks nuppu \"Sign in with "
|
|
328
329
|
"Microsoft\"."
|
|
329
330
|
|
|
331
|
+
#: lib/ui-routes/account-routes.js:728 lib/ui-routes/account-routes.js:995
|
|
332
|
+
msgid "Couldn't set up account. Try again."
|
|
333
|
+
msgstr "Kontot ei õnnestunud luua. Proovi uuesti."
|
|
334
|
+
|
|
335
|
+
#, fuzzy
|
|
336
|
+
#~| msgid "Failed to process request"
|
|
337
|
+
#~ msgid "Couldn't process request. Try again."
|
|
338
|
+
#~ msgstr "Päringu töötlemine ebaõnnestus"
|
|
339
|
+
|
|
330
340
|
#~ msgid "Unknown OAuth provider"
|
|
331
341
|
#~ msgstr "Tundmatu OAuth teenus"
|
package/translations/fr.mo
CHANGED
|
Binary file
|