mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-21 21:57:56 +01:00
Improve message translation on email
This commit is contained in:
parent
e435cd4666
commit
f1cfef8cf0
@ -111,6 +111,7 @@ final public class NotificationService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void sendTemplateMail(@NotNull User user, @NotNull String mailSubject, @NotNull String messageTitle, @NotNull String messageBody) {
|
private void sendTemplateMail(@NotNull User user, @NotNull String mailSubject, @NotNull String messageTitle, @NotNull String messageBody) {
|
||||||
|
final Locale locale = LocaleContextHolder.getLocale();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
final Map<String, Object> model = new HashMap<>();
|
final Map<String, Object> model = new HashMap<>();
|
||||||
@ -119,6 +120,7 @@ final public class NotificationService {
|
|||||||
model.put("messageBody", messageBody);
|
model.put("messageBody", messageBody);
|
||||||
model.put("baseUrl", getBaseUrl());
|
model.put("baseUrl", getBaseUrl());
|
||||||
model.put("supportEmail", mailer.getSupportEmail());
|
model.put("supportEmail", mailer.getSupportEmail());
|
||||||
|
model.put("doNotReplay", messageSource.getMessage("EMAIL.DO_NOT_REPLAY", new Object[]{mailer.getSupportEmail()}, locale));
|
||||||
|
|
||||||
logger.debug("Email properties->" + model);
|
logger.debug("Email properties->" + model);
|
||||||
mailer.sendEmail(mailer.getServerSenderEmail(), user.getEmail(), mailSubject, model, "baseLayout.vm");
|
mailer.sendEmail(mailer.getServerSenderEmail(), user.getEmail(), mailSubject, model, "baseLayout.vm");
|
||||||
|
@ -33,9 +33,5 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p style="font-size: 13px;font-family: Arial, sans-serif">Important: Do not reply this email. If
|
<p style="font-size: 13px;font-family: Arial, sans-serif">${doNotReplay}</p></body>
|
||||||
you need further help or believe you have received this email in error, contact us to <a
|
|
||||||
href="mailto:${supportEmail}">here</a>.
|
|
||||||
</p>
|
|
||||||
</body>
|
|
||||||
</html>
|
</html>
|
@ -33,8 +33,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p style="font-size: 13px;font-family: Arial, sans-serif">Important: Do not reply this email. If
|
<p style="font-size: 13px;font-family: Arial, sans-serif">${doNot}</p>
|
||||||
you need further help or have any concerns regarding your account, contact us to <a href="mailto:${supportEmail}">here</a>.
|
|
||||||
</p>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@ -66,3 +66,4 @@ MINDMAP_EMPTY_ERROR=Mindmap darf nicht leer sein.
|
|||||||
INVALID_MINDMAP_FORMAT=Ungültiges Mindmap-Format.
|
INVALID_MINDMAP_FORMAT=Ungültiges Mindmap-Format.
|
||||||
TOO_BIG_MINDMAP=Sie haben das Limit von 5000 Themen in einer Mindmap erreicht.
|
TOO_BIG_MINDMAP=Sie haben das Limit von 5000 Themen in einer Mindmap erreicht.
|
||||||
SHARE_MAP.EMAIL_SUBJECT={0} hat eine Mindmap mit Ihnen geteilt
|
SHARE_MAP.EMAIL_SUBJECT={0} hat eine Mindmap mit Ihnen geteilt
|
||||||
|
EMAIL.DO_NOT_REPLAY=Wichtig: Antworten Sie nicht auf diese E-Mail. Wenn Sie weitere Hilfe benötigen oder Bedenken bezüglich Ihres Kontos haben, kontaktieren Sie uns <a href="mailto:{0}">hier</a>.
|
@ -67,3 +67,4 @@ PASSWORD_CHANGED.EMAIL_SUBJECT=Your password has been changed
|
|||||||
PASSWORD_CHANGED.EMAIL_TITLE=Your password has been changed successfully
|
PASSWORD_CHANGED.EMAIL_TITLE=Your password has been changed successfully
|
||||||
PASSWORD_CHANGED.EMAIL_BODY=<p>This is only an notification that your password has been changed. No further action is required.</p>
|
PASSWORD_CHANGED.EMAIL_BODY=<p>This is only an notification that your password has been changed. No further action is required.</p>
|
||||||
SHARE_MAP.EMAIL_SUBJECT={0} has shared a mind map with you
|
SHARE_MAP.EMAIL_SUBJECT={0} has shared a mind map with you
|
||||||
|
EMAIL.DO_NOT_REPLAY=Important: Do not reply this email. If you need further help or have any concerns regarding your account, contact us to <a href="mailto:{0}">here</a>.
|
@ -55,7 +55,7 @@ CAPTCHA_TIMEOUT_OUT_DUPLICATE=Por favor, actualice la página y vuelva a intenta
|
|||||||
CAPTCHA_INVALID_INPUT_RESPONSE=Respuesta ingresada no es válida, actualice la página y vuelva a intentarlo.
|
CAPTCHA_INVALID_INPUT_RESPONSE=Respuesta ingresada no es válida, actualice la página y vuelva a intentarlo.
|
||||||
MINDMAP_EMPTY_ERROR=El mapa mental no puede estar vacío.
|
MINDMAP_EMPTY_ERROR=El mapa mental no puede estar vacío.
|
||||||
INVALID_MINDMAP_FORMAT=Formato de mapa mental no válido.
|
INVALID_MINDMAP_FORMAT=Formato de mapa mental no válido.
|
||||||
TOO_BIG_MINDMAP=Ha alcanzado el límite de 5000 temas en un mapa mental.
|
TOO_BIG_MINDMAP=Ha alcanzado el límite de 5000 nodos en un mapa mental.
|
||||||
REGISTRATION.EMAIL_SUBJECT=Bienvenido/a a WiseMapping !
|
REGISTRATION.EMAIL_SUBJECT=Bienvenido/a a WiseMapping !
|
||||||
REGISTRATION.EMAIL_TITLE=Tu cuenta ha sido creada exitosamente
|
REGISTRATION.EMAIL_TITLE=Tu cuenta ha sido creada exitosamente
|
||||||
REGISTRATION.EMAIL_BODY=<p> Gracias por tu interest en WiseMapping. Hace click <a href='https://app.wisemapping.com/c/login'>aqui</a> para empezar a crear y compatir tus mapas mentales. Ideas y sugerencias, no dudes en contactarnos a <a href=\"mailto:feedback@wisemapping.com\">feedback@wisemapping.com</a>.</p>
|
REGISTRATION.EMAIL_BODY=<p> Gracias por tu interest en WiseMapping. Hace click <a href='https://app.wisemapping.com/c/login'>aqui</a> para empezar a crear y compatir tus mapas mentales. Ideas y sugerencias, no dudes en contactarnos a <a href=\"mailto:feedback@wisemapping.com\">feedback@wisemapping.com</a>.</p>
|
||||||
@ -66,3 +66,4 @@ PASSWORD_CHANGED.EMAIL_SUBJECT=Su contraseña ha sido cambiada
|
|||||||
PASSWORD_CHANGED.EMAIL_TITLE=Su contraseña ha sido cambiada con éxito
|
PASSWORD_CHANGED.EMAIL_TITLE=Su contraseña ha sido cambiada con éxito
|
||||||
PASSWORD_CHANGED.EMAIL_BODY=<p>Esto es solo una notificación de que su contraseña ha sido cambiada. No se requiere ninguna otra acción.</p>
|
PASSWORD_CHANGED.EMAIL_BODY=<p>Esto es solo una notificación de que su contraseña ha sido cambiada. No se requiere ninguna otra acción.</p>
|
||||||
SHARE_MAP.EMAIL_SUBJECT={0} te ha compartido un mapa mental
|
SHARE_MAP.EMAIL_SUBJECT={0} te ha compartido un mapa mental
|
||||||
|
EMAIL.DO_NOT_REPLAY=Importante: No responda este correo electrónico. Si necesita más ayuda o tiene alguna inquietud con respecto a su cuenta, comuníquese con nosotros a <a href="mailto:{0}">aquí</a>.
|
@ -66,3 +66,4 @@ MINDMAP_EMPTY_ERROR=La carte mentale ne peut pas être vide.
|
|||||||
INVALID_MINDMAP_FORMAT=Format de carte mentale non valide.
|
INVALID_MINDMAP_FORMAT=Format de carte mentale non valide.
|
||||||
TOO_BIG_MINDMAP=Vous avez atteint la limite de 5000 sujets dans une carte mentale.
|
TOO_BIG_MINDMAP=Vous avez atteint la limite de 5000 sujets dans une carte mentale.
|
||||||
SHARE_MAP.EMAIL_SUBJECT={0} a partagé une carte mentale avec vous
|
SHARE_MAP.EMAIL_SUBJECT={0} a partagé une carte mentale avec vous
|
||||||
|
EMAIL.DO_NOT_REPLAY=Important : Ne répondez pas à cet e-mail. Si vous avez besoin d'aide supplémentaire ou si vous avez des inquiétudes concernant votre compte, contactez-nous <a href="mailto:{0}">ici</a>.
|
@ -60,4 +60,4 @@ REGISTRATION.EMAIL_SUBJECT=Добро пожаловать в WiseMapping!
|
|||||||
REGISTRATION.EMAIL_TITLE=Ваша учетная запись успешно создана
|
REGISTRATION.EMAIL_TITLE=Ваша учетная запись успешно создана
|
||||||
REGISTRATION.EMAIL_BODY=<p> Благодарим вас за интерес к WiseMapping. Нажмите <a href='https://app.wisemapping.com/c/login'>здесь</a>, чтобы начать создавать и публиковать новые интеллект-карты. Если у вас есть какие-либо отзывы или идеи, отправьте нам электронное письмо по адресу <a href=\"mailto:feedback@wisemapping.com\">feedback@wisemapping.com</a>. Мы будем рады услышать от вас.</p >
|
REGISTRATION.EMAIL_BODY=<p> Благодарим вас за интерес к WiseMapping. Нажмите <a href='https://app.wisemapping.com/c/login'>здесь</a>, чтобы начать создавать и публиковать новые интеллект-карты. Если у вас есть какие-либо отзывы или идеи, отправьте нам электронное письмо по адресу <a href=\"mailto:feedback@wisemapping.com\">feedback@wisemapping.com</a>. Мы будем рады услышать от вас.</p >
|
||||||
SHARE_MAP.EMAIL_SUBJECT={0} has shared a mindmap with you
|
SHARE_MAP.EMAIL_SUBJECT={0} has shared a mindmap with you
|
||||||
|
EMAIL.DO_NOT_REPLAY=Important: Do not reply this email. If you need further help or have any concerns regarding your account, contact us to <a href="mailto:{0}">here</a>.
|
||||||
|
@ -66,4 +66,4 @@ PASSWORD_CHANGED.EMAIL_SUBJECT=您的密码已被更改
|
|||||||
PASSWORD_CHANGED.EMAIL_TITLE=你已经成功更改密码
|
PASSWORD_CHANGED.EMAIL_TITLE=你已经成功更改密码
|
||||||
PASSWORD_CHANGED.EMAIL_BODY=<p>这只是您的密码已更改的通知。无需进一步操作。</p>
|
PASSWORD_CHANGED.EMAIL_BODY=<p>这只是您的密码已更改的通知。无需进一步操作。</p>
|
||||||
SHARE_MAP.EMAIL_SUBJECT={0} 与您分享了一张思维导图
|
SHARE_MAP.EMAIL_SUBJECT={0} 与您分享了一张思维导图
|
||||||
|
EMAIL.DO_NOT_REPLAY=Important: Do not reply this email. If you need further help or have any concerns regarding your account, contact us to <a href="mailto:{0}">here</a>.
|
||||||
|
Loading…
Reference in New Issue
Block a user