refactor: refactored non-specific strings on homepage

The homepage has organization-specific strings, that aren't translated and are in Portuguese. These haven't been touched.
This commit is contained in:
2022-03-31 16:39:59 +01:00
committed by Miguel Nogueira
parent a76177cbcc
commit d23820598f
3 changed files with 33 additions and 98 deletions

View File

@@ -3,7 +3,13 @@
<!-- Copyright - DO NOT REMOVE WITHOUT PERMISSION -->
<div class="footer-copyright text-center py-3">
<a href="{{ config('app.url') }}"> {{ config('app.name') . ' ' . config('app.release') }} &copy; {{ now()->year }} - {{__('messages.footer_copy')}}. Took {{ round(microtime(true) - LARAVEL_START, 3) }} seconds.</a>
{!! __('<a href=":appUrlConfigValue"> :appNameConfigValue :appReleaseConfigValue &copy; :currentYear - All Rights Reserved. Took :pageLoadTimeMillis seconds.</a>', [
'appUrlConfigValue' => config('app.url'),
'appNameConfigValue' => config('app.name'),
'appReleaseConfigValue' => config('app.release'),
'currentYear' => now()->year,
'pageLoadTimeMillis' => round(microtime(true) - LARAVEL_START, 3)
]) !!}
</div>
<!-- Copyright -->
<!-- GNU General Public License (https://www.gnu.org/licenses/gpl-3.0.en.html) Built by Miguel N. -->