translation: traduire la page de connexion en francais

This commit is contained in:
jeremy bayse
2026-06-22 13:35:18 +02:00
parent 72c6140949
commit 6d730a4363
+5 -5
View File
@@ -31,7 +31,7 @@ const submit = () => {
<template>
<GuestLayout>
<Head title="Log in" />
<Head title="Connexion" />
<div v-if="status" class="mb-4 text-sm font-medium text-green-600">
{{ status }}
@@ -55,7 +55,7 @@ const submit = () => {
</div>
<div class="mt-4">
<InputLabel for="password" value="Password" />
<InputLabel for="password" value="Mot de Passe" />
<TextInput
id="password"
@@ -73,7 +73,7 @@ const submit = () => {
<label class="flex items-center">
<Checkbox name="remember" v-model:checked="form.remember" />
<span class="ms-2 text-sm text-gray-600 dark:text-gray-400"
>Remember me</span
>Se souvenir de moi</span
>
</label>
</div>
@@ -84,7 +84,7 @@ const submit = () => {
:href="route('password.request')"
class="rounded-md text-sm text-gray-600 underline hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 dark:text-gray-400 dark:hover:text-gray-100 dark:focus:ring-offset-gray-800"
>
Forgot your password?
Mot de passe oublié ?
</Link>
<PrimaryButton
@@ -92,7 +92,7 @@ const submit = () => {
:class="{ 'opacity-25': form.processing }"
:disabled="form.processing"
>
Log in
Se connecter
</PrimaryButton>
</div>
</form>