1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

Added link to error if email is not confirmed

This commit is contained in:
Hillel Coren 2016-12-05 22:02:23 +02:00
parent 25a95e8e25
commit 1646870431
2 changed files with 2 additions and 2 deletions

View File

@ -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',

View File

@ -178,7 +178,7 @@
function showUpgradeModal() {
@if ( ! Auth::check() || ! Auth::user()->confirmed)
swal("{{ trans('texts.confirmation_required') }}");
swal("{!! trans('texts.confirmation_required') !!}");
return;
@endif