1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
const fr = {
branding: {
description: 'Intégrateur web',
},
nav: {
title: 'Liste des applications :',
},
main: {
instructions:
"Sélectionnez une application dans le menu pour afficher un aperçu en direct et les informations sur l'application (description, technologies, dépôts).",
project: {
details: {
about: 'À propos de {{name}}',
repo: {
one: 'Dépôt :',
other: 'Dépôts :',
zero: 'Dépôt :',
},
tech: {
one: 'Technologie :',
other: 'Technologies :',
zero: 'Technologie :',
},
},
},
},
footer: {
legalNotice: {
txt: 'Mentions légales',
link: 'mentions-legales.php',
},
license: 'Licence MIT',
},
};
export default fr;
|