Hello,
I'm trying to add localization support to my site. I have the following file structure
/templates-hidden/default.html
_resources_index.html
index.html
where index.html is
<div class="lift:surround?with=default;at=content">
<p><span class="lift:Loc.message">Localized content message must be here</span></p>
</div>
and default.html is
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
</head>
<body>
<p><span class="lift:Loc.header">Localized header</span></p>
<div id="content"></div>
</body>
</html>
The text in index.html is successfully localized. I can see messages specified in _resources_index.html. But default.html is a problem. If I add 'header' entry to _resources_index.html or _resources.html I can see it. But if I add to /templates-hidden/_resources_default.html 'header' is not localized. Where should I put _resources_default.html file to make it work?
Thanks!