Skip to content

Commit f9898f1

Browse files
Merge pull request #69 from dakira/i18n
add translation helper to new strings
2 parents da3b9eb + f5f4f51 commit f9898f1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/tailwindcss-stubs/resources/views/auth/login.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@
6262

6363
@if (Route::has('register'))
6464
<p class="w-full text-xs text-center text-gray-700 mt-8 -mb-4">
65-
Don't have an account?
65+
{{ __("Don't have an account?") }}
6666
<a class="text-blue-500 hover:text-blue-700 no-underline" href="{{ route('register') }}">
67-
Register
67+
{{ __('Register') }}
6868
</a>
6969
</p>
7070
@endif

src/tailwindcss-stubs/resources/views/auth/passwords/email.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<p class="w-full text-xs text-center text-grey-dark mt-8 -mb-4">
4343
<a class="text-blue-500 hover:text-blue-700 no-underline" href="{{ route('login') }}">
44-
Back to login
44+
{{ __('Back to login') }}
4545
</a>
4646
</p>
4747
</div>

src/tailwindcss-stubs/resources/views/auth/register.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
</button>
7070

7171
<p class="w-full text-xs text-center text-gray-700 mt-8 -mb-4">
72-
Already have an account?
72+
{{ __('Already have an account?') }}
7373
<a class="text-blue-500 hover:text-blue-700 no-underline" href="{{ route('login') }}">
74-
Login
74+
{{ __('Login') }}
7575
</a>
7676
</p>
7777
</div>

0 commit comments

Comments
 (0)