This commit is contained in:
PascalMarchesseault
2024-08-22 12:39:03 -04:00
parent 1052c4326e
commit 4ecc98f645
3 changed files with 6 additions and 4 deletions

View File

@@ -30,6 +30,7 @@
}, },
"header": { "header": {
"myprofile": "My profile", "myprofile": "My profile",
"wallet": "Wallet" "wallet": "Wallet",
"Signout": "Sign out"
} }
} }

View File

@@ -30,7 +30,8 @@
}, },
"header": { "header": {
"myprofile": "Mon profil", "myprofile": "Mon profil",
"wallet": "PorteFeuille" "wallet": "PorteFeuille",
"Signout": "se déconnecter"
} }
} }

View File

@@ -127,12 +127,12 @@
</v-list-item> </v-list-item>
<v-list-item class="nav-button"> <v-list-item class="nav-button">
<v-list-item-title> <v-list-item-title>
<v-btn to="/wallet" class="w-100" variant="plain">Portefeuille</v-btn> <v-btn to="/wallet" class="w-100" variant="plain">{{ $t('header.wallet') }}</v-btn>
</v-list-item-title> </v-list-item-title>
</v-list-item> </v-list-item>
<v-list-item class="nav-button"> <v-list-item class="nav-button">
<v-list-item-title> <v-list-item-title>
<v-btn @click="authStore.logout" class="w-100" variant="plain">Déconnexion</v-btn> <v-btn @click="authStore.logout" class="w-100" variant="plain">{{ $t('header.Signout') }}</v-btn>
</v-list-item-title> </v-list-item-title>
</v-list-item> </v-list-item>
</template> </template>