@bigbinary/neeto-email-delivery-frontend 1.0.13 → 1.0.15
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/README.md +30 -8
- package/app/javascript/src/translations/ar.json +24 -0
- package/app/javascript/src/translations/bg.json +24 -0
- package/app/javascript/src/translations/ca.json +24 -0
- package/app/javascript/src/translations/cs.json +24 -0
- package/app/javascript/src/translations/da.json +24 -0
- package/app/javascript/src/translations/de.json +24 -0
- package/app/javascript/src/translations/es-MX.json +24 -0
- package/app/javascript/src/translations/es.json +24 -0
- package/app/javascript/src/translations/et.json +24 -0
- package/app/javascript/src/translations/fi.json +24 -0
- package/app/javascript/src/translations/fil.json +24 -0
- package/app/javascript/src/translations/fr.json +24 -0
- package/app/javascript/src/translations/he.json +24 -0
- package/app/javascript/src/translations/hi.json +24 -0
- package/app/javascript/src/translations/hr.json +24 -0
- package/app/javascript/src/translations/id.json +24 -0
- package/app/javascript/src/translations/it.json +24 -0
- package/app/javascript/src/translations/ja.json +24 -0
- package/app/javascript/src/translations/ko.json +24 -0
- package/app/javascript/src/translations/nl.json +24 -0
- package/app/javascript/src/translations/pl.json +24 -0
- package/app/javascript/src/translations/pt-BR.json +24 -0
- package/app/javascript/src/translations/pt.json +24 -0
- package/app/javascript/src/translations/ro.json +24 -0
- package/app/javascript/src/translations/ru.json +24 -0
- package/app/javascript/src/translations/sk.json +24 -0
- package/app/javascript/src/translations/sl.json +24 -0
- package/app/javascript/src/translations/sv.json +24 -0
- package/app/javascript/src/translations/th.json +24 -0
- package/app/javascript/src/translations/tr.json +24 -0
- package/app/javascript/src/translations/uk.json +24 -0
- package/app/javascript/src/translations/vi.json +24 -0
- package/app/javascript/src/translations/zh-CN.json +24 -0
- package/app/javascript/src/translations/zh-TW.json +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -86,16 +86,11 @@ end
|
|
|
86
86
|
NeetoEmailDeliveryEngine.owner_class = "Form"
|
|
87
87
|
```
|
|
88
88
|
|
|
89
|
-
8. Override the `load_owner` private method
|
|
90
|
-
|
|
91
|
-
- app/overrides/controllers/neeto_email_delivery_engine/integrations/sparkpost_domains_controller_override.rb
|
|
92
|
-
- app/overrides/controllers/neeto_email_delivery_engine/gmail_controller_override.rb
|
|
93
|
-
- app/overrides/controllers/neeto_email_delivery_engine/outlook_controller_override.rb
|
|
94
|
-
|
|
95
|
-
Example:
|
|
89
|
+
8. Override the `load_owner` private method for the base controller.
|
|
96
90
|
|
|
97
91
|
```ruby
|
|
98
|
-
|
|
92
|
+
# app/overrides/controllers/neeto_email_delivery_engine/base_controller_override.rb
|
|
93
|
+
NeetoEmailDeliveryEngine::Api::V1::BaseController.class_eval do
|
|
99
94
|
|
|
100
95
|
private
|
|
101
96
|
def load_owner
|
|
@@ -110,6 +105,7 @@ end
|
|
|
110
105
|
|
|
111
106
|
- app/overrides/services/neeto_email_delivery_engine/gmail/send_email_service_override.rb
|
|
112
107
|
- app/overrides/services/neeto_email_delivery_engine/outlook/send_email_service_override.rb
|
|
108
|
+
- app/overrides/services/neeto_email_delivery_engine/smtp/send_email_service_override.rb
|
|
113
109
|
|
|
114
110
|
Example:
|
|
115
111
|
|
|
@@ -173,6 +169,32 @@ sparkpost:
|
|
|
173
169
|
routing /neetoemaildelivery/i => "neeto_email_delivery_engine/inbound"
|
|
174
170
|
```
|
|
175
171
|
|
|
172
|
+
16. Override `skip_rate_limits?` for `NeetoRateLimitEngine::MailDeliveryJob` to
|
|
173
|
+
skip rate limiting if user has their SMTP integration configured.
|
|
174
|
+
|
|
175
|
+
```ruby
|
|
176
|
+
# app/overrides/neeto_rate_limit_engine/jobs/mail_delivery_job_override.rb
|
|
177
|
+
NeetoRateLimitEngine::MailDeliveryJob.class_eval do
|
|
178
|
+
|
|
179
|
+
private
|
|
180
|
+
|
|
181
|
+
def skip_rate_limits?
|
|
182
|
+
is_smtp_email_job?
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
def is_smtp_email_job?
|
|
186
|
+
return false if params[:delivery_account].blank?
|
|
187
|
+
|
|
188
|
+
account_klass, account_id = params[:delivery_account].values_at(:klass, :id)
|
|
189
|
+
delivery_account = account_klass.constantize.find_by(id: account_id)
|
|
190
|
+
|
|
191
|
+
delivery_account.present? &&
|
|
192
|
+
delivery_account.is_a?(NeetoEmailDeliveryEngine::SmtpAccount) &&
|
|
193
|
+
delivery_account.active?
|
|
194
|
+
end
|
|
195
|
+
end
|
|
196
|
+
```
|
|
197
|
+
|
|
176
198
|
### Frontend package
|
|
177
199
|
|
|
178
200
|
#### Installation
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "عملية التحقق جارية. قد يستغرق نشر سجلات DNS ما يصل إلى 24 ساعة.",
|
|
83
83
|
"domainDisconnected": "تم فصل النطاق بنجاح!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "قم بإضافة تفاصيل خادم SMTP الخاص بك بحيث يتم إرسال جميع رسائل البريد الإلكتروني من مزود SMTP الخاص بك وليس من Neeto.",
|
|
89
|
+
"connectSmtp": "اتصال بـ SMTP",
|
|
90
|
+
"smtpConfigured": "تم تكوين SMTP لإرسال رسائل البريد الإلكتروني.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "إعداد SMTP لرسائل البريد الإلكتروني الصادرة",
|
|
93
|
+
"saveAndActivate": "حفظ وتفعيل",
|
|
94
|
+
"note": "ملاحظة: تأكد من أن بيانات اعتماد SMTP التي تقدمها لديها إذن لإرسال رسائل البريد الإلكتروني من البريد الإلكتروني المconfigured.",
|
|
95
|
+
"hostLabel": "خادم SMTP",
|
|
96
|
+
"portLabel": "منفذ SMTP",
|
|
97
|
+
"usernameLabel": "اسم المستخدم",
|
|
98
|
+
"passwordLabel": "كلمة المرور",
|
|
99
|
+
"emailLabel": "البريد الإلكتروني",
|
|
100
|
+
"encryptionLabel": "تشفير",
|
|
101
|
+
"noneLabel": "لا شيء",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "اسم العرض",
|
|
105
|
+
"disconnect": "فصل SMTP",
|
|
106
|
+
"requiredField": "{{field}} مطلوب",
|
|
107
|
+
"emailInvalid": "البريد الإلكتروني غير صالح"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Проверка в процес. Разпространението на DNS записи може да отнеме до 24 часа.",
|
|
83
83
|
"domainDisconnected": "Домейнът е успешно прекъснат!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Добавете детайлите на вашия SMTP сървър, така че всички имейли да се изпращат от вашия SMTP доставчик, а не от Neeto.",
|
|
89
|
+
"connectSmtp": "Свържете SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP е конфигуриран за изпращане на имейли.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Настройка на SMTP за изходящи имейли",
|
|
93
|
+
"saveAndActivate": "Запазване & активиране",
|
|
94
|
+
"note": "Забележка: Уверете се, че предоставените SMTP идентификационни данни имат разрешение да изпращат имейли от конфигурирания имейл.",
|
|
95
|
+
"hostLabel": "SMTP хост",
|
|
96
|
+
"portLabel": "SMTP порт",
|
|
97
|
+
"usernameLabel": "Потребителско име",
|
|
98
|
+
"passwordLabel": "Парола",
|
|
99
|
+
"emailLabel": "Имейл",
|
|
100
|
+
"encryptionLabel": "Шифроване",
|
|
101
|
+
"noneLabel": "Без",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Показвано име",
|
|
105
|
+
"disconnect": "Отключете SMTP",
|
|
106
|
+
"requiredField": "{{field}} е задължително",
|
|
107
|
+
"emailInvalid": "Невалиден имейл"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verificació en curs. La propagació dels registres DNS pot trigar fins a 24 hores.",
|
|
83
83
|
"domainDisconnected": "Domini desconnectat correctament!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Afegeix els detalls del teu servidor SMTP perquè tots els correus electrònics s'enviïn des del teu proveïdor SMTP i no des de Neeto.",
|
|
89
|
+
"connectSmtp": "Connectar SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP està configurat per enviar correus electrònics.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configura SMTP per a correus electrònics sortints",
|
|
93
|
+
"saveAndActivate": "Desar & activar",
|
|
94
|
+
"note": "Nota: Assegura't que les credencials SMTP que proporcionis tinguin permís per enviar correus electrònics des del correu electrònic configurat.",
|
|
95
|
+
"hostLabel": "Amfitrió SMTP",
|
|
96
|
+
"portLabel": "Port SMTP",
|
|
97
|
+
"usernameLabel": "Nom d'usuari",
|
|
98
|
+
"passwordLabel": "Contrasenya",
|
|
99
|
+
"emailLabel": "Correu electrònic",
|
|
100
|
+
"encryptionLabel": "Encriptació",
|
|
101
|
+
"noneLabel": "Cap",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nom a mostrar",
|
|
105
|
+
"disconnect": "Desconnectar SMTP",
|
|
106
|
+
"requiredField": "{{field}} és obligatori",
|
|
107
|
+
"emailInvalid": "Correu electrònic invàlid"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Ověření probíhá. Šíření DNS může trvat až 24 hodin.",
|
|
83
83
|
"domainDisconnected": "Doména byla úspěšně odpojena!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Přidejte údaje o vašem SMTP serveru, aby všechny e-maily byly odesílány od vašeho poskytovatele SMTP a ne od Neeto.",
|
|
89
|
+
"connectSmtp": "Připojit SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP je nakonfigurováno pro odesílání e-mailů.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Nastavit SMTP pro odchozí e-maily",
|
|
93
|
+
"saveAndActivate": "Uložit a aktivovat",
|
|
94
|
+
"note": "Poznámka: Zajistěte, aby měly poskytnuté SMTP přihlašovací údaje oprávnění k odesílání e-mailů z konfigurované e-mailové adresy.",
|
|
95
|
+
"hostLabel": "SMTP hostitel",
|
|
96
|
+
"portLabel": "SMTP port",
|
|
97
|
+
"usernameLabel": "Uživatelské jméno",
|
|
98
|
+
"passwordLabel": "Heslo",
|
|
99
|
+
"emailLabel": "E-mail",
|
|
100
|
+
"encryptionLabel": "Šifrování",
|
|
101
|
+
"noneLabel": "Žádné",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Zobrazované jméno",
|
|
105
|
+
"disconnect": "Odpojit SMTP",
|
|
106
|
+
"requiredField": "{{field}} je vyžadováno",
|
|
107
|
+
"emailInvalid": "Neplatný e-mail"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verifikation er i gang. DNS-poster propagation kan tage op til 24 timer.",
|
|
83
83
|
"domainDisconnected": "Domæne afbrudt med succes!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Tilføj dine SMTP-serveroplysninger, så alle e-mails sendes fra din SMTP-udbyder og ikke fra Neeto.",
|
|
89
|
+
"connectSmtp": "Opret forbindelse til SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP er konfigureret til at sende e-mails.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Opsæt SMTP til udgående e-mails",
|
|
93
|
+
"saveAndActivate": "Gem & aktiver",
|
|
94
|
+
"note": "Bemærk: Sørg for, at de SMTP-legitimationsoplysninger, du angiver, har tilladelse til at sende e-mails fra den konfigurerede afsendermin.",
|
|
95
|
+
"hostLabel": "SMTP-vært",
|
|
96
|
+
"portLabel": "SMTP-port",
|
|
97
|
+
"usernameLabel": "Brugernavn",
|
|
98
|
+
"passwordLabel": "Adgangskode",
|
|
99
|
+
"emailLabel": "E-mail",
|
|
100
|
+
"encryptionLabel": "Kryptering",
|
|
101
|
+
"noneLabel": "Ingen",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Visningsnavn",
|
|
105
|
+
"disconnect": "Afbrud SMTP",
|
|
106
|
+
"requiredField": "{{field}} er påkrævet",
|
|
107
|
+
"emailInvalid": "Ugyldig e-mail"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Überprüfung im Gange. Die Propagation der DNS-Einträge kann bis zu 24 Stunden dauern.",
|
|
83
83
|
"domainDisconnected": "Domain erfolgreich getrennt!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Fügen Sie die Details Ihres SMTP-Servers hinzu, damit alle E-Mails von Ihrem SMTP-Anbieter und nicht von Neeto gesendet werden.",
|
|
89
|
+
"connectSmtp": "SMTP verbinden",
|
|
90
|
+
"smtpConfigured": "SMTP ist konfiguriert, um E-Mails zu senden.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "SMTP für ausgehende E-Mails einrichten",
|
|
93
|
+
"saveAndActivate": "Speichern & aktivieren",
|
|
94
|
+
"note": "Hinweis: Stellen Sie sicher, dass die von Ihnen angegebenen SMTP-Anmeldeinformationen die Berechtigung haben, E-Mails von der konfigurierten Absender-E-Mail zu senden.",
|
|
95
|
+
"hostLabel": "SMTP-Host",
|
|
96
|
+
"portLabel": "SMTP-Port",
|
|
97
|
+
"usernameLabel": "Benutzername",
|
|
98
|
+
"passwordLabel": "Passwort",
|
|
99
|
+
"emailLabel": "E-Mail",
|
|
100
|
+
"encryptionLabel": "Verschlüsselung",
|
|
101
|
+
"noneLabel": "Keine",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Anzeigename",
|
|
105
|
+
"disconnect": "SMTP trennen",
|
|
106
|
+
"requiredField": "{{field}} ist erforderlich",
|
|
107
|
+
"emailInvalid": "Ungültige E-Mail"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verificación en progreso. La propagación de los registros DNS puede tardar hasta 24 horas.",
|
|
83
83
|
"domainDisconnected": "¡Dominio desconectado con éxito!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Agrega los detalles de tu servidor SMTP para que todos los correos electrónicos se envíen desde tu proveedor de SMTP y no desde Neeto.",
|
|
89
|
+
"connectSmtp": "Conectar SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP está configurado para enviar correos electrónicos.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configurar SMTP para correos salientes",
|
|
93
|
+
"saveAndActivate": "Guardar & activar",
|
|
94
|
+
"note": "Nota: Asegúrate de que las credenciales de SMTP que proporcionas tengan permiso para enviar correos electrónicos desde el correo electrónico configurado.",
|
|
95
|
+
"hostLabel": "Host SMTP",
|
|
96
|
+
"portLabel": "Puerto SMTP",
|
|
97
|
+
"usernameLabel": "Nombre de usuario",
|
|
98
|
+
"passwordLabel": "Contraseña",
|
|
99
|
+
"emailLabel": "Correo electrónico",
|
|
100
|
+
"encryptionLabel": "Cifrado",
|
|
101
|
+
"noneLabel": "Ninguno",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nombre para mostrar",
|
|
105
|
+
"disconnect": "Desconectar SMTP",
|
|
106
|
+
"requiredField": "{{field}} es requerido",
|
|
107
|
+
"emailInvalid": "Correo electrónico inválido"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verificación en progreso. La propagación de los registros DNS puede tardar hasta 24 horas.",
|
|
83
83
|
"domainDisconnected": "¡Dominio desconectado exitosamente!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Agrega los detalles de tu servidor SMTP para que todos los correos se envíen desde tu proveedor SMTP y no desde Neeto.",
|
|
89
|
+
"connectSmtp": "Conectar SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP está configurado para enviar correos electrónicos.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configurar SMTP para correos salientes",
|
|
93
|
+
"saveAndActivate": "Guardar y activar",
|
|
94
|
+
"note": "Nota: Asegúrate de que las credenciales SMTP que proporciones tengan permiso para enviar correos electrónicos desde la dirección de correo configurada.",
|
|
95
|
+
"hostLabel": "Servidor SMTP",
|
|
96
|
+
"portLabel": "Puerto SMTP",
|
|
97
|
+
"usernameLabel": "Nombre de usuario",
|
|
98
|
+
"passwordLabel": "Contraseña",
|
|
99
|
+
"emailLabel": "Correo electrónico",
|
|
100
|
+
"encryptionLabel": "Cifrado",
|
|
101
|
+
"noneLabel": "Ninguno",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nombre para mostrar",
|
|
105
|
+
"disconnect": "Desconectar SMTP",
|
|
106
|
+
"requiredField": "{{field}} es requerido",
|
|
107
|
+
"emailInvalid": "Correo electrónico inválido"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Kinnitamine on pooleli. DNS-kirjete levimine võib võtta kuni 24 tundi.",
|
|
83
83
|
"domainDisconnected": "Domeen on edukalt lahti ühendatud!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Lisage oma SMTP-serveri andmed, et kõik e-kirjad saadetaks teie SMTP teenusepakkujalt, mitte Neeto poolt.",
|
|
89
|
+
"connectSmtp": "Ühenda SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP on konfigureeritud e-kirjade saatmiseks.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Konfigureeri SMTP väljuvate e-kirjade jaoks",
|
|
93
|
+
"saveAndActivate": "Salvesta & aktiveeri",
|
|
94
|
+
"note": "Märkus: veenduge, et esitatud SMTP mandaadid on õigustatud saatma e-kirju konfigureerimise kaudu.",
|
|
95
|
+
"hostLabel": "SMTP host",
|
|
96
|
+
"portLabel": "SMTP port",
|
|
97
|
+
"usernameLabel": "Kasutajanimi",
|
|
98
|
+
"passwordLabel": "Parool",
|
|
99
|
+
"emailLabel": "E-post",
|
|
100
|
+
"encryptionLabel": "Krüpteerimine",
|
|
101
|
+
"noneLabel": "Ei midagi",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Kuvamisnimi",
|
|
105
|
+
"disconnect": "Ühenda SMTP lahti",
|
|
106
|
+
"requiredField": "{{field}} on kohustuslik",
|
|
107
|
+
"emailInvalid": "Vale e-post"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Vahvistus käynnissä. DNS-tietueiden levinneisyys voi viedä jopa 24 tuntia.",
|
|
83
83
|
"domainDisconnected": "Domain irrotettu onnistuneesti!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Lisää SMTP-palvelimen tiedot, jotta kaikki sähköpostit lähetetään SMTP-palveluntarjoajaltasi eikä Neetolta.",
|
|
89
|
+
"connectSmtp": "Yhdistä SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP on konfiguroitu sähköpostien lähettämistä varten.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Määritä SMTP lähtevälle sähköpostille",
|
|
93
|
+
"saveAndActivate": "Tallenna & aktivoi",
|
|
94
|
+
"note": "Huom: Varmista, että antamasi SMTP-todennustiedot voivat lähettää sähköposteja määritetystä sähköpostista.",
|
|
95
|
+
"hostLabel": "SMTP-isäntä",
|
|
96
|
+
"portLabel": "SMTP-portti",
|
|
97
|
+
"usernameLabel": "Käyttäjätunnus",
|
|
98
|
+
"passwordLabel": "Salasana",
|
|
99
|
+
"emailLabel": "Sähköposti",
|
|
100
|
+
"encryptionLabel": "Salaus",
|
|
101
|
+
"noneLabel": "None",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Näkyvä nimi",
|
|
105
|
+
"disconnect": "Katkaise yhteys SMTP:hen",
|
|
106
|
+
"requiredField": "{{field}} on pakollinen",
|
|
107
|
+
"emailInvalid": "Virheellinen sähköposti"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Nasa proseso ng beripikasyon. Maaaring umabot ng hanggang 24 oras ang propagation ng mga DNS records.",
|
|
83
83
|
"domainDisconnected": "Matagumpay na nadiskonekta ang domain!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Idagdag ang detalye ng iyong SMTP server upang ang lahat ng mga email ay maipadala mula sa iyong provider ng SMTP at hindi mula sa Neeto.",
|
|
89
|
+
"connectSmtp": "Ikonekta ang SMTP",
|
|
90
|
+
"smtpConfigured": "Ang SMTP ay na-configure para sa pagpapadala ng mga email.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "I-set up ang SMTP para sa mga papalabas na email",
|
|
93
|
+
"saveAndActivate": "I-save & i-activate",
|
|
94
|
+
"note": "Tandaan: Tiyakin na ang mga kredensyal ng SMTP na ibinibigay mo ay may pahintulot na magpadala ng mga email mula sa nakatakdang email.",
|
|
95
|
+
"hostLabel": "SMTP host",
|
|
96
|
+
"portLabel": "SMTP port",
|
|
97
|
+
"usernameLabel": "Username",
|
|
98
|
+
"passwordLabel": "Password",
|
|
99
|
+
"emailLabel": "Email",
|
|
100
|
+
"encryptionLabel": "Encryption",
|
|
101
|
+
"noneLabel": "Wala",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Pangalan ng pagpapakita",
|
|
105
|
+
"disconnect": "Idiskonekta ang SMTP",
|
|
106
|
+
"requiredField": "{{field}} ay kinakailangan",
|
|
107
|
+
"emailInvalid": "Hindi wastong email"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Vérification en cours. La propagation des enregistrements DNS peut prendre jusqu'à 24 heures.",
|
|
83
83
|
"domainDisconnected": "Domaine déconnecté avec succès!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Ajoutez les détails de votre serveur SMTP afin que tous les e-mails soient envoyés par votre fournisseur SMTP et non par Neeto.",
|
|
89
|
+
"connectSmtp": "Connecter SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP est configuré pour l'envoi d'e-mails.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configurer SMTP pour les e-mails sortants",
|
|
93
|
+
"saveAndActivate": "Enregistrer & activer",
|
|
94
|
+
"note": "Remarque : Assurez-vous que les identifiants SMTP que vous fournissez ont la permission d'envoyer des e-mails depuis l'e-mail configuré.",
|
|
95
|
+
"hostLabel": "Hôte SMTP",
|
|
96
|
+
"portLabel": "Port SMTP",
|
|
97
|
+
"usernameLabel": "Nom d'utilisateur",
|
|
98
|
+
"passwordLabel": "Mot de passe",
|
|
99
|
+
"emailLabel": "E-mail",
|
|
100
|
+
"encryptionLabel": "Chiffrement",
|
|
101
|
+
"noneLabel": "Aucun",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nom d'affichage",
|
|
105
|
+
"disconnect": "Déconnecter SMTP",
|
|
106
|
+
"requiredField": "{{field}} est requis",
|
|
107
|
+
"emailInvalid": "E-mail invalide"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -79,6 +79,30 @@
|
|
|
79
79
|
"verificationPending": "תהליך האימות נמצא בעבודה. הפצת רשומות ה-DNS עשויה לקחת עד 24 שעות.",
|
|
80
80
|
"domainDisconnected": "הדומיין נותק בהצלחה!"
|
|
81
81
|
}
|
|
82
|
+
},
|
|
83
|
+
"smtp": {
|
|
84
|
+
"title": "SMTP",
|
|
85
|
+
"description": "הוסף את פרטי שרת ה-SMTP שלך כך שכל המיילים יישלחו מהספק SMTP שלך ולא מ-Neeto.",
|
|
86
|
+
"connectSmtp": "חבר SMTP",
|
|
87
|
+
"smtpConfigured": "SMTP מוגדר לשליחת מיילים.",
|
|
88
|
+
"setup": {
|
|
89
|
+
"title": "הגדר SMTP עבור מיילים יוצאים",
|
|
90
|
+
"saveAndActivate": "שמור & הפעל",
|
|
91
|
+
"note": "הערה: ודא שהאישורים של ה-SMTP שאתה מספק מוגבלים לשליחת מיילים מהכתובת המוגדרת.",
|
|
92
|
+
"hostLabel": "מארח SMTP",
|
|
93
|
+
"portLabel": "פורט SMTP",
|
|
94
|
+
"usernameLabel": "שם משתמש",
|
|
95
|
+
"passwordLabel": "סיסמה",
|
|
96
|
+
"emailLabel": "מייל",
|
|
97
|
+
"encryptionLabel": "הצפנה",
|
|
98
|
+
"noneLabel": "אין",
|
|
99
|
+
"starttlsLabel": "StartTLS",
|
|
100
|
+
"sslLabel": "SSL",
|
|
101
|
+
"displayNameLabel": "שם תצוגה",
|
|
102
|
+
"disconnect": "נתק SMTP",
|
|
103
|
+
"requiredField": "{{field}} נדרש",
|
|
104
|
+
"emailInvalid": "מייל לא חוקי"
|
|
105
|
+
}
|
|
82
106
|
}
|
|
83
107
|
}
|
|
84
108
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "सत्यापन प्रगति में है। DNS रिकॉर्ड फैलने में 24 घंटे तक का समय लग सकता है।",
|
|
83
83
|
"domainDisconnected": "डोमेन सफलतापूर्वक अलग किया गया!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "अपने SMTP सर्वर विवरण जोड़ें ताकि सभी ईमेल आपके SMTP प्रदाता से भेजे जाएं और न कि Neeto से।",
|
|
89
|
+
"connectSmtp": "SMTP से कनेक्ट करें",
|
|
90
|
+
"smtpConfigured": "ईमेल भेजने के लिए SMTP कॉन्फ़िगर किया गया है।",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "आउटगोइंग ईमेल के लिए SMTP सेटअप करें",
|
|
93
|
+
"saveAndActivate": "सहेजें & सक्रिय करें",
|
|
94
|
+
"note": "नोट: सुनिश्चित करें कि आप जो SMTP क्रेडेंशियल प्रदान करते हैं, उनमें कॉन्फ़िगर की गई ईमेल से ईमेल भेजने की अनुमति है।",
|
|
95
|
+
"hostLabel": "SMTP होस्ट",
|
|
96
|
+
"portLabel": "SMTP पोर्ट",
|
|
97
|
+
"usernameLabel": "उपयोगकर्ता नाम",
|
|
98
|
+
"passwordLabel": "पासवर्ड",
|
|
99
|
+
"emailLabel": "ईमेल",
|
|
100
|
+
"encryptionLabel": "एन्क्रिप्शन",
|
|
101
|
+
"noneLabel": "कोई नहीं",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "प्रदर्शित नाम",
|
|
105
|
+
"disconnect": "SMTP डिस्कनेक्ट करें",
|
|
106
|
+
"requiredField": "{{field}} आवश्यक है",
|
|
107
|
+
"emailInvalid": "अमान्य ईमेल"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Provjera u tijeku. Propagacija DNS zapisa može potrajati do 24 sata.",
|
|
83
83
|
"domainDisconnected": "Domena uspješno prekinuta!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Dodajte podatke o svom SMTP poslužitelju kako bi svi e-mailovi bili poslani od vašeg SMTP pružatelja, a ne iz Neeta.",
|
|
89
|
+
"connectSmtp": "Poveži SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP je konfiguriran za slanje e-maile.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Postavljanje SMTP za odlazne e-maile",
|
|
93
|
+
"saveAndActivate": "Spremi & aktiviraj",
|
|
94
|
+
"note": "Napomena: Osigurajte da SMTP vjerodajnice koje pružate imaju dozvolu za slanje e-mailova s konfigurirane e-adrese.",
|
|
95
|
+
"hostLabel": "SMTP poslužitelj",
|
|
96
|
+
"portLabel": "SMTP port",
|
|
97
|
+
"usernameLabel": "Korisničko ime",
|
|
98
|
+
"passwordLabel": "Lozinka",
|
|
99
|
+
"emailLabel": "E-mail",
|
|
100
|
+
"encryptionLabel": "Enkripcija",
|
|
101
|
+
"noneLabel": "Nijedna",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Prikazno ime",
|
|
105
|
+
"disconnect": "Prekid veze s SMTP-om",
|
|
106
|
+
"requiredField": "{{field}} je obavezan",
|
|
107
|
+
"emailInvalid": "Nevažeći e-mail"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verifikasi sedang berlangsung. Propagasi catatan DNS dapat memakan waktu hingga 24 jam.",
|
|
83
83
|
"domainDisconnected": "Domain berhasil diputuskan sambungannya!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Tambahkan detail server SMTP Anda sehingga semua email dikirim dari penyedia SMTP Anda dan bukan dari Neeto.",
|
|
89
|
+
"connectSmtp": "Sambungkan SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP telah dikonfigurasi untuk mengirim email.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Siapkan SMTP untuk email keluar",
|
|
93
|
+
"saveAndActivate": "Simpan & aktifkan",
|
|
94
|
+
"note": "Catatan: Pastikan bahwa kredensial SMTP yang Anda berikan memiliki izin untuk mengirim email dari email pengirim yang dikonfigurasi.",
|
|
95
|
+
"hostLabel": "Host SMTP",
|
|
96
|
+
"portLabel": "Port SMTP",
|
|
97
|
+
"usernameLabel": "Nama pengguna",
|
|
98
|
+
"passwordLabel": "Kata sandi",
|
|
99
|
+
"emailLabel": "Email",
|
|
100
|
+
"encryptionLabel": "Enkripsi",
|
|
101
|
+
"noneLabel": "Tidak ada",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nama tampilan",
|
|
105
|
+
"disconnect": "Putuskan sambungan SMTP",
|
|
106
|
+
"requiredField": "{{field}} diperlukan",
|
|
107
|
+
"emailInvalid": "Email tidak valid"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verifica in corso. La propagazione dei record DNS può richiedere fino a 24 ore.",
|
|
83
83
|
"domainDisconnected": "Dominio disconnesso con successo!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Aggiungi i dettagli del tuo server SMTP in modo che tutte le email siano inviate dal tuo provider SMTP e non da Neeto.",
|
|
89
|
+
"connectSmtp": "Collegare SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP è configurato per inviare email.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configura SMTP per le email in uscita",
|
|
93
|
+
"saveAndActivate": "Salva & attiva",
|
|
94
|
+
"note": "Nota: Assicurati che le credenziali SMTP fornite abbiano il permesso di inviare email dall'email configurata.",
|
|
95
|
+
"hostLabel": "Host SMTP",
|
|
96
|
+
"portLabel": "Porta SMTP",
|
|
97
|
+
"usernameLabel": "Nome utente",
|
|
98
|
+
"passwordLabel": "Password",
|
|
99
|
+
"emailLabel": "Email",
|
|
100
|
+
"encryptionLabel": "Crittografia",
|
|
101
|
+
"noneLabel": "Nessuno",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nome visualizzato",
|
|
105
|
+
"disconnect": "Disconnetti SMTP",
|
|
106
|
+
"requiredField": "{{field}} è obbligatorio",
|
|
107
|
+
"emailInvalid": "Email non valida"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "確認中。DNSレコードの伝播には最大24時間かかる場合があります。",
|
|
83
83
|
"domainDisconnected": "ドメインの接続が解除されました!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "すべてのメールがNeetoではなく、SMTPプロバイダーから送信されるようにSMTPサーバーの詳細を追加してください。",
|
|
89
|
+
"connectSmtp": "SMTPに接続",
|
|
90
|
+
"smtpConfigured": "SMTPはメール送信のために構成されています。",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "発信メールのためのSMTPを設定",
|
|
93
|
+
"saveAndActivate": "保存して有効化",
|
|
94
|
+
"note": "注: 提供するSMTP資格情報が、設定された送信元メールからメールを送信する権限を持っていることを確認してください。",
|
|
95
|
+
"hostLabel": "SMTPホスト",
|
|
96
|
+
"portLabel": "SMTPポート",
|
|
97
|
+
"usernameLabel": "ユーザー名",
|
|
98
|
+
"passwordLabel": "パスワード",
|
|
99
|
+
"emailLabel": "メール",
|
|
100
|
+
"encryptionLabel": "暗号化",
|
|
101
|
+
"noneLabel": "なし",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "表示名",
|
|
105
|
+
"disconnect": "SMTPの切断",
|
|
106
|
+
"requiredField": "{{field}}は必須です",
|
|
107
|
+
"emailInvalid": "無効なメール"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "인증 진행 중. DNS 레코드 전파는 최대 24시간이 걸릴 수 있습니다.",
|
|
83
83
|
"domainDisconnected": "도메인이 성공적으로 연결 해제되었습니다!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "모든 이메일이 Neeto가 아닌 귀하의 SMTP 제공업체에서 전송되도록 SMTP 서버 세부정보를 추가하세요.",
|
|
89
|
+
"connectSmtp": "SMTP 연결",
|
|
90
|
+
"smtpConfigured": "SMTP가 이메일 전송을 위해 구성되었습니다.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "발신 이메일을 위한 SMTP 설정",
|
|
93
|
+
"saveAndActivate": "저장 및 활성화",
|
|
94
|
+
"note": "참고: 제공하는 SMTP 자격 증명이 구성된 발신 이메일에서 이메일을 전송할 수 있는 권한이 있는지 확인하십시오.",
|
|
95
|
+
"hostLabel": "SMTP 호스트",
|
|
96
|
+
"portLabel": "SMTP 포트",
|
|
97
|
+
"usernameLabel": "사용자 이름",
|
|
98
|
+
"passwordLabel": "비밀번호",
|
|
99
|
+
"emailLabel": "이메일",
|
|
100
|
+
"encryptionLabel": "암호화",
|
|
101
|
+
"noneLabel": "없음",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "표시 이름",
|
|
105
|
+
"disconnect": "SMTP 연결 끊기",
|
|
106
|
+
"requiredField": "{{field}}는 필수입니다",
|
|
107
|
+
"emailInvalid": "잘못된 이메일"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verificatie in uitvoering. DNS-records propagatie kan tot 24 uur duren.",
|
|
83
83
|
"domainDisconnected": "Domein succesvol ontkoppeld!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Voeg uw SMTP-servergegevens toe zodat alle e-mails worden verzonden vanuit uw SMTP-provider en niet vanuit Neeto.",
|
|
89
|
+
"connectSmtp": "Verbind SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP is geconfigureerd voor het verzenden van e-mails.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Stel SMTP in voor uitgaande e-mails",
|
|
93
|
+
"saveAndActivate": "Opslaan & activeren",
|
|
94
|
+
"note": "Opmerking: Zorg ervoor dat de SMTP-gegevens die u opgeeft toestemming hebben om e-mails te verzenden vanaf het geconfigureerde e-mailadres.",
|
|
95
|
+
"hostLabel": "SMTP-host",
|
|
96
|
+
"portLabel": "SMTP-poort",
|
|
97
|
+
"usernameLabel": "Gebruikersnaam",
|
|
98
|
+
"passwordLabel": "Wachtwoord",
|
|
99
|
+
"emailLabel": "E-mail",
|
|
100
|
+
"encryptionLabel": "Versleuteling",
|
|
101
|
+
"noneLabel": "Geen",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Weergavenaam",
|
|
105
|
+
"disconnect": "Ontkoppel SMTP",
|
|
106
|
+
"requiredField": "{{field}} is vereist",
|
|
107
|
+
"emailInvalid": "Ongeldig e-mailadres"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Weryfikacja w toku. Propagacja rekordów DNS może potrwać do 24 godzin.",
|
|
83
83
|
"domainDisconnected": "Domena została pomyślnie rozłączona!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Dodaj dane swojego serwera SMTP, aby wszystkie e-maile były wysyłane z dostawcy SMTP, a nie z Neeto.",
|
|
89
|
+
"connectSmtp": "Połącz z SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP jest skonfigurowane do wysyłania e-maili.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Skonfiguruj SMTP dla wychodzących e-maili",
|
|
93
|
+
"saveAndActivate": "Zapisz & aktywuj",
|
|
94
|
+
"note": "Uwaga: Upewnij się, że dane uwierzytelniające SMTP, które podajesz, mają uprawnienia do wysyłania e-maili z skonfigurowanego adresu e-mail.",
|
|
95
|
+
"hostLabel": "Host SMTP",
|
|
96
|
+
"portLabel": "Port SMTP",
|
|
97
|
+
"usernameLabel": "Nazwa użytkownika",
|
|
98
|
+
"passwordLabel": "Hasło",
|
|
99
|
+
"emailLabel": "E-mail",
|
|
100
|
+
"encryptionLabel": "Szyfrowanie",
|
|
101
|
+
"noneLabel": "Brak",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nazwa wyświetlana",
|
|
105
|
+
"disconnect": "Rozłącz SMTP",
|
|
106
|
+
"requiredField": "{{field}} jest wymagane",
|
|
107
|
+
"emailInvalid": "Nieprawidłowy e-mail"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verificação em andamento. A propagação dos registros DNS pode levar até 24 horas.",
|
|
83
83
|
"domainDisconnected": "Domínio desconectado com sucesso!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Adicione os detalhes do seu servidor SMTP para que todos os e-mails sejam enviados pelo seu provedor SMTP e não pelo Neeto.",
|
|
89
|
+
"connectSmtp": "Conectar SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP está configurado para enviar e-mails.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configurar SMTP para e-mails de saída",
|
|
93
|
+
"saveAndActivate": "Salvar & ativar",
|
|
94
|
+
"note": "Observação: certifique-se de que as credenciais SMTP fornecidas têm permissão para enviar e-mails do e-mail configurado.",
|
|
95
|
+
"hostLabel": "Host SMTP",
|
|
96
|
+
"portLabel": "Porta SMTP",
|
|
97
|
+
"usernameLabel": "Nome de usuário",
|
|
98
|
+
"passwordLabel": "Senha",
|
|
99
|
+
"emailLabel": "E-mail",
|
|
100
|
+
"encryptionLabel": "Criptografia",
|
|
101
|
+
"noneLabel": "Nenhuma",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nome exibido",
|
|
105
|
+
"disconnect": "Desconectar SMTP",
|
|
106
|
+
"requiredField": "{{field}} é obrigatório",
|
|
107
|
+
"emailInvalid": "E-mail inválido"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verificação em andamento. A propagação dos registros DNS pode levar até 24 horas.",
|
|
83
83
|
"domainDisconnected": "Domínio desconectado com sucesso!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Adicione os detalhes do seu servidor SMTP para que todos os e-mails sejam enviados do seu provedor SMTP e não do Neeto.",
|
|
89
|
+
"connectSmtp": "Conectar SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP está configurado para enviar e-mails.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configurar SMTP para e-mails de saída",
|
|
93
|
+
"saveAndActivate": "Salvar & ativar",
|
|
94
|
+
"note": "Nota: Certifique-se de que as credenciais SMTP que você fornecer tenham permissão para enviar e-mails do e-mail configurado.",
|
|
95
|
+
"hostLabel": "Host SMTP",
|
|
96
|
+
"portLabel": "Porta SMTP",
|
|
97
|
+
"usernameLabel": "Nome de usuário",
|
|
98
|
+
"passwordLabel": "Senha",
|
|
99
|
+
"emailLabel": "E-mail",
|
|
100
|
+
"encryptionLabel": "Criptografia",
|
|
101
|
+
"noneLabel": "Nenhum",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nome a ser exibido",
|
|
105
|
+
"disconnect": "Desconectar SMTP",
|
|
106
|
+
"requiredField": "{{field}} é obrigatório",
|
|
107
|
+
"emailInvalid": "E-mail inválido"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verificarea este în curs de desfășurare. Propagarea înregistrărilor DNS poate dura până la 24 de ore.",
|
|
83
83
|
"domainDisconnected": "Domeniul deconectat cu succes!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Adăugați detaliile serverului dvs. SMTP astfel încât toate emailurile să fie trimise de la furnizorul dvs. SMTP și nu de la Neeto.",
|
|
89
|
+
"connectSmtp": "Conectare SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP este configurat pentru a trimite emailuri.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configurare SMTP pentru emailuri de ieșire",
|
|
93
|
+
"saveAndActivate": "Salvați & activați",
|
|
94
|
+
"note": "Notă: Asigurați-vă că acreditivile SMTP pe care le oferiți au permisiunea de a trimite emailuri de la adresa de email configurată.",
|
|
95
|
+
"hostLabel": "Host SMTP",
|
|
96
|
+
"portLabel": "Port SMTP",
|
|
97
|
+
"usernameLabel": "Nume utilizator",
|
|
98
|
+
"passwordLabel": "Parolă",
|
|
99
|
+
"emailLabel": "Email",
|
|
100
|
+
"encryptionLabel": "Criptare",
|
|
101
|
+
"noneLabel": "Niciuna",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nume de afișare",
|
|
105
|
+
"disconnect": "Deconectați SMTP",
|
|
106
|
+
"requiredField": "{{field}} este necesar",
|
|
107
|
+
"emailInvalid": "Email invalid"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Проверка в процессе. Распространение записей DNS может занять до 24 часов.",
|
|
83
83
|
"domainDisconnected": "Домен успешно отключен!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Добавьте данные вашего SMTP-сервера, чтобы все электронные письма отправлялись от вашего SMTP-поставщика, а не от Neeto.",
|
|
89
|
+
"connectSmtp": "Подключить SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP настроен для отправки писем.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Настройка SMTP для исходящих писем",
|
|
93
|
+
"saveAndActivate": "Сохранить & активировать",
|
|
94
|
+
"note": "Примечание: Убедитесь, что предоставленные вами учетные данные SMTP имеют разрешение на отправку писем с указанного электронного адреса.",
|
|
95
|
+
"hostLabel": "SMTP хост",
|
|
96
|
+
"portLabel": "SMTP порт",
|
|
97
|
+
"usernameLabel": "Имя пользователя",
|
|
98
|
+
"passwordLabel": "Пароль",
|
|
99
|
+
"emailLabel": "Электронная почта",
|
|
100
|
+
"encryptionLabel": "Шифрование",
|
|
101
|
+
"noneLabel": "Нет",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Отображаемое имя",
|
|
105
|
+
"disconnect": "Отключить SMTP",
|
|
106
|
+
"requiredField": "{{field}} обязателен",
|
|
107
|
+
"emailInvalid": "Недопустимый адрес электронной почты"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Overenie prebieha. Propagácia DNS záznamov môže trvať až 24 hodín.",
|
|
83
83
|
"domainDisconnected": "Doména bola úspešne odpojená!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Pridajte údaje o svojom SMTP serveri, aby sa všetky e-maily odosielali z vášho poskytovateľa SMTP, a nie z Neeto.",
|
|
89
|
+
"connectSmtp": "Pripojiť SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP je nakonfigurované na odosielanie e-mailov.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Nastavenie SMTP pre odchádzajúce e-maily",
|
|
93
|
+
"saveAndActivate": "Uložiť & aktivovať",
|
|
94
|
+
"note": "Poznámka: Uistite sa, že poskytnuté SMTP poverenia majú povolenie na odosielanie e-mailov z nakonfigurovanej e-mailovej adresy.",
|
|
95
|
+
"hostLabel": "SMTP hostiteľ",
|
|
96
|
+
"portLabel": "SMTP port",
|
|
97
|
+
"usernameLabel": "Používateľské meno",
|
|
98
|
+
"passwordLabel": "Heslo",
|
|
99
|
+
"emailLabel": "E-mail",
|
|
100
|
+
"encryptionLabel": "Šifrovanie",
|
|
101
|
+
"noneLabel": "Žiadne",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Zobrazené meno",
|
|
105
|
+
"disconnect": "Odpojiť SMTP",
|
|
106
|
+
"requiredField": "{{field}} je povinné",
|
|
107
|
+
"emailInvalid": "Neplatný e-mail"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Preverjanje poteka. Širitev DNS zapisov lahko traja do 24 ur.",
|
|
83
83
|
"domainDisconnected": "Domena je bila uspešno odklopljena!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Dodajte podatke o vašem SMTP strežniku, da se vse e-pošte pošiljajo iz vašega ponudnika SMTP in ne iz Neeta.",
|
|
89
|
+
"connectSmtp": "Poveži SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP je konfiguriran za pošiljanje e-pošte.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Nastavite SMTP za odhodne e-pošte",
|
|
93
|
+
"saveAndActivate": "Shrani & aktiviraj",
|
|
94
|
+
"note": "Opomba: Poskrbite, da imajo poverilnice SMTP, ki jih posredujete, dovoljenje za pošiljanje e-poštnih sporočil iz konfigurirane e-pošte.",
|
|
95
|
+
"hostLabel": "SMTP gostitelj",
|
|
96
|
+
"portLabel": "SMTP vrata",
|
|
97
|
+
"usernameLabel": "Uporabniško ime",
|
|
98
|
+
"passwordLabel": "Geslo",
|
|
99
|
+
"emailLabel": "E-pošta",
|
|
100
|
+
"encryptionLabel": "Šifriranje",
|
|
101
|
+
"noneLabel": "Brez",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Ime za prikaz",
|
|
105
|
+
"disconnect": "Odklopi SMTP",
|
|
106
|
+
"requiredField": "{{field}} je obvezno",
|
|
107
|
+
"emailInvalid": "Neveljavna e-pošta"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Verifiering pågår. Spridningen av DNS-poster kan ta upp till 24 timmar.",
|
|
83
83
|
"domainDisconnected": "Domän bortkopplad framgångsrikt!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Lägg till dina SMTP-serveruppgifter så att alla e-postmeddelanden skickas från din SMTP-leverantör och inte från Neeto.",
|
|
89
|
+
"connectSmtp": "Anslut SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP är konfigurerat för att skicka e-post.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Konfigurera SMTP för utgående e-post",
|
|
93
|
+
"saveAndActivate": "Spara & aktivera",
|
|
94
|
+
"note": "Observera: Se till att de SMTP-uppgifter du anger har behörighet att skicka e-post från den konfigurerade avsändaradressen.",
|
|
95
|
+
"hostLabel": "SMTP-värd",
|
|
96
|
+
"portLabel": "SMTP-port",
|
|
97
|
+
"usernameLabel": "Användarnamn",
|
|
98
|
+
"passwordLabel": "Lösenord",
|
|
99
|
+
"emailLabel": "E-post",
|
|
100
|
+
"encryptionLabel": "Kryptering",
|
|
101
|
+
"noneLabel": "Ingen",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Visningsnamn",
|
|
105
|
+
"disconnect": "Koppla bort SMTP",
|
|
106
|
+
"requiredField": "{{field}} krävs",
|
|
107
|
+
"emailInvalid": "Ogiltig e-post"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "การตรวจสอบกำลังดำเนินการ การแพร่กระจายของระเบียน DNS อาจใช้เวลาสูงสุดถึง 24 ชั่วโมง.",
|
|
83
83
|
"domainDisconnected": "ยกเลิกการเชื่อมต่อโดเมนสำเร็จ!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "เพิ่มรายละเอียดเซิร์ฟเวอร์ SMTP ของคุณเพื่อให้แน่ใจว่าอีเมลทั้งหมดถูกส่งจากผู้ให้บริการ SMTP ของคุณและไม่ใช่จาก Neeto。",
|
|
89
|
+
"connectSmtp": "เชื่อมต่อ SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP ได้รับการกำหนดค่าหมายถึงการส่งอีเมล",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "ตั้งค่า SMTP สำหรับอีเมลขาออก",
|
|
93
|
+
"saveAndActivate": "บันทึกและเปิดใช้งาน",
|
|
94
|
+
"note": "หมายเหตุ: ตรวจสอบให้แน่ใจว่าชื่อผู้ใช้ SMTP ที่คุณให้มีสิทธิ์ในการส่งอีเมลจากอีเมลที่กำหนด",
|
|
95
|
+
"hostLabel": "โฮสต์ SMTP",
|
|
96
|
+
"portLabel": "พอร์ต SMTP",
|
|
97
|
+
"usernameLabel": "ชื่อผู้ใช้",
|
|
98
|
+
"passwordLabel": "รหัสผ่าน",
|
|
99
|
+
"emailLabel": "อีเมล",
|
|
100
|
+
"encryptionLabel": "การเข้ารหัส",
|
|
101
|
+
"noneLabel": "ไม่มี",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "ชื่อการแสดงผล",
|
|
105
|
+
"disconnect": "ตัดการเชื่อมต่อ SMTP",
|
|
106
|
+
"requiredField": "{{field}} จำเป็นต้องระบุ",
|
|
107
|
+
"emailInvalid": "อีเมลไม่ถูกต้อง"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Doğrulama devam ediyor. DNS kayıtlarının yayılması 24 saate kadar sürebilir.",
|
|
83
83
|
"domainDisconnected": "Alan adı başarıyla bağlantısı kesildi!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Tüm e-postaların Neeto'dan değil, SMTP sağlayıcınızdan gönderilmesi için SMTP sunucu bilgilerinizi ekleyin.",
|
|
89
|
+
"connectSmtp": "SMTP Bağlantısı",
|
|
90
|
+
"smtpConfigured": "E-postaları göndermek için SMTP yapılandırıldı.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Giden e-postalar için SMTP'yi ayarla",
|
|
93
|
+
"saveAndActivate": "Kaydet ve etkinleştir",
|
|
94
|
+
"note": "Not: Sağladığınız SMTP kimlik bilgilerinin yapılandırılan e-posta adresinden e-posta göndermek için izni olduğundan emin olun.",
|
|
95
|
+
"hostLabel": "SMTP sunucusu",
|
|
96
|
+
"portLabel": "SMTP portu",
|
|
97
|
+
"usernameLabel": "Kullanıcı adı",
|
|
98
|
+
"passwordLabel": "Parola",
|
|
99
|
+
"emailLabel": "E-posta",
|
|
100
|
+
"encryptionLabel": "Şifreleme",
|
|
101
|
+
"noneLabel": "Yok",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Görünen ad",
|
|
105
|
+
"disconnect": "SMTP'den bağlantıyı kes",
|
|
106
|
+
"requiredField": "{{field}} gereklidir",
|
|
107
|
+
"emailInvalid": "Geçersiz e-posta"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Перевірка триває. Поширення DNS записів може зайняти до 24 годин.",
|
|
83
83
|
"domainDisconnected": "Домен успішно відключено!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Додайте відомості про ваш SMTP-сервер, щоб усі електронні листи надсилались з вашого SMTP-постачальника, а не з Neeto.",
|
|
89
|
+
"connectSmtp": "Підключити SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP налаштовано для надсилання електронних листів.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Налаштування SMTP для вихідних електронних листів",
|
|
93
|
+
"saveAndActivate": "Зберегти та активувати",
|
|
94
|
+
"note": "Примітка: Переконайтеся, що надані вами облікові дані SMTP мають дозвіл на надсилання електронних листів з вказаної адреси електронної пошти.",
|
|
95
|
+
"hostLabel": "SMTP-хост",
|
|
96
|
+
"portLabel": "Порт SMTP",
|
|
97
|
+
"usernameLabel": "Ім'я користувача",
|
|
98
|
+
"passwordLabel": "Пароль",
|
|
99
|
+
"emailLabel": "Електронна пошта",
|
|
100
|
+
"encryptionLabel": "Шифрування",
|
|
101
|
+
"noneLabel": "Немає",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Відображуване ім'я",
|
|
105
|
+
"disconnect": "Вимкнути SMTP",
|
|
106
|
+
"requiredField": "{{field}} обов'язковий",
|
|
107
|
+
"emailInvalid": "Недійсна електронна пошта"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "Xác minh đang tiến hành. Quá trình phân tán bản ghi DNS có thể mất tới 24 giờ.",
|
|
83
83
|
"domainDisconnected": "Tên miền đã ngắt kết nối thành công!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "Thêm thông tin máy chủ SMTP của bạn để tất cả email được gửi từ nhà cung cấp SMTP của bạn chứ không phải từ Neeto.",
|
|
89
|
+
"connectSmtp": "Kết nối SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP đã được cấu hình để gửi email.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Cấu hình SMTP cho email đi",
|
|
93
|
+
"saveAndActivate": "Lưu & kích hoạt",
|
|
94
|
+
"note": "Lưu ý: Đảm bảo rằng thông tin xác thực SMTP mà bạn cung cấp có quyền gửi email từ địa chỉ email đã cấu hình.",
|
|
95
|
+
"hostLabel": "Máy chủ SMTP",
|
|
96
|
+
"portLabel": "Cổng SMTP",
|
|
97
|
+
"usernameLabel": "Tên người dùng",
|
|
98
|
+
"passwordLabel": "Mật khẩu",
|
|
99
|
+
"emailLabel": "Email",
|
|
100
|
+
"encryptionLabel": "Mã hóa",
|
|
101
|
+
"noneLabel": "Không có",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Tên hiển thị",
|
|
105
|
+
"disconnect": "Ngắt kết nối SMTP",
|
|
106
|
+
"requiredField": "{{field}} là bắt buộc",
|
|
107
|
+
"emailInvalid": "Email không hợp lệ"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "验证正在进行中。DNS 记录传播可能需要最多 24 小时。",
|
|
83
83
|
"domainDisconnected": "域名已成功断开连接!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "添加您的SMTP服务器详细信息,以便所有电子邮件都通过您的SMTP提供商发送,而不是通过Neeto发送。",
|
|
89
|
+
"connectSmtp": "连接SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP已配置用于发送电子邮件。",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "为外发电子邮件设置SMTP",
|
|
93
|
+
"saveAndActivate": "保存并激活",
|
|
94
|
+
"note": "注意:确保您提供的SMTP凭据具有从配置的发件邮箱发送电子邮件的权限。",
|
|
95
|
+
"hostLabel": "SMTP主机",
|
|
96
|
+
"portLabel": "SMTP端口",
|
|
97
|
+
"usernameLabel": "用户名",
|
|
98
|
+
"passwordLabel": "密码",
|
|
99
|
+
"emailLabel": "电子邮件",
|
|
100
|
+
"encryptionLabel": "加密",
|
|
101
|
+
"noneLabel": "无",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "显示名称",
|
|
105
|
+
"disconnect": "断开SMTP连接",
|
|
106
|
+
"requiredField": "{{field}} 是必填项",
|
|
107
|
+
"emailInvalid": "无效的电子邮件"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
|
@@ -82,6 +82,30 @@
|
|
|
82
82
|
"verificationPending": "驗證進行中。DNS 記錄傳播可能需要最多 24 小時。",
|
|
83
83
|
"domainDisconnected": "域名已成功斷開連接!"
|
|
84
84
|
}
|
|
85
|
+
},
|
|
86
|
+
"smtp": {
|
|
87
|
+
"title": "SMTP",
|
|
88
|
+
"description": "添加您的 SMTP 伺服器詳細資訊,以便所有電子郵件都從您的 SMTP 供應商發送,而不是從 Neeto 發送。",
|
|
89
|
+
"connectSmtp": "連接 SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP 已配置以發送電子郵件。",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "設置 SMTP 以發送電子郵件",
|
|
93
|
+
"saveAndActivate": "保存並啟用",
|
|
94
|
+
"note": "注意:確保您提供的 SMTP 憑據有權從配置的電子郵件發送電子郵件。",
|
|
95
|
+
"hostLabel": "SMTP 主機",
|
|
96
|
+
"portLabel": "SMTP 埠",
|
|
97
|
+
"usernameLabel": "用戶名",
|
|
98
|
+
"passwordLabel": "密碼",
|
|
99
|
+
"emailLabel": "電子郵件",
|
|
100
|
+
"encryptionLabel": "加密",
|
|
101
|
+
"noneLabel": "無",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "顯示名稱",
|
|
105
|
+
"disconnect": "斷開連接 SMTP",
|
|
106
|
+
"requiredField": "{{field}} 是必填項",
|
|
107
|
+
"emailInvalid": "無效的電子郵件"
|
|
108
|
+
}
|
|
85
109
|
}
|
|
86
110
|
}
|
|
87
111
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-email-delivery-frontend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "This repo is for implementing custom email delivery functionality for the Neeto platform.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://github.com/bigbinary/neeto-email-delivery-nano",
|