Fix translation

This commit is contained in:
Hillel Coren 2017-05-10 10:42:33 +03:00
parent 3492980453
commit 16db7619e6
2 changed files with 3 additions and 2 deletions

View File

@ -279,7 +279,7 @@ class UserController extends BaseController
return Redirect::to($url)->with('message', $notice_msg);
}
} else {
$error_msg = trans('texts.security.wrong_confirmation');
$error_msg = trans('texts.wrong_confirmation');
return Redirect::to('/login')->with('error', $error_msg);
}

View File

@ -2493,7 +2493,8 @@ $LANG = array(
'add_documents_to_invoice' => 'Add documents to invoice',
'mark_expense_paid' => 'Mark paid',
'white_label_license_error' => 'Failed to validate the license, check storage/logs/laravel-error.log for more details.',
'plan_price' => 'Plan Price'
'plan_price' => 'Plan Price',
'wrong_confirmation' => 'Incorrect confirmation code',
);