Skip to content

Commit

Permalink
fix(i18n): correct mistranslations
Browse files Browse the repository at this point in the history
  • Loading branch information
finxol committed Nov 6, 2022
1 parent be3b470 commit f0c1cba
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
</v-icon>
</NuxtLink>
</template>
<span>Publier un trajet</span>
<span>{{ $t('appBar.publishTrip') }}</span>
</v-tooltip>
</v-sheet>
</v-app-bar>
Expand Down Expand Up @@ -175,7 +175,7 @@
router
:to="localePath('/login')"
>
<span>Connexion</span>
<span>{{ $t('appBar.login') }}</span>

<v-icon>mdi-account-circle</v-icon>
</v-btn>
Expand Down
3 changes: 2 additions & 1 deletion locales/en-GB.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export default <Locale>{
login: 'Log in',
myActivity: 'My activities',
myProfile: 'My profile',
publishTrip: 'Publish a trip',
},
builtForMobileWarning: 'UniCovoit is optimized for mobile devices. Using a computer may cause performance issues.',
contactForm: 'contact form',
Expand All @@ -37,7 +38,7 @@ export default <Locale>{
You can also search for trips to join.<br>
No commission is taken by UniCovoit.`
}, {
title: "Are users students?",
title: "Are all users students?",
content: `Yes, it is required to verify your student status before making a reservation or placing an offer.
This verification is done through your student email address.`
}, {
Expand Down
1 change: 1 addition & 0 deletions locales/fr-FR.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export default <Locale>{
login: 'Connexion',
myActivity: 'Mes activités',
myProfile: 'Mon profil',
publishTrip: 'Publier un trajet',
},
builtForMobileWarning: 'UniCovoit est optimisé pour les appareils mobiles. En utilisant un ordinateur, vous pouvez avoir des problèmes de performances.',
contactForm: 'formulaire de contact',
Expand Down
1 change: 1 addition & 0 deletions locales/locale_interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export default interface Locale {
login: string,
myActivity: string,
myProfile: string,
publishTrip: string,
},
builtForMobileWarning: string,
contactForm: string,
Expand Down

0 comments on commit f0c1cba

Please sign in to comment.