mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Added link to error if email is not confirmed
This commit is contained in:
parent
25a95e8e25
commit
1646870431
@ -200,7 +200,7 @@ $LANG = array(
|
||||
'limit_clients' => 'Sorry, this will exceed the limit of :count clients',
|
||||
'payment_error' => 'There was an error processing your payment. Please try again later.',
|
||||
'registration_required' => 'Please sign up to email an invoice',
|
||||
'confirmation_required' => 'Please confirm your email address',
|
||||
'confirmation_required' => 'Please confirm your email address, <a href=\'/resend_confirmation\'>click here</a> to resend the confirmation email.',
|
||||
'updated_client' => 'Successfully updated client',
|
||||
'created_client' => 'Successfully created client',
|
||||
'archived_client' => 'Successfully archived client',
|
||||
|
@ -178,7 +178,7 @@
|
||||
|
||||
function showUpgradeModal() {
|
||||
@if ( ! Auth::check() || ! Auth::user()->confirmed)
|
||||
swal("{{ trans('texts.confirmation_required') }}");
|
||||
swal("{!! trans('texts.confirmation_required') !!}");
|
||||
return;
|
||||
@endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user