mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04: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',
|
'limit_clients' => 'Sorry, this will exceed the limit of :count clients',
|
||||||
'payment_error' => 'There was an error processing your payment. Please try again later.',
|
'payment_error' => 'There was an error processing your payment. Please try again later.',
|
||||||
'registration_required' => 'Please sign up to email an invoice',
|
'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',
|
'updated_client' => 'Successfully updated client',
|
||||||
'created_client' => 'Successfully created client',
|
'created_client' => 'Successfully created client',
|
||||||
'archived_client' => 'Successfully archived client',
|
'archived_client' => 'Successfully archived client',
|
||||||
|
@ -178,7 +178,7 @@
|
|||||||
|
|
||||||
function showUpgradeModal() {
|
function showUpgradeModal() {
|
||||||
@if ( ! Auth::check() || ! Auth::user()->confirmed)
|
@if ( ! Auth::check() || ! Auth::user()->confirmed)
|
||||||
swal("{{ trans('texts.confirmation_required') }}");
|
swal("{!! trans('texts.confirmation_required') !!}");
|
||||||
return;
|
return;
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user