-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
fr.js
105 lines (93 loc) · 2.39 KB
/
fr.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
export default {
/**
* NAMING RULES
*
* {type_of_vue_file}: {
* {component_name}: {
* {noun_or_abbr}: 'String'
* }
* }
*
* e.g.
*
* components: {
* hero: {
* title: 'Do they <strong>Hacktoberfest?</strong>',
* tagline: 'Check if a project takes part in <strong>Hacktoberfest</strong>',
* }
* }
*
* Usage:
*
* $t('components.announcement.button')
*/
/**
* Layout strings
*
* Strings used in /layouts/**.vue files
*/
/**
* Page strings
*
* Strings used in /pages/**.vue files
*/
/**
* Component strings
*
* Strings used in /components/**.vue files
*/
components: {
announcement: {
button: 'site non officiel',
text:
'Cest un site non officiel. Cliquez pour le site officiel du Hacktoberfest.',
},
navigation: {
home: 'Home',
details: 'Details',
check: 'Vérifier un référentiel',
},
check_repository: {
title: 'Est-ce qu ils <strong>Hacktoberfest</strong>?',
error: 'Erreur',
retry: 'Vérifiez un autre?',
success:
'Ce projet participe à <strong>Hacktoberfest</strong> jusque là.',
failure:
'Ce projet ne participe pas à <strong>Hacktoberfest</strong> jusque là.',
results_are_in: 'Les résultats sont arrivés pour',
cta: 'Est-ce qu ils ?',
noRepoFound:
'Aucun contrôle de repo précédent trouvé ... pour l instant!',
},
color_picker: {
label: 'Dark Mode',
},
footer: {
presented_by: 'Hacktoberfest présenté par',
offical_site: 'Site officiel du Hacktoberfest',
},
hero: {
title: 'est-ce qu ils <strong>Hacktoberfest</strong>?',
tagline:
'Vérifiez si un projet participe au hacktoberfest cette année en saisissant l URL du référentiel.',
cta: 'Vérifier un référentiel',
},
lang_picker: {
alt: 'Langue',
},
logo: {
alt: 'Hacktoberfest Logo',
},
repository: {
has_topic: '<code>hacktoberfest</code> topic',
has_pr: '<code>hacktoberfest-accepted</code> PRs',
no_topic: 'Disparu <code>hacktoberfest</code> sujet',
no_pr: 'Non <code>hacktoberfest-accepted</code> PRs',
banned: 'Exclus du Hacktoberfest',
remove: 'Retirer',
refresh: 'Rafraîchir',
issues_need_help: "les problèmes ont besoin d'aide",
},
},
}