[5.6] Revert email lang template changes. (#25983)

* [5.6] Revert email lang template changes.
I`m not sure, but probably we also should reverting `email lang template` ([#25734](https://github.com/laravel/framework/pull/25734)) changes in 5.6 version

Since in prev 5.6 release we also had:
 - `Fixed translation escaping ([#25858](https://github.com/laravel/framework/pull/25858), [4c46500](4c465007bb))` for fixed translation escaping

The same revert was in 5.7 (https://github.com/laravel/framework/pull/25963)

* [5.6] Revert email lang template changes.
 - add `comma` after last value in array.
This commit is contained in:
Tetiana Blindaruk 2018-10-07 18:51:20 +03:00 committed by Taylor Otwell
parent 7cc72ee1ae
commit 71964f873c
1 changed files with 3 additions and 3 deletions

View File

@ -53,12 +53,12 @@
@component('mail::subcopy')
@lang(
"If youre having trouble clicking the \":actionText\" button, copy and paste the URL below\n".
'into your web browser: ',
'into your web browser: [:actionURL](:actionURL)',
[
'actionText' => $actionText
'actionText' => $actionText,
'actionURL' => $actionUrl,
]
)
[{{ $actionUrl }}]({!! $actionUrl !!})
@endcomponent
@endisset
@endcomponent