diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-03-18 19:21:17 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-03-18 19:21:17 +0000 |
commit | d158f116d22a4a5dda945b09a58f2e48c0f3b1ea (patch) | |
tree | b9b6aa6c03d5ba7d0865a580c23e3af37af287cb /themes/default/template/comment_list.tpl | |
parent | 4f80b6095c3d44fa82e594d27d89cbf98c3c7042 (diff) |
-fix language keys problems
git-svn-id: http://piwigo.org/svn/trunk@5178 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/template/comment_list.tpl')
-rw-r--r-- | themes/default/template/comment_list.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/default/template/comment_list.tpl b/themes/default/template/comment_list.tpl index f431a1cd5..87da2158d 100644 --- a/themes/default/template/comment_list.tpl +++ b/themes/default/template/comment_list.tpl @@ -22,7 +22,7 @@ {/if} {if isset($comment.U_EDIT) and !isset($comment.IN_EDIT)} <li> - <a class="editComment" href="{$comment.U_EDIT}#edit_comment" title="{'edit this comment'|@translate}"> + <a class="editComment" href="{$comment.U_EDIT}#edit_comment" title="edit this comment"> <img src="{$ROOT_URL}{$themeconf.icon_dir}/edit.png" class="button" alt="[edit]"> </a> </li> @@ -41,8 +41,8 @@ <a name="edit_comment"></a> <form method="post" action="{$comment.U_EDIT}" class="filter" id="editComment"> <fieldset> - <legend>{'Edit a comment'|@translate}</legend> - <label>{'Comment'|@translate}<textarea name="content" id="contenteditid" rows="5" cols="80">{$Comment.CONTENT|@escape}</textarea></label> + <legend>Edit a comment</legend> + <label>{'Comment'|@translate}<textarea name="content" id="contenteditid" rows="5" cols="80">{$comment.CONTENT|@escape}</textarea></label> <input type="hidden" name="key" value="{$comment.KEY}"> <input type="hidden" name="image_id" value="{$comment.IMAGE_ID|@default:$current.id}"> <input class="submit" type="submit" value="{'Submit'|@translate}"> |