Localization bugs found and fixed:
helpful_statsbit_ten and
helpful_statsbit should be fully phrased. Add the following phrases:
Code:
<phrase name="helpfulanswer_helpfulansw" date="0" username="Ted S" version="1.3.1"><![CDATA[Helpful answers]]></phrase>
<phrase name="helpfulanswer_from" date="0" username="Ted S" version="1.3.1"><![CDATA[from]]></phrase>
<phrase name="helpfulanswer_times" date="0" username="Ted S" version="1.3.1"><![CDATA[times]]></phrase>
<phrase name="helpfulanswer_posts" date="0" username="Ted S" version="1.3.1"><![CDATA[posts]]></phrase>
and phrase template:
PHP Code:
<template name="helpful_statsbit" templatetype="template" username="Ted S" version="2.1.0"><![CDATA[
<h5 class="subsubsectionhead">{vb:rawphrase helpfulanswer_title}</h5>
<div class="blockrow">
<vb:if condition="$helpfulanswer_count">
<dl class="stats">
<dt>{vb:rawphrase helpfulanswer_postsrated}</dt>
<dd>{vb:raw helpfulanswer_count} {vb:raw helpfulanswer_posts}</dd>
</dl>
</vb:if>
<vb:if condition="$helpfulanswer_goodranks">
<dl class="stats">
<dt>{vb:rawphrase helpfulanswer_postshavebeen}</dt>
<dd>{vb:raw helpfulanswer_helpfulansw} {vb:raw helpfulanswer_goodranks} {vb:raw helpfulanswer_from} {vb:raw helpfulanswer_totalranks} {vb:raw helpfulanswer_times}</dd>
</dl>
</vb:if>
</div>
]]></template>