source: OpenWorkouts-current/ow/templates/404.pt @ 737eb6c

currentfeature/docs
Last change on this file since 737eb6c was a4e4799, checked in by Borja Lopez <borja@…>, 5 years ago

(#56) Added i18n helper scripts and spanish (es) translations.
Done lots of translated strings fixes in templates.
Removed .mo and .pot files from the git ignore list.

  • Property mode set to 100644
File size: 967 bytes
Line 
1<html xmlns="http://www.w3.org/1999/xhtml"
2      xml:lang="en"
3      xmlns:tal="http://xml.zope.org/namespaces/tal"
4      xmlns:metal="http://xml.zope.org/namespaces/metal"
5      xmlns:i18n="http://xml.zope.org/namespaces/i18n"
6      i18n:domain="OpenWorkouts"
7      metal:use-macro="load: base.pt"
8      tal:attributes="lang request.locale_name">
9
10  <metal:head-title metal:fill-slot="head-title">
11    <tal:t i18n:translate="Content not found"></tal:t>
12  </metal:head-title>
13
14  <metal:title metal:fill-slot="title">
15    <tal:t i18n:translate="">
16      So sorry! :-(
17    </tal:t>
18  </metal:title>
19
20  <metal:content metal:fill-slot="content">
21    <div id="userinfo" i18n:translate="">
22      We are sorry, but the contents you were looking for can not be found.
23      Please <a i18n:name="goback" i18n:translate="" href="" tal:attributes="href url">
24        go back to your dashboard</a> and, if the problem persist, let us know!
25    </div>
26  </metal:content>
27
28</html>
Note: See TracBrowser for help on using the repository browser.