I have translated ManageAccount

This commit is contained in:
PascalMarchesseault
2024-09-02 22:41:03 -04:00
parent 3395245ec2
commit d33d3885da
4 changed files with 27 additions and 14 deletions

View File

@@ -101,5 +101,12 @@
"menucolor": "Menu color", "menucolor": "Menu color",
"pageinformation": "Your page information", "pageinformation": "Your page information",
"socialnetwork": "Social Network" "socialnetwork": "Social Network"
},
"accountmanagement": {
"accounts": "Account",
"accountmanagement": "Account Management",
"pageid": "Page ID",
"addAccount": "Add Account",
"authoritygranted": "Granted Permissions"
} }
} }

View File

@@ -38,17 +38,17 @@
"wallet": "PorteFeuille", "wallet": "PorteFeuille",
"Signout": "se déconnecter" "Signout": "se déconnecter"
}, },
"message": { "message": {
"edit" : "Modifier", "edit": "Modifier",
"delete": "Effacer", "delete": "Effacer",
"report": "Signaler", "report": "Signaler",
"yourcomment": "Votre commentaire..." "yourcomment": "Votre commentaire..."
}, },
"contentCard": { "contentCard": {
"commenttitle": "commentaires", "commenttitle": "commentaires",
"edit" : "Modifier", "edit": "Modifier",
"delete" : "Effacer", "delete": "Effacer",
"report" : "signaler", "report": "signaler",
"deletecontenttitle": " Supprimer ce contenu?", "deletecontenttitle": " Supprimer ce contenu?",
"deeletecontentwarning": "Êtes-vous sûr de vouloir supprimer le contenu?" "deeletecontentwarning": "Êtes-vous sûr de vouloir supprimer le contenu?"
}, },
@@ -101,6 +101,13 @@
"menucolor": "Couleur des menus", "menucolor": "Couleur des menus",
"pageinformation": "Informations de votre page", "pageinformation": "Informations de votre page",
"socialnetwork": "Réseaux sociaux" "socialnetwork": "Réseaux sociaux"
},
"accountmanagement": {
"accounts" : "comptes",
"accountmanagement": "Gestion des comptes",
"pageid": "ID de la page",
"addaccount": "Ajouter un compte",
"authoritygranted": "Autorisations accordées"
} }
} }

View File

@@ -17,7 +17,6 @@ const subscriptionStore = useSubscriptionStore()
class="rounded-full mx-2" class="rounded-full mx-2"
width="32px" width="32px"
height="32px"> height="32px">
{{ subscription.creatorName }} {{ subscription.creatorName }}
</div> </div>

View File

@@ -1,13 +1,13 @@
<template> <template>
<div class="flex flex-col items-center w-full"> <div class="flex flex-col items-center w-full">
<h1 class="uppercase pb-5 text-2xl"> <v-icon class="mr-2 text">mdi-account</v-icon> Gestion des comptes</h1> <h1 class="uppercase pb-5 text-2xl"> <v-icon class="mr-2 text">mdi-account</v-icon>{{$t('accountmanagement.accountmanagement')}}</h1>
<div class="border rounded-2xl w-full max-w-[800px]"> <div class="border rounded-2xl w-full max-w-[800px]">
<div class="py-5 uppercase ml-4">Comptes</div> <div class="py-5 uppercase ml-4">{{$t('accountmanagement.accounts')}}</div>
<div class="flex flex-col w-full"> <div class="flex flex-col w-full">
<button class="HoverBtn active:bg-gray-300 py-2 px-4 border-gray-400 shadow flex items-center transition duration-200 ease-in-out w-full"> <button class="HoverBtn active:bg-gray-300 py-2 px-4 border-gray-400 shadow flex items-center transition duration-200 ease-in-out w-full">
<span class="min-w-32 text-left">Id de la page</span> <span class="min-w-32 text-left">{{$t('accountmanagement.pageid')}}</span>
<span class="flex-auto pr-6 text-left">Nom de la page / utilisateur </span> <span class="flex-auto pr-6 text-left">Nom de la page / utilisateur </span>
<span class="flex-none"> <span class="flex-none">
<img <img
@@ -20,7 +20,7 @@
</button> </button>
<button class="HoverBtn active:bg-gray-300 py-2 px-4 border-gray-400 shadow flex items-center transition duration-200 ease-in-out rounded-b-2xl w-full"> <button class="HoverBtn active:bg-gray-300 py-2 px-4 border-gray-400 shadow flex items-center transition duration-200 ease-in-out rounded-b-2xl w-full">
<span class="flex-none pa-2 min-w-32 text-left">Ajouter un compte</span> <span class="flex-none pa-2 min-w-32 text-left">{{$t('accountmanagement.addAccount')}}</span>
<span class="flex-none text-fuchsia-800"> <span class="flex-none text-fuchsia-800">
<v-icon>mdi-plus-circle</v-icon> <v-icon>mdi-plus-circle</v-icon>
@@ -30,11 +30,11 @@
</div> </div>
<div class="border rounded-2xl w-full max-w-[800px] mt-10"> <div class="border rounded-2xl w-full max-w-[800px] mt-10">
<div class="py-5 uppercase ml-4">Autorisations accordées</div> <div class="py-5 uppercase ml-4">{{$t('accountmanagement.authoritygranted')}}</div>
<div class="flex flex-col w-full"> <div class="flex flex-col w-full">
<button class="HoverBtn active:bg-gray-300 py-2 px-4 border-gray-400 shadow flex items-center transition duration-200 ease-in-out w-full"> <button class="HoverBtn active:bg-gray-300 py-2 px-4 border-gray-400 shadow flex items-center transition duration-200 ease-in-out w-full">
<span class="min-w-32 text-left">Id de la page</span> <span class="min-w-32 text-left">{{$t('accountmanagement.pageid')}}</span>
<span class="flex-auto pr-6 text-left">Nom de utilisateur </span> <span class="flex-auto pr-6 text-left">Nom de utilisateur </span>
<span class="flex-none"> <span class="flex-none">
<img <img
@@ -47,7 +47,7 @@
</button> </button>
<button class="HoverBtn active:bg-gray-300 py-2 px-4 border-gray-400 shadow flex items-center transition duration-200 ease-in-out rounded-b-2xl w-full"> <button class="HoverBtn active:bg-gray-300 py-2 px-4 border-gray-400 shadow flex items-center transition duration-200 ease-in-out rounded-b-2xl w-full">
<span class="flex-none pa-2 min-w-32 text-left">Ajouter un compte</span> <span class="flex-none pa-2 min-w-32 text-left">{{$t('accountmanagement.addaccount')}}</span>
<span class="flex-none text-fuchsia-800"> <span class="flex-none text-fuchsia-800">
<v-icon>mdi-plus-circle</v-icon> <v-icon>mdi-plus-circle</v-icon>