mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-24 12:17:10 +00:00
Bruno Fontes
f6ab437889
Now the main page, item page and e-mails are translated into Brazilian Portuguese
20 lines
559 B
PHP
20 lines
559 B
PHP
@component('mail::message')
|
|
{!! __('Hi, :username,', ['username' => $userWithItem]) !!}
|
|
|
|
|
|
{!! __('Are you still using :itemname?', ['itemname' => $item->name]) !!}
|
|
|
|
|
|
{!! __('We just want to let you know that :waitinguser asked us to be alerted when this item were available.', ['waitinguser' => $waitingUser]) !!}
|
|
|
|
|
|
{!! __('So, if you are not using it anymore, please **Return It** at the website:') !!}
|
|
|
|
|
|
@component('mail::button', ['url' => 'https://shareit.brunofontes.net/home'])
|
|
Share It!
|
|
@endcomponent
|
|
|
|
Thanks,<br>
|
|
{{ config('app.name') }}
|
|
@endcomponent |