1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-22 02:59:13 +02:00

Add french comments on chat application

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2024-05-26 22:08:34 +02:00
parent 8216e0943f
commit b828631106
12 changed files with 962 additions and 230 deletions

View File

@ -7,9 +7,9 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>
Chat du TFJM²
{% trans "TFJM² Chat" %}
</title>
<meta name="description" content="Chat du TFJM²">
<meta name="description" content="{% trans "TFJM² Chat" %}">
{# Favicon #}
<link rel="shortcut icon" href="{% static "favicon.ico" %}">
@ -23,12 +23,15 @@
{# Bootstrap JavaScript #}
<script src="{% static 'bootstrap/js/bootstrap.bundle.min.js' %}"></script>
{# Webmanifest PWA permettant l'installation de l'application sur un écran d'accueil, pour navigateurs supportés #}
<link rel="manifest" href="{% static "chat.webmanifest" %}">
</head>
<body class="d-flex w-100 h-100 flex-column">
{% include "chat/content.html" with fullscreen=True %}
{# Inclusion du script permettant de gérer le thème sombre et le thème clair #}
<script src="{% static 'theme.js' %}"></script>
{# Inclusion du script gérant le chat #}
<script src="{% static 'chat.js' %}"></script>
</body>
</html>