Mercurial > p > roundup > code
changeset 3686:1671d1e39b1a
fix: "List of issues" string in page title is not translated...
...when dispname is set in request
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Sun, 27 Aug 2006 11:34:12 +0000 |
| parents | 4d9adb8bc3b1 |
| children | ff9f4ca42454 |
| files | templates/classic/html/issue.index.html |
| diffstat | 1 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/templates/classic/html/issue.index.html Wed Aug 23 12:57:10 2006 +0000 +++ b/templates/classic/html/issue.index.html Sun Aug 27 11:34:12 2006 +0000 @@ -1,15 +1,15 @@ <!-- dollarId: issue.index,v 1.2 2001/07/29 04:07:37 richard Exp dollar--> <tal:block metal:use-macro="templates/page/macros/icing"> -<title metal:fill-slot="head_title" i18n:translate="" > - List of issues - - <span tal:condition="request/dispname" - tal:replace="python:' %s - '%request.dispname" /> - <span tal:replace="config/TRACKER_NAME" i18n:name="tracker" /> - </title> -<span metal:fill-slot="body_title" tal:omit-tag="python:1" - i18n:translate="">List of issues - <span tal:condition="request/dispname" - tal:replace="python:' - %s' % request.dispname" /> +<title metal:fill-slot="head_title" > + <span tal:omit-tag="true" i18n:translate="" >List of issues</span> + <span tal:condition="request/dispname" + tal:replace="python:' - %s '%request.dispname" + /> - <span tal:replace="config/TRACKER_NAME" /> +</title> +<span metal:fill-slot="body_title" tal:omit-tag="true"> + <span tal:omit-tag="true" i18n:translate="" >List of issues</span> + <span tal:condition="request/dispname" + tal:replace="python:' - %s' % request.dispname" /> </span> <td class="content" metal:fill-slot="content">
