i18n: s'appuyer sur le fichier fr.json pour l'edition du profil et la page de connexion
This commit is contained in:
@@ -26,11 +26,11 @@ const form = useForm({
|
||||
<section>
|
||||
<header>
|
||||
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">
|
||||
Informations du Profil
|
||||
{{ __('Profile Information') }}
|
||||
</h2>
|
||||
|
||||
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
|
||||
Mettez à jour les informations de profil et l'adresse email de votre compte.
|
||||
{{ __("Update your account's profile information and email address.") }}
|
||||
</p>
|
||||
</header>
|
||||
|
||||
@@ -39,7 +39,7 @@ const form = useForm({
|
||||
class="mt-6 space-y-6"
|
||||
>
|
||||
<div>
|
||||
<InputLabel for="name" value="Nom" />
|
||||
<InputLabel for="name" :value="__('Name')" />
|
||||
|
||||
<TextInput
|
||||
id="name"
|
||||
@@ -55,7 +55,7 @@ const form = useForm({
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<InputLabel for="email" value="Email" />
|
||||
<InputLabel for="email" :value="__('Email')" />
|
||||
|
||||
<TextInput
|
||||
id="email"
|
||||
@@ -71,14 +71,14 @@ const form = useForm({
|
||||
|
||||
<div v-if="mustVerifyEmail && user.email_verified_at === null">
|
||||
<p class="mt-2 text-sm text-gray-800 dark:text-gray-200">
|
||||
Votre adresse email n'est pas vérifiée.
|
||||
{{ __('Your email address is unverified.') }}
|
||||
<Link
|
||||
:href="route('verification.send')"
|
||||
method="post"
|
||||
as="button"
|
||||
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"
|
||||
>
|
||||
Cliquez ici pour renvoyer l'email de vérification.
|
||||
{{ __('Click here to re-send the verification email.') }}
|
||||
</Link>
|
||||
</p>
|
||||
|
||||
@@ -86,12 +86,12 @@ const form = useForm({
|
||||
v-show="status === 'verification-link-sent'"
|
||||
class="mt-2 text-sm font-medium text-green-600 dark:text-green-400"
|
||||
>
|
||||
Un nouveau lien de vérification a été envoyé à votre adresse email.
|
||||
{{ __('A new verification link has been sent to your email address.') }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flex items-center gap-4">
|
||||
<PrimaryButton :disabled="form.processing">Enregistrer</PrimaryButton>
|
||||
<PrimaryButton :disabled="form.processing">{{ __('Save') }}</PrimaryButton>
|
||||
|
||||
<Transition
|
||||
enter-active-class="transition ease-in-out"
|
||||
@@ -103,7 +103,7 @@ const form = useForm({
|
||||
v-if="form.recentlySuccessful"
|
||||
class="text-sm text-gray-600 dark:text-gray-400"
|
||||
>
|
||||
Enregistré.
|
||||
{{ __('Saved.') }}
|
||||
</p>
|
||||
</Transition>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user