mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
French translations for jinja templates, might be useful later.
This commit is contained in:
7
resources/ui/templates/campaigntemplate_FR.j2
Normal file
7
resources/ui/templates/campaigntemplate_FR.j2
Normal file
@@ -0,0 +1,7 @@
|
||||
<strong>Auteur(s) : {{ campaign.authors }}</strong>
|
||||
<br/>
|
||||
<br/>
|
||||
<strong>Nombre de points :</strong> {{ campaign.theater.controlpoints|length }}
|
||||
<br/>
|
||||
|
||||
{{ campaign.description|safe }}
|
||||
58
resources/ui/templates/factiontemplate_FR.j2
Normal file
58
resources/ui/templates/factiontemplate_FR.j2
Normal file
@@ -0,0 +1,58 @@
|
||||
{{ faction.description|safe }}
|
||||
<br/>
|
||||
|
||||
<strong>Auteur(s):</strong> {{ faction.authors }}
|
||||
<br/><br/>
|
||||
|
||||
|
||||
<strong>Aéronefs disponibles :</strong>
|
||||
<ul>
|
||||
{% for aircraft in faction.aircrafts %}
|
||||
<li>{{aircraft.id}}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<br/>
|
||||
|
||||
<strong>Véhicules disponibles :</strong>
|
||||
<ul>
|
||||
{% for vehicle in faction.frontline_units %}
|
||||
<li>
|
||||
{% if vehicle.name is not none %}
|
||||
{{ vehicle.name }}
|
||||
{% else %}
|
||||
{{ vehicle.id }}
|
||||
{%endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<br/>
|
||||
|
||||
<strong>Pièces d'artillerie :</strong>
|
||||
<ul>
|
||||
{% for arty in faction.artillery_units %}
|
||||
<li>
|
||||
{% if arty.name is not none %}
|
||||
{{ arty.name }}
|
||||
{% else %}
|
||||
{{ arty.id }}
|
||||
{%endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<br/>
|
||||
|
||||
<strong>Défense Sol-Air (SAM) :</strong>
|
||||
<ul>
|
||||
{% for sam in faction.sams %}
|
||||
<li>{{sam}}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<br/>
|
||||
|
||||
<strong>Défense Sol-Air de courte portée (SHORAD) :</strong>
|
||||
<ul>
|
||||
{% for shorad in faction.shorads %}
|
||||
<li>{{shorad}}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<br/>
|
||||
Reference in New Issue
Block a user