Skip to content

Commit

Permalink
Merge pull request #8 from xebia-france/fr-to-en
Browse files Browse the repository at this point in the history
🌐 feat(talk+schedule views and components): translate from FR to EN
  • Loading branch information
blacroix authored Sep 18, 2022
2 parents db518ee + fda6244 commit 5b1267c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/components/Error.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<template>
<div class="error">Une erreur s'est produite, veuillez essayer à nouveau ou <a
<div class="error">An error occurred, please try again or <a
href="https://github.com/xebia-france/schedule-view-conf-companion/issues"
target="_blank"
class="issues"
>
remonter un bug</a>.
send a bug report</a>.
</div>
</template>

Expand Down
4 changes: 2 additions & 2 deletions src/components/Header/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
props: ['day'],
computed: {
theDay: function () {
moment.locale('fr');
return moment(this.day).format('D MMMM YYYY')
moment.locale('en');
return moment(this.day).format('Do MMMM YYYY')
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Loading.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="loading">Récupération du planning, veuillez patienter...</div>
<div class="loading">Retrieving planning, please wait...</div>
</template>

<script>
Expand Down
6 changes: 3 additions & 3 deletions src/views/TalkInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</div>
<h1>{{ talk.title }}</h1>
<VueMarkdown class="summary">
{{ talk.summary || 'Aucune description.' }}
{{ talk.summary || 'No talk summary.' }}
</VueMarkdown>
<a
class="speaker"
Expand All @@ -30,9 +30,9 @@
class="rate"
target="_blank"
:href="`https://conf-companion.firebaseapp.com/rate/${talk.conferenceId}#${talk.id}`">
Laisser un commentaire
Leave a comment
</a>
<router-link class="back" to="/" replace>Retour au planning</router-link>
<router-link class="back" to="/" replace>Back to the planning</router-link>
</section>
</template>

Expand Down

0 comments on commit 5b1267c

Please sign in to comment.