2FAuth/resources/lang/en/auth.php

36 lines
1.0 KiB
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/
'sign_out' => 'Sign out',
'sign_in' => 'Sign in',
'register' => 'Register',
'hello' => 'Hi {username} !',
'confirm' => [
'logout' => 'Are you sure you want to log out?',
],
'forms' => [
'name' => 'Name',
'login' => 'Login',
'email' => 'Email',
'password' => 'Password',
'confirm_password' => 'Confirm password',
'dont_have_account_yet' => 'Don\'t have your account yet?',
'already_register' => 'Already registered?',
'passwords_do_not_match' => 'Passwords do not match',
]
2019-05-20 07:37:41 +02:00
];