diff --git a/stubs/auth/resources/views/auth/login.blade.php b/stubs/auth/resources/views/auth/login.blade.php index eac7864..101c9e2 100644 --- a/stubs/auth/resources/views/auth/login.blade.php +++ b/stubs/auth/resources/views/auth/login.blade.php @@ -1,5 +1,5 @@ @extends('layouts.auth') -@section('title', 'Sign in to your account') +@section('title', __('Sign in to your account')) @section('content')
diff --git a/stubs/auth/resources/views/auth/passwords/confirm.blade.php b/stubs/auth/resources/views/auth/passwords/confirm.blade.php index 0f39ec7..76d6252 100644 --- a/stubs/auth/resources/views/auth/passwords/confirm.blade.php +++ b/stubs/auth/resources/views/auth/passwords/confirm.blade.php @@ -1,5 +1,5 @@ @extends('layouts.auth') -@section('title', 'Confirm your password') +@section('title', __('Confirm your password')) @section('content')
diff --git a/stubs/auth/resources/views/auth/passwords/email.blade.php b/stubs/auth/resources/views/auth/passwords/email.blade.php index 0155273..a773487 100644 --- a/stubs/auth/resources/views/auth/passwords/email.blade.php +++ b/stubs/auth/resources/views/auth/passwords/email.blade.php @@ -1,5 +1,5 @@ @extends('layouts.auth') -@section('title', 'Reset password') +@section('title', __('Reset password')) @section('content')
diff --git a/stubs/auth/resources/views/auth/passwords/reset.blade.php b/stubs/auth/resources/views/auth/passwords/reset.blade.php index 7b9ab06..b18df4c 100644 --- a/stubs/auth/resources/views/auth/passwords/reset.blade.php +++ b/stubs/auth/resources/views/auth/passwords/reset.blade.php @@ -1,5 +1,5 @@ @extends('layouts.auth') -@section('title', 'Reset password') +@section('title', __('Reset password')) @section('content')
diff --git a/stubs/auth/resources/views/auth/register.blade.php b/stubs/auth/resources/views/auth/register.blade.php index b2e06ba..ba06ae2 100644 --- a/stubs/auth/resources/views/auth/register.blade.php +++ b/stubs/auth/resources/views/auth/register.blade.php @@ -1,5 +1,5 @@ @extends('layouts.auth') -@section('title', 'Create a new account') +@section('title', __('Create a new account')) @section('content')
diff --git a/stubs/auth/resources/views/auth/verify.blade.php b/stubs/auth/resources/views/auth/verify.blade.php index a4128b6..b1644dc 100644 --- a/stubs/auth/resources/views/auth/verify.blade.php +++ b/stubs/auth/resources/views/auth/verify.blade.php @@ -1,5 +1,5 @@ @extends('layouts.auth') -@section('title', 'Verify your email address') +@section('title', __('Verify your email address')) @section('content')
diff --git a/stubs/auth/resources/views/livewire/auth/login.blade.php b/stubs/auth/resources/views/livewire/auth/login.blade.php index ab178aa..2f29a24 100644 --- a/stubs/auth/resources/views/livewire/auth/login.blade.php +++ b/stubs/auth/resources/views/livewire/auth/login.blade.php @@ -5,12 +5,12 @@

- Sign in to your account + {{ __('Sign in to your account') }}

- Or + {{ __('Or') }} - create a new account + {{ __('create a new account') }}

@@ -20,7 +20,7 @@
@@ -34,7 +34,7 @@
@@ -50,13 +50,13 @@
@@ -64,7 +64,7 @@
diff --git a/stubs/auth/resources/views/livewire/auth/passwords/confirm.blade.php b/stubs/auth/resources/views/livewire/auth/passwords/confirm.blade.php index 3e8f5fd..d55356e 100644 --- a/stubs/auth/resources/views/livewire/auth/passwords/confirm.blade.php +++ b/stubs/auth/resources/views/livewire/auth/passwords/confirm.blade.php @@ -5,10 +5,10 @@

