diff options
author | Steven Barth <steven@midlink.org> | 2008-03-30 19:30:30 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-03-30 19:30:30 +0000 |
commit | 8474dc767ebf565566565c2c8d9def70bda55cc9 (patch) | |
tree | 32644be831cddc91542776cff8ee8091550dc2cf /src/ffluci | |
parent | 9203ede3c71f56391465fe2cc757762936e8835e (diff) |
* template header: Added translation support for path bar
Diffstat (limited to 'src/ffluci')
-rw-r--r-- | src/ffluci/view/header.htm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ffluci/view/header.htm b/src/ffluci/view/header.htm index 66495da43..40d54f516 100644 --- a/src/ffluci/view/header.htm +++ b/src/ffluci/view/header.htm @@ -31,9 +31,9 @@ require("ffluci.http").htmlheader() </div> <div class="separator yellow bold"> -<%:path Pfad%>: <a href="<%=controller .. "/" .. req.category%>"><%=req.category%></a> -» <a href="<%=controller .. "/" .. req.category .. "/" .. req.module %>"><%=req.module%></a> -» <a href="<%=controller .. "/" .. req.category .. "/" .. req.module .. "/" .. req.action %>"><%=req.action%></a> +<%:path Pfad%>: <a href="<%=controller .. "/" .. req.category%>"><%=translate(req.category, req.category)%></a> +» <a href="<%=controller .. "/" .. req.category .. "/" .. req.module %>"><%=translate(req.module, req.module)%></a> +» <a href="<%=controller .. "/" .. req.category .. "/" .. req.module .. "/" .. req.action %>"><%=translate(req.action, req.action)%></a> </div> <div id="columns"><div id="columnswrapper"> |