Mercurial > p > roundup > code
diff templates/classic/html/issue.index.html @ 3910:006fcf5b8954
translate activity and status in issue.index
thanks to Bajusz for the report and description of fix
fixes [SF#796070]
| author | Justus Pendleton <jpend@users.sourceforge.net> |
|---|---|
| date | Tue, 18 Sep 2007 17:44:26 +0000 |
| parents | 91008ec8f9a0 |
| children |
line wrap: on
line diff
--- a/templates/classic/html/issue.index.html Tue Sep 18 16:59:42 2007 +0000 +++ b/templates/classic/html/issue.index.html Tue Sep 18 17:44:26 2007 +0000 @@ -1,4 +1,4 @@ -<!-- $Id: issue.index.html,v 1.28 2007-09-16 02:45:11 jpend Exp $ --> +<!-- $Id: issue.index.html,v 1.29 2007-09-18 17:44:26 jpend Exp $ --> <tal:block metal:use-macro="templates/page/macros/icing"> <title metal:fill-slot="head_title" > <span tal:omit-tag="true" i18n:translate="" >List of issues</span> @@ -40,7 +40,7 @@ tal:condition="python:group and batch.propchanged(*group)"> <th tal:attributes="colspan python:len(request.columns)" class="group"> <tal:block tal:repeat="g group"> - <tal:block tal:content="python:str(i[g]) or '(no %s set)'%g"/> + <tal:block i18n:translate="" tal:content="python:str(i[g]) or '(no %s set)'%g"/> </tal:block> </th> </tr> @@ -62,6 +62,7 @@ tal:content="python:str(i.title.plain(hyperlink=0)) or '[no title]'">title</a> </td> <td tal:condition="request/show/status" + i18n:translate="" tal:content="python:i.status.plain() or default"> </td> <td tal:condition="request/show/creator" tal:content="python:i.creator.plain() or default"> </td>
