mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
Support translation on home page
This commit is contained in:
parent
aa6fa036e8
commit
55c1da241a
3 changed files with 18 additions and 4 deletions
Binary file not shown.
|
@ -38,6 +38,19 @@ msgstr "Anglais"
|
||||||
msgid "French"
|
msgid "French"
|
||||||
msgstr "Français"
|
msgstr "Français"
|
||||||
|
|
||||||
|
#: templates/re2o/index.html:30
|
||||||
|
msgid "Home"
|
||||||
|
msgstr "Accueil"
|
||||||
|
|
||||||
|
#: templates/re2o/index.html:33
|
||||||
|
#, python-format
|
||||||
|
msgid "Welcome to %(site_name)s !"
|
||||||
|
msgstr "Bienvenue sur %(site_name)s !"
|
||||||
|
|
||||||
|
#: templates/re2o/index.html:47
|
||||||
|
msgid "Go there"
|
||||||
|
msgstr "Accéder"
|
||||||
|
|
||||||
#: templates/re2o/about.html:29 templates/re2o/about.html:35
|
#: templates/re2o/about.html:29 templates/re2o/about.html:35
|
||||||
msgid "About Re2o"
|
msgid "About Re2o"
|
||||||
msgstr "A propos de Re2o"
|
msgstr "A propos de Re2o"
|
||||||
|
|
|
@ -25,11 +25,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
|
||||||
{% load bootstrap3 %}
|
{% load bootstrap3 %}
|
||||||
{% load staticfiles %}
|
{% load staticfiles %}
|
||||||
|
{% load i18n %}
|
||||||
|
|
||||||
{% block title %}Accueil{% endblock %}
|
{% block title %}{% trans "Home" %}{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>Bienvenue sur {{ request.get_host }} !</h1>
|
<h1>{% blocktrans %}Welcome to {{ site_name }} !{% endblocktrans %}</h1>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
{% for service_list in services_urls %}
|
{% for service_list in services_urls %}
|
||||||
|
@ -38,12 +39,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<div class="thumbnail">
|
<div class="thumbnail">
|
||||||
{% if service.image %}
|
{% if service.image %}
|
||||||
<a href="{{ service.url }}"><img src="{{ service.image.url }}" alt="{{ service.name }}"></a>
|
<a href="{{ service.url }}"><img src="{{ service.image.url }}" alt="{{ service.name }}"></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="caption">
|
<div class="caption">
|
||||||
<h3>{{ service.name }}</h3>
|
<h3>{{ service.name }}</h3>
|
||||||
<p>{{ service.description }}</p>
|
<p>{{ service.description }}</p>
|
||||||
<p><a href="{{ service.url }}" class="btn btn-primary" role="button">Accéder</a></p>
|
<p><a href="{{ service.url }}" class="btn btn-primary" role="button">{% trans "Go there" %}</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue