mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-24 04:14:57 +00:00
Bruno Fontes
63ef369e16
Now the main page, item page and e-mails are translated into Brazilian Portuguese
18 lines
527 B
PHP
18 lines
527 B
PHP
@component('mail::message')
|
|
{!! __('Hi, :username,', ['username' => $username]) !!}
|
|
|
|
|
|
#{!! __('Good news: :itemname is available!', ['itemname' => $item->name]) !!}
|
|
|
|
|
|
{!! __('The item <em>:itemname (:productname)</em> is now available on **Share It**.', ['itemname' => $item->name, 'productname' => $item->product->name]) !!}
|
|
|
|
|
|
{!! __('**Take It** before anyone else at the website:') !!}
|
|
|
|
|
|
@component('mail::button', ['url' => 'https://shareit.brunofontes.net/home'])
|
|
{{ config('app.name') }}
|
|
@endcomponent
|
|
|
|
@endcomponent |