TMC
Active member
- Affected version
- 2.2.0 Beta 1
Hi, unless I'm mistaken there seems to be a couple strings that are hardcoded and can't be translated in the activity summary emails.
Part of the activity summary email template
Possible to add phrases for those?
Part of the activity summary email template
PHP:
<xf:if is="$displayValues">
<xf:macro template="activity_summary_macros" name="outer_header"
arg-title="A summary of what you missed recently" />
<xf:set var="$content">
<table border="0" width="100%" cellpadding="0" cellspacing="0" class="statsContainer">
<tr>
<td class="statsGroup" align="center">
<xf:foreach loop="$displayValues" value="$value" if="$value.value != 0">
<div class="stat">
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="stat-label" align="center">{$value.label}</td>
</tr>
<tr>
<td class="stat-value" align="center">{$value.value|number_short}</td>
</tr>
</table>
</div>
</xf:foreach>
</td>
</tr>
</table>
</xf:set>
Possible to add phrases for those?