Skip to content

Commit 15558e1

Browse files
committed
Add team functionnal page
Signed-off-by: Bruno Lesieur <bruno.lesieur@gmail.com>
1 parent 5ffb678 commit 15558e1

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

src/v2/guide/team.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Meet the Team (EN)
2+
title: Rencontrer l'équipe
33
type: guide
44
order: 31
55
---
@@ -19,20 +19,20 @@ order: 31
1919
</h3>
2020
<dl>
2121
<template v-if="profile.reposOfficial">
22-
<dt>Core focus</dt>
22+
<dt>Cœur de Vue</dt>
2323
<dd>
2424
<ul>
25-
<li v-for="repo in profile.reposOfficial">
25+
<li v-for="dépôt à profile.reposOfficial">
2626
<a :href="githubUrl('vuejs', repo)" target=_blank>{{ repo }}</a>
2727
</li>
2828
</ul>
2929
</dd>
3030
</template>
3131
<template v-if="profile.github && profile.reposPersonal">
32-
<dt>Ecosystem</dt>
32+
<dt>Écosystème</dt>
3333
<dd>
3434
<ul>
35-
<li v-for="repo in profile.reposPersonal">
35+
<li v-for="dépôt à profile.reposPersonal">
3636
<a :href="githubUrl(profile.github, repo)" target=_blank>{{ repo }}</a>
3737
</li>
3838
</ul>
@@ -41,7 +41,7 @@ order: 31
4141
<template v-if="profile.work">
4242
<dt>
4343
<i class="fa fa-briefcase"></i>
44-
<span class="sr-only">Work</span>
44+
<span class="sr-only">Travail</span>
4545
</dt>
4646
<dd v-html="workHtml"></dd>
4747
</template>
@@ -51,20 +51,20 @@ order: 31
5151
<span class="sr-only">Distance</span>
5252
</dt>
5353
<dd>
54-
About
54+
À propos
5555
<span
5656
v-if="profile.distanceInKm <= 150"
57-
:title="profile.name + ' is close enough to commute to your location.'"
57+
:title="profile.name + ' est assez proche pour que vous puissiez vous rencontrer.'"
5858
class="user-match"
59-
>{{ textDistance }} away</span>
60-
<template v-else>{{ textDistance }} away</template>
61-
in {{ profile.city }}
59+
>{{ textDistance }} de</span>
60+
<template v-else>{{ textDistance }} de</template>
61+
à {{ profile.city }}
6262
</dd>
6363
</span>
6464
<template v-else-if="profile.city">
6565
<dt>
6666
<i class="fa fa-map-marker"></i>
67-
<span class="sr-only">City</span>
67+
<span class="sr-only">Ville</span>
6868
</dt>
6969
<dd>
7070
{{ profile.city }}
@@ -73,14 +73,14 @@ order: 31
7373
<template v-if="profile.languages">
7474
<dt>
7575
<i class="fa fa-globe"></i>
76-
<span class="sr-only">Languages</span>
76+
<span class="sr-only">Langues</span>
7777
</dt>
7878
<dd v-html="languageListHtml" class="language-list"></dd>
7979
</template>
8080
<template v-if="profile.links">
8181
<dt>
8282
<i class="fa fa-link"></i>
83-
<span class="sr-only">Links</span>
83+
<span class="sr-only">Liens</span>
8484
</dt>
8585
<dd>
8686
<ul>
@@ -93,7 +93,7 @@ order: 31
9393
<footer v-if="profile.github || profile.twitter" class="social">
9494
<a class=github v-if="profile.github" :href="githubUrl(profile.github)">
9595
<i class="fa fa-github"></i>
96-
<span class="sr-only">Github</span>
96+
<span class="sr-only">GitHub</span>
9797
</a>
9898
<a class=twitter v-if="profile.twitter" :href="'https://twitter.com/' + profile.twitter">
9999
<i class="fa fa-twitter"></i>
@@ -109,7 +109,7 @@ order: 31
109109
<div class="team">
110110

111111
<h2 id="the-core-team">
112-
The Core Team
112+
Équipe principale
113113
<button
114114
v-if="geolocationSupported && !userPosition"
115115
@click="getUserPosition"
@@ -122,21 +122,21 @@ order: 31
122122
></i>
123123
<template v-else>
124124
<i class="fa fa-map-marker"></i>
125-
<span>find near me</span>
125+
<span>qui est près de moi</span>
126126
</template>
127127
</button>
128128
</h2>
129129

130130
<p v-if="errorGettingLocation" class="tip">
131-
Failed to get your location.
131+
N'a pas trouver de lieu.
132132
</p>
133133

134134
<p>
135-
The development of Vue and its ecosystem is guided by an international team, some of whom have chosen to be featured below.
135+
Le développement de Vue et son écosystème est assuré par une équipe internationale. Certains d'entre eux ont choisi d'apparaître ci-dessous.
136136
</p>
137137

138138
<p v-if="userPosition" class="success">
139-
The core team has been sorted by their distance from you.
139+
L'équipe principale a été triée en fonction de la distance qui vous sépare.
140140
</p>
141141

142142
<vuer-profile
@@ -148,7 +148,7 @@ order: 31
148148

149149
<div class="team">
150150
<h2 id="community-partners">
151-
Community Partners
151+
Partenaires de la communauté
152152
<button
153153
v-if="geolocationSupported && !userPosition"
154154
@click="getUserPosition"
@@ -161,21 +161,21 @@ order: 31
161161
></i>
162162
<template v-else>
163163
<i class="fa fa-map-marker"></i>
164-
<span>find near me</span>
164+
<span>qui est près de moi</span>
165165
</template>
166166
</button>
167167
</h2>
168168

169169
<p v-if="errorGettingLocation" class="tip">
170-
Failed to get your location.
170+
N'a pas trouver de lieu.
171171
</p>
172172

173173
<p>
174-
Some members of the Vue community have so enriched it, that they deserve special mention. We've developed a more intimate relationship with these key partners, often coordinating with them on upcoming features and news.
174+
Certains membres de la communauté Vue l'ont tellement enrichie, qu'ils méritent une mention spéciale. Nous avons développé une relation plus intime avec ces partenaires clés, en nous coordonnant souvent sur les nouvelles fonctionnalités et les nouveautés.
175175
</p>
176176

177177
<p v-if="userPosition" class="success">
178-
The community partners have been sorted by their distance from you.
178+
Les partenaires de la communauté ont été triés en fonction de la distance qui vous sépare.
179179
</p>
180180

181181
<vuer-profile
@@ -678,7 +678,7 @@ order: 31
678678
'class="user-match" ' +
679679
'title="' +
680680
vm.profile.name +
681-
' can give technical talks in your preferred language.' +
681+
' peut discuter techniquement avec vous dans votre langue préférée.' +
682682
'"' +
683683
'\>' + language + '</span>'
684684
)

0 commit comments

Comments
 (0)