Mercurial > sat_legacy_website
comparison templates/sat_website/developers.html @ 2:0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 30 Jul 2012 02:09:38 +0200 |
parents | 9305c6458e2f |
children | e45aed963722 |
comparison
equal
deleted
inserted
replaced
1:a49aa1b823f6 | 2:0df46e87537d |
---|---|
18 | 18 |
19 You should have received a copy of the GNU Affero General Public License | 19 You should have received a copy of the GNU Affero General Public License |
20 along with Foobar. If not, see <http://www.gnu.org/licenses/>. | 20 along with Foobar. If not, see <http://www.gnu.org/licenses/>. |
21 {% endcomment %} | 21 {% endcomment %} |
22 | 22 |
23 {% load i18n %} | |
23 {% load staticfiles %} | 24 {% load staticfiles %} |
24 {% block headline %}Salut à Toi: contributing{% endblock %} | 25 {% block headline %}{% trans "Salut à Toi: contributing" %}{% endblock %} |
25 {% block subtext %}Here are some informations on how to develop the Salut à Toi project{% endblock %} | 26 {% block subtext %}{% trans "Here are some informations on how to develop the Salut à Toi project" %}{% endblock %} |
26 {% block main_container %} | 27 {% block main_container %} |
27 <div class="row"> | 28 <div class="row"> |
28 <h4 class="alert alert-success"> | 29 <h4 class="alert alert-success"> |
29 Get the source | 30 {% trans "Get the source" %} |
30 </h4> | 31 </h4> |
31 <div class="info"> | 32 <div class="info"> |
32 <p>You'll find the mercurial repository of SàT on <a href="http://repos.goffi.org/sat">http://repos.goffi.org/sat</a>, satellite project are also available on <a href="http://repos.goffi.org">http://repos.goffi.org</a></p> | 33 <p>{% blocktrans with repos_sat="<a href=\"http://repos.goffi.org/sat\">http://repos.goffi.org/sat</a>" repos="<a href=\"http://repos.goffi.org\">http://repos.goffi.org</a>" %}You'll find the mercurial repository of SàT on {{ repos_sat }}, satellite project are also available on {{ repos }}{% endblocktrans %}</p> |
33 <p>To clone the repository, use <a href="http://mercurial.selenic.com/">Mercurial</a>: <code>hg clone http://repos.goffi.org/sat</code>. Check the wiki (see below) for installation instructions</p> | 34 <p>{% blocktrans with mercurial="<a href=\"http://mercurial.selenic.com/\">Mercurial</a>" %}To clone the repository, use {{ mercurial }}: <code>hg clone http://repos.goffi.org/sat</code>. Check the wiki (see below) for installation instructions{% endblocktrans %}</p> |
34 </div> | 35 </div> |
35 </div> | 36 </div> |
36 | 37 |
37 <div class="row"> | 38 <div class="row"> |
38 <h4 class="alert alert-success"> | 39 <h4 class="alert alert-success"> |
39 Documentation | 40 {% trans "Documentation" %} |
40 </h4> | 41 </h4> |
41 <div class="info"> | 42 <div class="info"> |
42 <p>The documentation is available on the wiki: <a href="http://wiki.goffi.org/wiki/sat">http://wiki.goffi.org/wiki/sat</a> (don't hesitate to improve it)</p> | 43 <p>{% blocktrans with wiki="<a href=\"http://wiki.goffi.org/wiki/sat\">http://wiki.goffi.org/wiki/sat</a>" %}The documentation is available on the wiki: {{ wiki }} (don't hesitate to improve it){% endblocktrans %}</p> |
43 <p>You'll also find a dedicated page for developers: <a href="http://wiki.goffi.org/wiki/S%C3%A0T_d%C3%A9veloppement/en">http://wiki.goffi.org/wiki/SàT_développement</a></p> | 44 <p>{% blocktrans with developers_page="<a href=\"http://wiki.goffi.org/wiki/S%C3%A0T_d%C3%A9veloppement/en\">http://wiki.goffi.org/wiki/SàT_développement</a>" %}You'll also find a dedicated page for developers: {{ developers_page }}{% endblocktrans %}</p> |
44 <p>If you need help, you can also check the mailing list: <a href="http://lists.goffi.org">http://lists.goffi.org</a></p> | 45 <p>{% blocktrans with mailing_list="<a href=\"http://lists.goffi.org\">http://lists.goffi.org</a>" %}If you need help, you can also check the mailing list: {{ mailing_list }}{% endblocktrans %}</p> |
45 </div> | 46 </div> |
46 | 47 |
47 </div> | 48 </div> |
48 | 49 |
49 <div class="row"> | 50 <div class="row"> |
50 <h4 class="alert alert-success"> | 51 <h4 class="alert alert-success"> |
51 Contact | 52 {% trans "Contact" %} |
52 </h4> | 53 </h4> |
53 <div class="info"> | 54 <div class="info"> |
54 <p>The best way to join us is on SàT's Jabber room: <a href="xmpp:sat@chat.jabberfr.org">sat@chat.jabberfr.org</a></p> | 55 <p>{% blocktrans with sat_muc="<a href=\"xmpp:sat@chat.jabberfr.org\">sat@chat.jabberfr.org</a>" %}The best way to join us is on SàT's Jabber room: {{ sat_muc }}{% endblocktrans %}</p> |
55 </div> | 56 </div> |
56 </div> | 57 </div> |
57 {% endblock %} | 58 {% endblock %} |