- Confirm your password + {{ __('Confirm your password') }}

- Please confirm your password before continuing + {{ __('Please confirm your password before continuing') }}

@@ -17,7 +17,7 @@
@@ -32,7 +32,7 @@ @@ -40,7 +40,7 @@
diff --git a/stubs/auth/resources/views/livewire/auth/passwords/email.blade.php b/stubs/auth/resources/views/livewire/auth/passwords/email.blade.php index 416fcc6..f7f81eb 100644 --- a/stubs/auth/resources/views/livewire/auth/passwords/email.blade.php +++ b/stubs/auth/resources/views/livewire/auth/passwords/email.blade.php @@ -5,7 +5,7 @@

- Reset password + {{ __('Reset password') }}

@@ -31,7 +31,7 @@
@@ -46,7 +46,7 @@
diff --git a/stubs/auth/resources/views/livewire/auth/passwords/reset.blade.php b/stubs/auth/resources/views/livewire/auth/passwords/reset.blade.php index 4412ac4..05f1a3d 100644 --- a/stubs/auth/resources/views/livewire/auth/passwords/reset.blade.php +++ b/stubs/auth/resources/views/livewire/auth/passwords/reset.blade.php @@ -5,7 +5,7 @@

- Reset password + {{ __('Reset password') }}

@@ -16,7 +16,7 @@
@@ -30,7 +30,7 @@
@@ -44,7 +44,7 @@
@@ -55,7 +55,7 @@
diff --git a/stubs/auth/resources/views/livewire/auth/register.blade.php b/stubs/auth/resources/views/livewire/auth/register.blade.php index 006f0d3..94aacc7 100644 --- a/stubs/auth/resources/views/livewire/auth/register.blade.php +++ b/stubs/auth/resources/views/livewire/auth/register.blade.php @@ -5,13 +5,13 @@

- Create a new account + {{ __('Create a new account') }}

- Or + {{ __('Or') }} - sign in to your account + {{ __('sign in to your account') }}

@@ -21,7 +21,7 @@
@@ -35,7 +35,7 @@
@@ -49,7 +49,7 @@
@@ -63,7 +63,7 @@
@@ -74,7 +74,7 @@
diff --git a/stubs/auth/resources/views/livewire/auth/verify.blade.php b/stubs/auth/resources/views/livewire/auth/verify.blade.php index 5dbf6e4..33cdb6d 100644 --- a/stubs/auth/resources/views/livewire/auth/verify.blade.php +++ b/stubs/auth/resources/views/livewire/auth/verify.blade.php @@ -5,13 +5,13 @@

- Verify your email address + {{ __('Verify your email address') }}

Or - sign out + {{ __('sign out') }} @@ -28,15 +28,15 @@ -

A fresh verification link has been sent to your email address.

+

{{ __('A fresh verification link has been sent to your email address.') }}

@endif
-

Before proceeding, please check your email for a verification link.

+

{{ __('Before proceeding, please check your email for a verification link.') }}

- If you did not receive the email, click here to request another. + {{ __('If you did not receive the email,') }} {{ __('click here to request another') }}.

diff --git a/stubs/default/resources/views/welcome.blade.php b/stubs/default/resources/views/welcome.blade.php index fe94008..55eb05d 100644 --- a/stubs/default/resources/views/welcome.blade.php +++ b/stubs/default/resources/views/welcome.blade.php @@ -11,17 +11,17 @@ onclick="event.preventDefault(); document.getElementById('logout-form').submit();" class="font-medium text-indigo-600 hover:text-indigo-500 focus:outline-none focus:underline transition ease-in-out duration-150" > - Log out + {{ __('Sign out') }} @csrf @else - Log in + {{ __('Sign in') }} @if (Route::has('register')) - Register + {{ __('Register') }} @endif @endauth