diff --git a/lang/en/app/404.php b/lang/en/app/404.php new file mode 100644 index 0000000..8edbf3d --- /dev/null +++ b/lang/en/app/404.php @@ -0,0 +1,7 @@ + 'Error 404', + 'header' => 'The page was not found', + 'message' => 'This link is incorrect. Are you sure you properly entered the link?', +]; diff --git a/lang/ro/app/404.php b/lang/ro/app/404.php new file mode 100644 index 0000000..48b9a81 --- /dev/null +++ b/lang/ro/app/404.php @@ -0,0 +1,7 @@ + 'Eroare 404', + 'header' => 'Pagina nu a fost găsită', + 'message' => 'Link-ul nu este corect. Ești sigur că ai scris corect link-ul?', +]; diff --git a/resources/views/errors/404.blade.php b/resources/views/errors/404.blade.php index d41cb89..17fdaca 100644 --- a/resources/views/errors/404.blade.php +++ b/resources/views/errors/404.blade.php @@ -5,17 +5,17 @@
-

Eroare 404

+

{{ __('app/404.title') }}

-

Pagina nu a fost găsită

-

Link-ul nu este corect. Esti sigur ca ai scris corect link-ul?

+

{{ __('app/404.header') }}

+

{{ __('app/404.message') }}


-
+
@endsection