@bigbinary/neeto-email-delivery-frontend 1.0.13 → 1.0.14
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 التي تقدمها لديها إذن لإرسال الرسائل الإلكترونية من البريد الإلكتروني المكون.",
|
|
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 servidor SMTP perquè tots els correus electrònics siguin enviats pel teu proveïdor SMTP i no per Neeto.",
|
|
89
|
+
"connectSmtp": "Connectar SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP està configurat per enviar correus electrònics.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configura SMTP per a correus sortints",
|
|
93
|
+
"saveAndActivate": "Desa & activa",
|
|
94
|
+
"note": "Nota: Assegureu-vos que les credencials SMTP que proporcioneu tinguin permís per enviar correus electrònics des del correu electrònic configurat.",
|
|
95
|
+
"hostLabel": "Host SMTP",
|
|
96
|
+
"portLabel": "Port SMTP",
|
|
97
|
+
"usernameLabel": "Nom d'usuari",
|
|
98
|
+
"passwordLabel": "Contrasenya",
|
|
99
|
+
"emailLabel": "Correu electrònic",
|
|
100
|
+
"encryptionLabel": "xifrat",
|
|
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 no và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 byly všechny e-maily odesílány od vašeho poskytovatele SMTP a nikoli od Neeto.",
|
|
89
|
+
"connectSmtp": "Připojit SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP je nakonfigurováno pro odesílání e-mailů.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Nastavení SMTP pro odchozí e-maily",
|
|
93
|
+
"saveAndActivate": "Uložit & aktivovat",
|
|
94
|
+
"note": "Poznámka: Ujistěte se, že poskytované SMTP přihlašovací údaje mají oprávnění k odesílání e-mailů z nakonfigurované 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 povinné",
|
|
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": "Forbind 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 afsender-e-mail.",
|
|
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": "Frakobl 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 SMTP-Serverdetails 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 zum Senden von E-Mails von der konfigurierten Absender-E-Mail haben.",
|
|
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 sean enviados desde tu proveedor SMTP y no desde Neeto.",
|
|
89
|
+
"connectSmtp": "Conectar SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP está configurado para enviar correos.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configurar SMTP para correos salientes",
|
|
93
|
+
"saveAndActivate": "Guardar & activar",
|
|
94
|
+
"note": "Nota: Asegúrate de que las credenciales SMTP que proporciones tengan permiso para enviar correos 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 obligatorio",
|
|
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 & activar",
|
|
94
|
+
"note": "Nota: Asegúrate de que las credenciales de SMTP que proporciones 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": "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 teenusepakkuja kaudu, mitte Neeto kaudu.",
|
|
89
|
+
"connectSmtp": "Ühenda SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP on konfigureeritud e-kirjade saatmiseks.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Konfigureeri SMTP väljaminevate e-kirjade jaoks",
|
|
93
|
+
"saveAndActivate": "Salvesta & aktiveeri",
|
|
94
|
+
"note": "Märkus: Veenduge, et esitatud SMTP mandaadid on õigustatud e-kirjade saatmiseks määratud e-posti aadressilt.",
|
|
95
|
+
"hostLabel": "SMTP host",
|
|
96
|
+
"portLabel": "SMTP port",
|
|
97
|
+
"usernameLabel": "Kasutajanimi",
|
|
98
|
+
"passwordLabel": "Salasõna",
|
|
99
|
+
"emailLabel": "E-post",
|
|
100
|
+
"encryptionLabel": "Krüptimine",
|
|
101
|
+
"noneLabel": "Puudub",
|
|
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-toimittajaltasi eikä Neetolta.",
|
|
89
|
+
"connectSmtp": "Yhdistä SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP on konfiguroitu sähköpostien lähettämistä varten.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Aseta SMTP ulkoisia sähköposteja varten",
|
|
93
|
+
"saveAndActivate": "Tallenna ja aktivoi",
|
|
94
|
+
"note": "Huom: Varmista, että antamillasi SMTP-tunnuksilla on oikeus lähettää sähköposteja määritetystä sähköpostista.",
|
|
95
|
+
"hostLabel": "SMTP-isäntä",
|
|
96
|
+
"portLabel": "SMTP-portti",
|
|
97
|
+
"usernameLabel": "Käyttäjänimi",
|
|
98
|
+
"passwordLabel": "Salasana",
|
|
99
|
+
"emailLabel": "Sähköposti",
|
|
100
|
+
"encryptionLabel": "Salaus",
|
|
101
|
+
"noneLabel": "Ei mitään",
|
|
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 mga detalye ng iyong SMTP server upang ang lahat ng mga email ay maipadala mula sa iyong SMTP provider at hindi mula sa Neeto.",
|
|
89
|
+
"connectSmtp": "Ikonekta ang SMTP",
|
|
90
|
+
"smtpConfigured": "Naka-configure ang SMTP 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 iyong ibinibigay ay may pahintulot na magpadala ng mga email mula sa naka-configure na 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 Display",
|
|
105
|
+
"disconnect": "Idiskonekta ang SMTP",
|
|
106
|
+
"requiredField": "{{field}} ay kinakailangan",
|
|
107
|
+
"emailInvalid": "Hind na wasto ang 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 emails soient envoyés par votre fournisseur SMTP et non par Neeto.",
|
|
89
|
+
"connectSmtp": "Connecter SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP est configuré pour l'envoi d'emails.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configurer SMTP pour les emails sortants",
|
|
93
|
+
"saveAndActivate": "Enregistrer et activer",
|
|
94
|
+
"note": "Remarque : Assurez-vous que les informations d'identification SMTP que vous fournissez ont la permission d'envoyer des emails depuis l'email de configuration.",
|
|
95
|
+
"hostLabel": "Hôte SMTP",
|
|
96
|
+
"portLabel": "Port SMTP",
|
|
97
|
+
"usernameLabel": "Nom d'utilisateur",
|
|
98
|
+
"passwordLabel": "Mot de passe",
|
|
99
|
+
"emailLabel": "Email",
|
|
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 obligatoire",
|
|
107
|
+
"emailInvalid": "Email 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 שאתם מספקים יש לה אישור לשלוח מיילים מהדואר מ-configured.",
|
|
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 se svi e-mailovi slali s vašeg SMTP pružatelja, a ne iz Neeto-a.",
|
|
89
|
+
"connectSmtp": "Poveži SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP je konfiguriran za slanje e-mailova.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Postavi SMTP za odlazne e-mailove",
|
|
93
|
+
"saveAndActivate": "Spremi & aktiviraj",
|
|
94
|
+
"note": "Napomena: Osigurajte da SMTP vjerodajnice koje pružate imaju dozvolu za slanje e-mailova s konfigurirane e-mail 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": "Nema",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Prikazano ime",
|
|
105
|
+
"disconnect": "Prekini vezu s SMTP",
|
|
106
|
+
"requiredField": "{{field}} je obavezan",
|
|
107
|
+
"emailInvalid": "Nevažeća e-mail adresa"
|
|
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 agar 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 kredensial SMTP yang Anda berikan memiliki izin untuk mengirim email dari email 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 affinché tutte le email vengano inviate dal tuo fornitore SMTP e non da Neeto.",
|
|
89
|
+
"connectSmtp": "Collega 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 di provenienza configurata.",
|
|
95
|
+
"hostLabel": "Host SMTP",
|
|
96
|
+
"portLabel": "Porta SMTP",
|
|
97
|
+
"usernameLabel": "Nome utente",
|
|
98
|
+
"passwordLabel": "Password",
|
|
99
|
+
"emailLabel": "Email",
|
|
100
|
+
"encryptionLabel": "Crittografia",
|
|
101
|
+
"noneLabel": "Nessuna",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nome visualizzato",
|
|
105
|
+
"disconnect": "Disconnetti SMTP",
|
|
106
|
+
"requiredField": "{{field}} è richiesto",
|
|
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 de gegevens van uw SMTP-server toe, zodat alle e-mails worden verzonden via uw SMTP-provider en niet via 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 door u opgegeven SMTP-referenties 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": "Verbreek verbinding met SMTP",
|
|
106
|
+
"requiredField": "{{field}} is verplicht",
|
|
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 szczegóły swojego serwera SMTP, aby wszystkie e-maile były wysyłane z twojego dostawcy SMTP, a nie z Neeto.",
|
|
89
|
+
"connectSmtp": "Połącz z SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP jest skonfigurowany do wysyłania e-maili.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Ustaw SMTP do wysyłania e-maili",
|
|
93
|
+
"saveAndActivate": "Zapisz & aktywuj",
|
|
94
|
+
"note": "Uwaga: upewnij się, że podane dane uwierzytelniające SMTP 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": "Nota: Certifique-se de que as credenciais SMTP que você fornecer têm permissão para enviar e-mails do endereço de 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 de exibição",
|
|
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 emails sejam enviados pelo seu provedor SMTP e não pelo Neeto.",
|
|
89
|
+
"connectSmtp": "Conectar SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP está configurado para enviar emails.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configurar SMTP para emails de saída",
|
|
93
|
+
"saveAndActivate": "Salvar & ativar",
|
|
94
|
+
"note": "Nota: Certifique-se de que as credenciais SMTP que você fornece têm permissão para enviar emails do email configurado.",
|
|
95
|
+
"hostLabel": "Host SMTP",
|
|
96
|
+
"portLabel": "Porta SMTP",
|
|
97
|
+
"usernameLabel": "Nome de usuário",
|
|
98
|
+
"passwordLabel": "Senha",
|
|
99
|
+
"emailLabel": "Email",
|
|
100
|
+
"encryptionLabel": "Criptografia",
|
|
101
|
+
"noneLabel": "Nenhuma",
|
|
102
|
+
"starttlsLabel": "StartTLS",
|
|
103
|
+
"sslLabel": "SSL",
|
|
104
|
+
"displayNameLabel": "Nome de exibição",
|
|
105
|
+
"disconnect": "Desconectar SMTP",
|
|
106
|
+
"requiredField": "{{field}} é obrigatório",
|
|
107
|
+
"emailInvalid": "Email 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 SMTP astfel încât toate emailurile să fie trimise de la furnizorul dvs. SMTP și nu de la Neeto.",
|
|
89
|
+
"connectSmtp": "Conectați SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP este configurat pentru trimiterea emailurilor.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Configurați SMTP pentru emailuri ieșite",
|
|
93
|
+
"saveAndActivate": "Salvați & activați",
|
|
94
|
+
"note": "Notă: Asigurați-vă că acreditivele SMTP pe care le oferiți au permisiunea de a trimite emailuri de la adresa de email configurată.",
|
|
95
|
+
"hostLabel": "Gazdă SMTP",
|
|
96
|
+
"portLabel": "Port SMTP",
|
|
97
|
+
"usernameLabel": "Nume de utilizator",
|
|
98
|
+
"passwordLabel": "Parolă",
|
|
99
|
+
"emailLabel": "Email",
|
|
100
|
+
"encryptionLabel": "Criptare",
|
|
101
|
+
"noneLabel": "Nimic",
|
|
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 podrobnosti o svojom SMTP serveri, aby všetky e-maily boli zasielané z vášho poskytovateľa SMTP a nie z Neeto.",
|
|
89
|
+
"connectSmtp": "Pripojiť SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP je nakonfigurované na zasielanie e-mailov.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Nastavenie SMTP pre odchádzajúce e-maily",
|
|
93
|
+
"saveAndActivate": "Uložiť a aktivovať",
|
|
94
|
+
"note": "Poznámka: Uistite sa, že povolenia SMTP, ktoré poskytnete, majú právo posielať e-maily z nakonfigurovaného e-mailu.",
|
|
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": "Zobrazované 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 svojem SMTP strežniku, tako 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št.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Nastavi SMTP za odhodne e-pošte",
|
|
93
|
+
"saveAndActivate": "Shrani & aktiviraj",
|
|
94
|
+
"note": "Opomba: Prepričajte se, da imajo poverilnice SMTP, ki jih posredujete, dovoljenje za pošiljanje e-pošt iz konfigurirane e-pošte.",
|
|
95
|
+
"hostLabel": "SMTP strežnik",
|
|
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": "Prikazno ime",
|
|
105
|
+
"disconnect": "Prekini povezavo 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-post skickas från din SMTP-leverantör och inte från Neeto.",
|
|
89
|
+
"connectSmtp": "Anslut SMTP",
|
|
90
|
+
"smtpConfigured": "SMTP är konfigurerad för att skicka e-post.",
|
|
91
|
+
"setup": {
|
|
92
|
+
"title": "Ställ in SMTP för utgående e-post",
|
|
93
|
+
"saveAndActivate": "Spara & aktivera",
|
|
94
|
+
"note": "Observera: Se till att de SMTP-uppgifter du anger har rätt att skicka e-post från den angivna e-postadressen.",
|
|
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}} är obligatorisk",
|
|
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 SMTP sağlayıcınızdan gönderilmesi için SMTP sunucu bilgilerinizi ekleyin ve Neeto'dan değil.",
|
|
89
|
+
"connectSmtp": "SMTP'ye Bağlan",
|
|
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 & aktif et",
|
|
94
|
+
"note": "Not: Sağladığınız SMTP kimlik bilgileri, yapılandırılan e-posta adresinden e-posta göndermeye izin verecek şekilde olmalıdır.",
|
|
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 Ayrıl",
|
|
106
|
+
"requiredField": "{{field}} zorunludur",
|
|
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ài đặt 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 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",
|
|
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.14",
|
|
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",
|