fix(all): close #1, close #3, close #13, close #14

This commit is contained in:
Romain J 2020-06-19 02:35:59 +02:00
parent 10b0e0c37a
commit 6165657ad9
14 changed files with 193 additions and 90 deletions

View file

@ -29,6 +29,8 @@ html[data-theme="dark"] .uk-card {
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden; overflow: hidden;
white-space: nowrap; } white-space: nowrap; }
html[data-theme="dark"] .uk-card-secondary {
background: #23272A; }
html[data-theme="dark"] .uk-border-circle { html[data-theme="dark"] .uk-border-circle {
box-shadow: -5px -5px 12px 0 rgba(41, 41, 41, 0.6), 5px 5px 12px 0 rgba(0, 0, 0, 0.3); } box-shadow: -5px -5px 12px 0 rgba(41, 41, 41, 0.6), 5px 5px 12px 0 rgba(0, 0, 0, 0.3); }
html[data-theme="dark"] .uk-h1, html[data-theme="dark"] h1 { html[data-theme="dark"] .uk-h1, html[data-theme="dark"] h1 {
@ -386,4 +388,12 @@ html[data-theme="light"] .subtitle-text {
font-size: 1.2em; font-size: 1.2em;
opacity: 0.7; } opacity: 0.7; }
.uk-label-success {
background-color: rgb(22, 101, 72);
}
.uk-label-warning {
background-color: rgb(145, 66, 4);
}
/*# sourceMappingURL=index.css.map */ /*# sourceMappingURL=index.css.map */

File diff suppressed because one or more lines are too long

View file

@ -35,4 +35,12 @@
.uk-border-circle { .uk-border-circle {
box-shadow: -5px -5px 12px 0 rgba(255, 255, 255, 0.5), 5px 5px 12px 0 rgba(0, 0, 0, 0.1); } box-shadow: -5px -5px 12px 0 rgba(255, 255, 255, 0.5), 5px 5px 12px 0 rgba(0, 0, 0, 0.1); }
.uk-label-success {
background-color: rgb(22, 101, 72);
}
.uk-label-warning {
background-color: rgb(145, 66, 4);
}
/*# sourceMappingURL=uikit_fix.css.map */ /*# sourceMappingURL=uikit_fix.css.map */

View file

@ -49,6 +49,9 @@
white-space: nowrap; white-space: nowrap;
} }
} }
.uk-card-secondary {
background: #23272A;
}
.uk-border-circle { .uk-border-circle {
box-shadow: map_get(map_get($themes, $theme), 'shadow'); box-shadow: map_get(map_get($themes, $theme), 'shadow');
@ -151,4 +154,12 @@ html[data-theme="dark"] {
html[data-theme="light"] { html[data-theme="light"] {
@include render_theme('light') @include render_theme('light')
}
.uk-label-success {
background-color: rgb(22, 101, 72);
}
.uk-label-warning {
background-color: rgb(145, 66, 4);
} }

View file

@ -3,15 +3,13 @@
{% load i18n %} {% load i18n %}
{% block content %} {% block content %}
<div class="uk-flex uk-flex-middle top-wrap-height"> <div class="uk-flex uk-flex-middle">
<div class="uk-container uk-flex-auto uk-position-relative uk-margin-medium-top"> <div class="uk-container uk-flex-auto uk-position-relative uk-margin-medium-top">
<div class="uk-grid" data-uk-grid="masonry: true"> <div class="uk-width-1">
<div class="uk-width-1"> <h1 class="uk-margin-remove-bottom uk-text-bold">{% trans 'À propos' %}</h1>
<h1 class="uk-margin-remove-bottom uk-text-bold">{% trans 'À propos' %}</h1> </div>
</div>
<div class="uk-width-1 uk-margin"> <div class="uk-width-1 uk-margin">
<!-- attention, indentation pourrie en dessous, raison : flemme de scroll horizontalement -->
{% blocktrans %} {% blocktrans %}
<p>GnousEU est une communauté de passionnés du libre ayant débuté en février 2017 sur la plateforme Discord. <p>GnousEU est une communauté de passionnés du libre ayant débuté en février 2017 sur la plateforme Discord.
Depuis elle s'est diversifiée sur plusieurs plateformes hébergées par elle-même en favorisant les instances décentralisées. Depuis elle s'est diversifiée sur plusieurs plateformes hébergées par elle-même en favorisant les instances décentralisées.
@ -26,7 +24,48 @@ mais aussi par <code><a href="https://git.gnous.eu/Romain">Romain J.</a></code>,
<code><a href="https://huteau-leo.fr/">Léo H</a></code>. Avant son départ, <code><a href="https://git.gnous.eu/orakle">Orakle</a></code> s'occupait du design.</p> <code><a href="https://huteau-leo.fr/">Léo H</a></code>. Avant son départ, <code><a href="https://git.gnous.eu/orakle">Orakle</a></code> s'occupait du design.</p>
<p>GnousEU est hébergé sur l'infrastructure <a href='https://enpls.org/'>EnPLS.org</a> disposant de serveurs en France, Pays-Bas, Allemagne et Guadeloupe.</p> <p>GnousEU est hébergé sur l'infrastructure <a href='https://enpls.org/'>EnPLS.org</a> disposant de serveurs en France, Pays-Bas, Allemagne et Guadeloupe.</p>
{% endblocktrans %} {% endblocktrans %}
</div> </div>
<hr class="uk-margin-large">
<div class="uk-width-1">
<h2 class="uk-margin-remove-bottom uk-text-bold uk-text-center">{% trans 'Partenaires' %}</h2>
</div>
<div class="uk-width-1 uk-margin">
{% if partners|length >= 1 %}
<div class="uk-grid uk-grid-margin-medium uk-child-width-1-3@m" data-uk-grid="masonry: true">
{% for partner in partners %}
<div class="uk-margin">
<div class="uk-card uk-card-secondary">
<div class="uk-card-media-top">
<img class="uk-align-center" src="{{ partner.photo.url }}" loading="lazy" alt="{{ partner.name }}">
</div>
<div class="uk-card-body">
<h3 class="uk-card-title">
{{ partner.name }}
<code>{{ partner.domain }}</code>
</h3>
<p>{% get_current_language as LANGUAGE_CODE %}{% if LANGUAGE_CODE == 'en' and partner.description_en != None %}{{ partner.description_en }}{% else %}{{ partner.description }}{% endif %}</p>
<a href="https://{{ partner.domain }}" class="uk-text-large">{% trans "Voir" %}</a>
</div>
</div>
</div>
{% endfor %}
</div>
{% else %}
<div class="uk-width-2-3@m uk-align-center">
<div class="uk-card">
<div class="uk-card-header">
<div class="uk-grid-small uk-flex-middle uk-grid">
<div class="uk-width-2-3">
<h3 class="uk-card-title uk-text-bold uk-text-danger">{% trans "Nous n'avons aucun partenaire..." %}</h3>
</div>
</div>
</div>
</div>
</div>
{% endif %}
</div> </div>
</div> </div>
</div> </div>

View file

@ -5,20 +5,21 @@
{% block content %} {% block content %}
<div class="uk-flex uk-flex-middle top-wrap-height"> <div class="uk-flex uk-flex-middle top-wrap-height">
<div class="uk-container uk-flex-auto uk-position-relative uk-margin-medium-top"> <div class="uk-container uk-flex-auto uk-position-relative uk-margin-medium-top">
<div class="uk-grid" data-uk-grid="masonry: true"> <div class="uk-child-width-expand@s uk-grid">
<div class="uk-width-1-2@s"> <div class="uk-grid-item-match uk-first-column">
<h1 class="uk-margin-remove-bottom uk-text-bold">GnousEU</h1> <div>
<p class="uk-margin-remove-bottom subtitle-text uk-text-bold">{% trans "Communauté francophone de passionnés du libre depuis 2017." %}</p> <h1 class="uk-margin-remove-bottom uk-text-bold">GnousEU</h1>
<p class="uk-margin-remove-bottom subtitle-text uk-text-bold">{% trans "Communauté francophone de passionnés du libre depuis 2017." %}</p>
</div>
<div>
<a class="uk-button uk-margin-small-right" href="{% url 'gnous_eu:services' %}">{% trans "Nos services" %}</a>
<a class="uk-button uk-margin-small-left" href="{% url 'gnous_eu:about' %}">{% trans "À propos" %}</a>
</div>
</div> </div>
<div class="uk-width-expand"> <div>
<img <div class="uk-width-expand">
src="{% static 'images/illustrations/services.svg' %}" <img src="{% static 'images/illustrations/services.svg' %}" loading="lazy" alt="Image">
alt="Image"> </div>
</div>
<div class="uk-width-1-2@s">
<a class="uk-button uk-margin-small-left" href="{% url 'gnous_eu:services' %}">{% trans "Nos services" %}</a>
<a class="uk-button uk-margin-small-right" href="{% url 'gnous_eu:about' %}">{% trans "À propos" %}</a>
</div> </div>
</div> </div>
</div> </div>

View file

@ -42,7 +42,7 @@ Don't judge me
banner_cookie_div = document.getElementById("banner_cookie_div"); banner_cookie_div = document.getElementById("banner_cookie_div");
if (banner_cookie === undefined || banner_cookie.split('cookie-banner=')[1] !== 'hidden') { if (banner_cookie === undefined || banner_cookie.split('cookie-banner=')[1] !== 'hidden') {
banner_cookie_div.querySelector("a.uk-close").addEventListener('click', event => { banner_cookie_div.addEventListener('click', event => {
document.cookie = 'cookie-banner=hidden'; document.cookie = 'cookie-banner=hidden';
banner_cookie_div.style.display = "none" banner_cookie_div.style.display = "none"
}); });

View file

@ -24,9 +24,9 @@
</div> </div>
{% if services|length >= 1 %} {% if services|length >= 1 %}
<ul class="uk-grid uk-grid-margin-medium uk-child-width-1-3@m" data-uk-grid="masonry: true"> <div class="uk-grid uk-grid-margin-medium uk-child-width-1-3@m">
{% for service in services %} {% for service in services %}
<li> <div class="uk-margin">
<div class="uk-card uk-card-secondary"> <div class="uk-card uk-card-secondary">
<div class="uk-card-media-top"> <div class="uk-card-media-top">
<img src="{{ service.photo.url }}" loading="lazy" alt="{{ service.name }}"> <img src="{{ service.photo.url }}" loading="lazy" alt="{{ service.name }}">
@ -57,9 +57,9 @@
{% endif %} {% endif %}
</div> </div>
</div> </div>
</li> </div>
{% endfor %} {% endfor %}
</ul> </div>
<ul class="uk-pagination uk-margin-medium-top"> <ul class="uk-pagination uk-margin-medium-top">
<li class="uk-width-1-3"> <li class="uk-width-1-3">

View file

@ -1,13 +1,13 @@
from django.urls import path, include from django.urls import path
from django.views.generic import TemplateView from django.views.generic import TemplateView
from .views import ServicesView from .views import ServicesView, PartnersView
app_name = "gnous_eu" app_name = "gnous_eu"
urlpatterns = [ urlpatterns = [
path("", TemplateView.as_view(template_name="index.html"), name="index"), path("", TemplateView.as_view(template_name="index.html"), name="index"),
path("about", TemplateView.as_view(template_name="about.html"), name="about"), path("about", PartnersView.index, name="about"),
path("tips", TemplateView.as_view(template_name="tips.html"), name="tips"), path("tips", TemplateView.as_view(template_name="tips.html"), name="tips"),
path("services", ServicesView.index, name="services"), path("services", ServicesView.index, name="services"),
] ]

View file

@ -1,9 +1,9 @@
from django.http import HttpResponse, HttpRequest
from django.shortcuts import render
from django.core.paginator import Paginator from django.core.paginator import Paginator
from django.db.models import Q from django.db.models import Q
from django.http import HttpResponse, HttpRequest
from django.shortcuts import render
from apps.gnous_eu.models import Service from apps.gnous_eu.models import Service, Partner
TEMPLATE_PATH = "./" TEMPLATE_PATH = "./"
@ -35,3 +35,13 @@ class ServicesView:
TEMPLATE_PATH + "services.html", TEMPLATE_PATH + "services.html",
{"services": paginator.get_page(page), "search": search}, {"services": paginator.get_page(page), "search": search},
) )
class PartnersView:
@staticmethod
def index(request: HttpRequest, *args, **kwargs) -> HttpResponse:
return render(
request,
TEMPLATE_PATH + "about.html",
{"partners": Partner.objects.all().filter(hidden=False)},
)

View file

@ -25,7 +25,7 @@ SECRET_KEY = local_settings.SECRET_KEY
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True DEBUG = True
ALLOWED_HOSTS = ["127.0.0.1", "localhost", "django", "gnous.eu"] ALLOWED_HOSTS = ["127.0.0.1", "localhost", "192.168.1.21", "django", "gnous.eu"]
CSRF_TRUSTED_ORIGINS = ['gnous.eu'] CSRF_TRUSTED_ORIGINS = ['gnous.eu']
# Application definition # Application definition

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-18 21:44+0000\n" "POT-Creation-Date: 2020-06-19 00:29+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -38,14 +38,14 @@ msgstr "Federated"
msgid "Centralisé" msgid "Centralisé"
msgstr "Centralized" msgstr "Centralized"
#: apps/gnous_eu/templates/about.html:11 apps/gnous_eu/templates/index.html:22 #: apps/gnous_eu/templates/about.html:9 apps/gnous_eu/templates/index.html:16
#: apps/gnous_eu/templates/layouts/head.html:14 #: apps/gnous_eu/templates/layouts/head.html:14
#: apps/gnous_eu/templates/layouts/header.html:33 #: apps/gnous_eu/templates/layouts/header.html:33
#: apps/gnous_eu/templates/layouts/sidebar.html:27 #: apps/gnous_eu/templates/layouts/sidebar.html:32
msgid "À propos" msgid "À propos"
msgstr "About" msgstr "About"
#: apps/gnous_eu/templates/about.html:17 #: apps/gnous_eu/templates/about.html:13
msgid "" msgid ""
"\n" "\n"
"<p>GnousEU est une communauté de passionnés du libre ayant débuté en février " "<p>GnousEU est une communauté de passionnés du libre ayant débuté en février "
@ -93,26 +93,30 @@ msgstr ""
"<code><a href=\"https://git.gnous.eu/orakle\">Orakle</a></code> was in " "<code><a href=\"https://git.gnous.eu/orakle\">Orakle</a></code> was in "
"charge of design.</p>\n" "charge of design.</p>\n"
"<p>GnousEU is hosted on the infrastructure <a href='https://enpls." "<p>GnousEU is hosted on the infrastructure <a href='https://enpls."
"org/'>EnPLS.org</a> infrastructure with servers in France, Netherlands, Germany and " "org/'>EnPLS.org</a> infrastructure with servers in France, Netherlands, "
"Guadeloupe.</p>\n" "Germany and Guadeloupe.</p>\n"
#: apps/gnous_eu/templates/about.html:32
msgid "Partenaires"
msgstr "Partners"
#: apps/gnous_eu/templates/about.html:50
msgid "Voir"
msgstr "View"
#: apps/gnous_eu/templates/about.html:62
msgid "Nous n'avons aucun partenaire..."
msgstr "We don't have any partners..."
#: apps/gnous_eu/templates/index.html:12 #: apps/gnous_eu/templates/index.html:12
msgid "Communauté francophone de passionnés du libre depuis 2017." msgid "Communauté francophone de passionnés du libre depuis 2017."
msgstr "French community of free software enthusiasts since 2017." msgstr "French community of free software enthusiasts since 2017."
#: apps/gnous_eu/templates/index.html:21 #: apps/gnous_eu/templates/index.html:15
#: apps/gnous_eu/templates/services.html:10 #: apps/gnous_eu/templates/services.html:10
msgid "Nos services" msgid "Nos services"
msgstr "Our services" msgstr "Our services"
#: apps/gnous_eu/templates/layouts/foot.html:42
msgid ""
"Bla bla bla... bannière alakon pour dire qu&amp;on utilise des cookies (pour "
"la langue et cette bannière)"
msgstr ""
"GnousEU uses cookies in order to save the language of the site you are using "
"and the closing of this banner."
#: apps/gnous_eu/templates/layouts/footer.html:7 #: apps/gnous_eu/templates/layouts/footer.html:7
msgid "Designé par" msgid "Designé par"
msgstr "Designed by" msgstr "Designed by"
@ -125,15 +129,23 @@ msgstr "Created by"
msgid "Fait avec" msgid "Fait avec"
msgstr "Built with" msgstr "Built with"
#: apps/gnous_eu/templates/layouts/footer.html:44
msgid ""
"Bla bla bla... bannière alakon pour dire qu&amp;on utilise des cookies (pour "
"la langue et cette bannière)"
msgstr ""
"GnousEU uses cookies in order to save the language of the site you are using "
"and the closing of this banner."
#: apps/gnous_eu/templates/layouts/head.html:12 #: apps/gnous_eu/templates/layouts/head.html:12
#: apps/gnous_eu/templates/layouts/header.html:17 #: apps/gnous_eu/templates/layouts/header.html:17
#: apps/gnous_eu/templates/layouts/sidebar.html:13 #: apps/gnous_eu/templates/layouts/sidebar.html:18
msgid "Accueil" msgid "Accueil"
msgstr "Home" msgstr "Home"
#: apps/gnous_eu/templates/layouts/head.html:13 #: apps/gnous_eu/templates/layouts/head.html:13
#: apps/gnous_eu/templates/layouts/header.html:23 #: apps/gnous_eu/templates/layouts/header.html:23
#: apps/gnous_eu/templates/layouts/sidebar.html:20 #: apps/gnous_eu/templates/layouts/sidebar.html:25
msgid "Services" msgid "Services"
msgstr "Services" msgstr "Services"
@ -142,7 +154,7 @@ msgid "Dons"
msgstr "Tips" msgstr "Tips"
#: apps/gnous_eu/templates/layouts/header.html:39 #: apps/gnous_eu/templates/layouts/header.html:39
#: apps/gnous_eu/templates/layouts/sidebar.html:32 #: apps/gnous_eu/templates/layouts/sidebar.html:37
msgid "Donner" msgid "Donner"
msgstr "Tips" msgstr "Tips"
@ -159,27 +171,27 @@ msgstr ""
msgid "Rechercher..." msgid "Rechercher..."
msgstr "Search..." msgstr "Search..."
#: apps/gnous_eu/templates/services.html:43 #: apps/gnous_eu/templates/services.html:40
msgid "Rejoindre !" msgid "Rejoindre !"
msgstr "Join !" msgstr "Join !"
#: apps/gnous_eu/templates/services.html:75 #: apps/gnous_eu/templates/services.html:72
msgid "Précédent" msgid "Précédent"
msgstr "Previous" msgstr "Previous"
#: apps/gnous_eu/templates/services.html:90 #: apps/gnous_eu/templates/services.html:87
msgid "Suivant" msgid "Suivant"
msgstr "Next" msgstr "Next"
#: apps/gnous_eu/templates/services.html:101 #: apps/gnous_eu/templates/services.html:98
msgid "Aucun service trouvé pour la recheche: " msgid "Aucun service trouvé pour la recheche: "
msgstr "No services found for the search: " msgstr "No services found for the search: "
#: apps/gnous_eu/templates/tips.html:12 #: apps/gnous_eu/templates/tips.html:11
msgid "Donnez à GnousEU" msgid "Donnez à GnousEU"
msgstr "Give to GnousEU" msgstr "Give to GnousEU"
#: apps/gnous_eu/templates/tips.html:14 #: apps/gnous_eu/templates/tips.html:13
msgid "" msgid ""
"Participez au développement de la communauté de GnousEU via un don monétaire " "Participez au développement de la communauté de GnousEU via un don monétaire "
"via le site Tipeee." "via le site Tipeee."
@ -187,11 +199,11 @@ msgstr ""
"Participate in the development of the GnousEU community by making a monetary " "Participate in the development of the GnousEU community by making a monetary "
"donation via the Tipeee website." "donation via the Tipeee website."
#: apps/gnous_eu/templates/tips.html:25 #: apps/gnous_eu/templates/tips.html:23
msgid "Vous souhaitez nous donner du materiel ?" msgid "Vous souhaitez nous donner du materiel ?"
msgstr "Would you like to give us some material?" msgstr "Would you like to give us some material?"
#: apps/gnous_eu/templates/tips.html:27 #: apps/gnous_eu/templates/tips.html:25
msgid "" msgid ""
"Vous disposez de materiel réseau ou serveur usagé et vous ne savez pas quoi " "Vous disposez de materiel réseau ou serveur usagé et vous ne savez pas quoi "
"en faire ?" "en faire ?"
@ -199,15 +211,15 @@ msgstr ""
"You have used network or server hardware and you don't know what to do with " "You have used network or server hardware and you don't know what to do with "
"it?" "it?"
#: apps/gnous_eu/templates/tips.html:29 apps/gnous_eu/templates/tips.html:41 #: apps/gnous_eu/templates/tips.html:27 apps/gnous_eu/templates/tips.html:38
msgid "Contactez nous par mail à " msgid "Contactez nous par mail à "
msgstr "Contact us by mail at " msgstr "Contact us by mail at "
#: apps/gnous_eu/templates/tips.html:37 #: apps/gnous_eu/templates/tips.html:34
msgid "Vous êtes fournisseur de services ?" msgid "Vous êtes fournisseur de services ?"
msgstr "Are you a service provider?" msgstr "Are you a service provider?"
#: apps/gnous_eu/templates/tips.html:39 #: apps/gnous_eu/templates/tips.html:36
msgid "" msgid ""
"Discutons plus en détails de votre proposition ! Nous sommes ouvert à tout " "Discutons plus en détails de votre proposition ! Nous sommes ouvert à tout "
"partenariat." "partenariat."

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-18 21:44+0000\n" "POT-Creation-Date: 2020-06-19 00:29+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -38,14 +38,14 @@ msgstr ""
msgid "Centralisé" msgid "Centralisé"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/about.html:11 apps/gnous_eu/templates/index.html:22 #: apps/gnous_eu/templates/about.html:9 apps/gnous_eu/templates/index.html:16
#: apps/gnous_eu/templates/layouts/head.html:14 #: apps/gnous_eu/templates/layouts/head.html:14
#: apps/gnous_eu/templates/layouts/header.html:33 #: apps/gnous_eu/templates/layouts/header.html:33
#: apps/gnous_eu/templates/layouts/sidebar.html:27 #: apps/gnous_eu/templates/layouts/sidebar.html:32
msgid "À propos" msgid "À propos"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/about.html:17 #: apps/gnous_eu/templates/about.html:13
msgid "" msgid ""
"\n" "\n"
"<p>GnousEU est une communauté de passionnés du libre ayant débuté en février " "<p>GnousEU est une communauté de passionnés du libre ayant débuté en février "
@ -74,23 +74,27 @@ msgid ""
"Guadeloupe.</p>\n" "Guadeloupe.</p>\n"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/about.html:32
msgid "Partenaires"
msgstr ""
#: apps/gnous_eu/templates/about.html:50
msgid "Voir"
msgstr ""
#: apps/gnous_eu/templates/about.html:62
msgid "Nous n'avons aucun partenaire..."
msgstr ""
#: apps/gnous_eu/templates/index.html:12 #: apps/gnous_eu/templates/index.html:12
msgid "Communauté francophone de passionnés du libre depuis 2017." msgid "Communauté francophone de passionnés du libre depuis 2017."
msgstr "" msgstr ""
#: apps/gnous_eu/templates/index.html:21 #: apps/gnous_eu/templates/index.html:15
#: apps/gnous_eu/templates/services.html:10 #: apps/gnous_eu/templates/services.html:10
msgid "Nos services" msgid "Nos services"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/layouts/foot.html:42
msgid ""
"Bla bla bla... bannière alakon pour dire qu&amp;on utilise des cookies (pour "
"la langue et cette bannière)"
msgstr ""
"GnousEU utilise des cookies afin de sauvegarder la langue du site que vous "
"utilisez ainsi que pour la fermeture de cette bannière."
#: apps/gnous_eu/templates/layouts/footer.html:7 #: apps/gnous_eu/templates/layouts/footer.html:7
msgid "Designé par" msgid "Designé par"
msgstr "" msgstr ""
@ -103,15 +107,23 @@ msgstr ""
msgid "Fait avec" msgid "Fait avec"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/layouts/footer.html:44
msgid ""
"Bla bla bla... bannière alakon pour dire qu&amp;on utilise des cookies (pour "
"la langue et cette bannière)"
msgstr ""
"GnousEU utilise des cookies afin de sauvegarder la langue du site que vous "
"utilisez ainsi que pour la fermeture de cette bannière."
#: apps/gnous_eu/templates/layouts/head.html:12 #: apps/gnous_eu/templates/layouts/head.html:12
#: apps/gnous_eu/templates/layouts/header.html:17 #: apps/gnous_eu/templates/layouts/header.html:17
#: apps/gnous_eu/templates/layouts/sidebar.html:13 #: apps/gnous_eu/templates/layouts/sidebar.html:18
msgid "Accueil" msgid "Accueil"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/layouts/head.html:13 #: apps/gnous_eu/templates/layouts/head.html:13
#: apps/gnous_eu/templates/layouts/header.html:23 #: apps/gnous_eu/templates/layouts/header.html:23
#: apps/gnous_eu/templates/layouts/sidebar.html:20 #: apps/gnous_eu/templates/layouts/sidebar.html:25
msgid "Services" msgid "Services"
msgstr "" msgstr ""
@ -120,7 +132,7 @@ msgid "Dons"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/layouts/header.html:39 #: apps/gnous_eu/templates/layouts/header.html:39
#: apps/gnous_eu/templates/layouts/sidebar.html:32 #: apps/gnous_eu/templates/layouts/sidebar.html:37
msgid "Donner" msgid "Donner"
msgstr "" msgstr ""
@ -135,51 +147,51 @@ msgstr ""
msgid "Rechercher..." msgid "Rechercher..."
msgstr "" msgstr ""
#: apps/gnous_eu/templates/services.html:43 #: apps/gnous_eu/templates/services.html:40
msgid "Rejoindre !" msgid "Rejoindre !"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/services.html:75 #: apps/gnous_eu/templates/services.html:72
msgid "Précédent" msgid "Précédent"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/services.html:90 #: apps/gnous_eu/templates/services.html:87
msgid "Suivant" msgid "Suivant"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/services.html:101 #: apps/gnous_eu/templates/services.html:98
msgid "Aucun service trouvé pour la recheche: " msgid "Aucun service trouvé pour la recheche: "
msgstr "" msgstr ""
#: apps/gnous_eu/templates/tips.html:12 #: apps/gnous_eu/templates/tips.html:11
msgid "Donnez à GnousEU" msgid "Donnez à GnousEU"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/tips.html:14 #: apps/gnous_eu/templates/tips.html:13
msgid "" msgid ""
"Participez au développement de la communauté de GnousEU via un don monétaire " "Participez au développement de la communauté de GnousEU via un don monétaire "
"via le site Tipeee." "via le site Tipeee."
msgstr "" msgstr ""
#: apps/gnous_eu/templates/tips.html:25 #: apps/gnous_eu/templates/tips.html:23
msgid "Vous souhaitez nous donner du materiel ?" msgid "Vous souhaitez nous donner du materiel ?"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/tips.html:27 #: apps/gnous_eu/templates/tips.html:25
msgid "" msgid ""
"Vous disposez de materiel réseau ou serveur usagé et vous ne savez pas quoi " "Vous disposez de materiel réseau ou serveur usagé et vous ne savez pas quoi "
"en faire ?" "en faire ?"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/tips.html:29 apps/gnous_eu/templates/tips.html:41 #: apps/gnous_eu/templates/tips.html:27 apps/gnous_eu/templates/tips.html:38
msgid "Contactez nous par mail à " msgid "Contactez nous par mail à "
msgstr "" msgstr ""
#: apps/gnous_eu/templates/tips.html:37 #: apps/gnous_eu/templates/tips.html:34
msgid "Vous êtes fournisseur de services ?" msgid "Vous êtes fournisseur de services ?"
msgstr "" msgstr ""
#: apps/gnous_eu/templates/tips.html:39 #: apps/gnous_eu/templates/tips.html:36
msgid "" msgid ""
"Discutons plus en détails de votre proposition ! Nous sommes ouvert à tout " "Discutons plus en détails de votre proposition ! Nous sommes ouvert à tout "
"partenariat." "partenariat."

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB