Translated 404 page

This commit is contained in:
Exynox 2025-01-01 10:47:30 +02:00
parent 53a098f817
commit 9e4db9f7a0
3 changed files with 18 additions and 4 deletions

7
lang/en/app/404.php Normal file
View File

@ -0,0 +1,7 @@
<?php
return [
'title' => 'Error 404',
'header' => 'The page was not found',
'message' => 'This link is incorrect. Are you sure you properly entered the link?',
];

7
lang/ro/app/404.php Normal file
View File

@ -0,0 +1,7 @@
<?php
return [
'title' => 'Eroare 404',
'header' => 'Pagina nu a fost găsită',
'message' => 'Link-ul nu este corect. Ești sigur că ai scris corect link-ul?',
];

View File

@ -5,17 +5,17 @@
<div class="content content-last">
<div class="content-bg">
<div class="content-bg-bottom">
<h2>Eroare 404</h2>
<h2>{{ __('app/404.title') }}</h2>
<div class="pass-lost-inner-content">
<div class="input-data-box">
<h4>Pagina nu a fost găsită</h4>
<p>Link-ul nu este corect. Esti sigur ca ai scris corect link-ul?</p>
<h4>{{ __('app/404.header') }}</h4>
<p>{{ __('app/404.message') }}</p>
</div>
<br class="clearfloat"/>
</div>
</div>
</div>
</div>
<div class="shadow"> </div>
<div class="shadow"></div>
</div>
@endsection