add a true label on tag link title "%d images" instead of just "%d" on tags.php

git-svn-id: http://piwigo.org/svn/trunk@5709 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2010-04-08 09:40:34 +00:00
parent 06b00817cc
commit 699109873e
+1 -1
View File
@@ -19,7 +19,7 @@
{if $display_mode == 'cloud'}
<div id="fullTagCloud">
{foreach from=$tags item=tag}
<span><a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{$tag.counter}">{$tag.name}</a></span>
<span><a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{$pwg->l10n_dec('%d image', '%d images', $tag.counter)}">{$tag.name}</a></span>
{/foreach}
</div>
{/if}