diff options
author | nikrou <nikrou@piwigo.org> | 2010-02-12 22:16:13 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-02-12 22:16:13 +0000 |
commit | 903b9cab2dfc8c1ea4dfaa7ad9e3360a55566f67 (patch) | |
tree | 83155039dc4d9ee1fa5e0e65ea7c89c6cc908f41 | |
parent | ef465a237282a32ade8e48e451d56473d22afa43 (diff) |
bug 1425 fixed : internationalization's bug on the template comments
merge from trunk
git-svn-id: http://piwigo.org/svn/branches/2.0@4882 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | language/fr_FR/admin.lang.php | 1 | ||||
-rw-r--r-- | template/yoga/comment_list.tpl | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/language/fr_FR/admin.lang.php b/language/fr_FR/admin.lang.php index 3ab85ee7f..e266df441 100644 --- a/language/fr_FR/admin.lang.php +++ b/language/fr_FR/admin.lang.php @@ -624,6 +624,7 @@ $lang['Templates recorded.'] = 'La configuration des templates a été enregistr $lang['Optimizations completed'] = 'Toutes les optimisations ont été réalisées avec succès.'; $lang['Optimizations errors'] = 'Certaines optimisations se sont terminées avec des erreurs.'; $lang['delete this comment'] = 'supprimer ce commentaire'; +$lang['validate this comment'] = 'valider ce commentaire'; $lang['link_info_image'] = 'Modifier les informations'; $lang['edit category informations'] = 'éditer les informations de cette catégorie'; $lang['nothing'] = 'rien'; diff --git a/template/yoga/comment_list.tpl b/template/yoga/comment_list.tpl index ee4f4efb8..96dc5c379 100644 --- a/template/yoga/comment_list.tpl +++ b/template/yoga/comment_list.tpl @@ -22,7 +22,7 @@ {/if} {if isset($comment.U_VALIDATE)} <li> - <a href="{$comment.U_VALIDATE}" title="validate this comment"> + <a href="{$comment.U_VALIDATE}" title="{'validate this comment'|@translate}"> <img src="{$ROOT_URL}{$themeconf.icon_dir}/validate_s.png" class="button" alt="[validate]" /> </a> </li> @@ -38,4 +38,4 @@ <hr/> {/if} {/foreach} -</ul>
\ No newline at end of file +</ul> |