translation: traduire l'edition du profil en francais

This commit is contained in:
jeremy bayse
2026-06-22 13:33:47 +02:00
parent 2795335083
commit 72c6140949
4 changed files with 26 additions and 31 deletions
@@ -37,18 +37,17 @@ const updatePassword = () => {
<section>
<header>
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">
Update Password
Mettre à jour le Mot de Passe
</h2>
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
Ensure your account is using a long, random password to stay
secure.
Assurez-vous que votre compte utilise un mot de passe long et aléatoire pour rester sécurisé.
</p>
</header>
<form @submit.prevent="updatePassword" class="mt-6 space-y-6">
<div>
<InputLabel for="current_password" value="Current Password" />
<InputLabel for="current_password" value="Mot de Passe Actuel" />
<TextInput
id="current_password"
@@ -66,7 +65,7 @@ const updatePassword = () => {
</div>
<div>
<InputLabel for="password" value="New Password" />
<InputLabel for="password" value="Nouveau Mot de Passe" />
<TextInput
id="password"
@@ -83,7 +82,7 @@ const updatePassword = () => {
<div>
<InputLabel
for="password_confirmation"
value="Confirm Password"
value="Confirmer le Mot de Passe"
/>
<TextInput
@@ -101,7 +100,7 @@ const updatePassword = () => {
</div>
<div class="flex items-center gap-4">
<PrimaryButton :disabled="form.processing">Save</PrimaryButton>
<PrimaryButton :disabled="form.processing">Enregistrer</PrimaryButton>
<Transition
enter-active-class="transition ease-in-out"
@@ -113,7 +112,7 @@ const updatePassword = () => {
v-if="form.recentlySuccessful"
class="text-sm text-gray-600 dark:text-gray-400"
>
Saved.
Enregistré.
</p>
</Transition>
</div>