It's only a minor issue, but I noticed that the email templates for task reminders are very simple, but text entries are missing, or translations are completely missing, for other languages.
E.g German:
en_US
de_DE
Line two could be changed to:
It seems the text for those templates are not in the poeeditor?
Other templates seem to have this problem too. The German invitation template, for example, has "Decline" instead of "Ablehnen" for rejection.
E.g German:
en_US
Code:
<p>Subject: {{name}}</p> <p>Date End: {{dateEnd}}</p> <p><a href="{{recordUrl}}">View record</a></p>
de_DE
Code:
<p>Betreff: {{name}}</p> <p>{{dateEnd}}</p> <p><a href="{{recordUrl}}">Eintrag öffnen</a></p>
Line two could be changed to:
Code:
<p>Betreff: {{name}}</p> <p>Fällig am: {{dateEnd}}</p> <p><a href="{{recordUrl}}">Eintrag öffnen</a></p>
It seems the text for those templates are not in the poeeditor?
Other templates seem to have this problem too. The German invitation template, for example, has "Decline" instead of "Ablehnen" for rejection.
Comment