HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/ste.komma.pro/resources/lang/en/auth.php
<?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.
    |
    */

    'login'                   => [
        'wrong_credentials' => 'The given e-mail and/or password don\'t match. Try again.',
        'too_many_times'    => 'To many attempts. You will have to wait for 1 hour.',
        'not_active'        => 'No active user has been found for the given fields.',
    ],

    'password-forgot'         => [
        'no_account' => 'No user has been found with the given e-mail.',
    ],

    'password-forgot-email'   => [
        'subject'      => 'Reset password',
        'confirmation' => 'The mail has been send',
    ],

    'password-reset-page'     => [
        'wrong_token'      => 'The token doesn\'t match with the user',
        'confirm_password' => 'Confirm password'
    ],

    'password-activate-email' => [
        'subject' => 'Activate your user',
    ],

    'send_email'           => 'Send e-mail',

    // registration form
    'register' => 'Register',
    'registered' => 'You have been registered! Watch your mail for further instructions.',
    'email_address' => 'E-mail',
    'gender' => 'Gender',
    'genders' => [
        \App\Users\Genders::Unknown => 'Unkown',
        \App\Users\Genders::Male => 'Men',
        \App\Users\Genders::Female => 'Woman',
//        Genders::Neutral => 'Neutraal'
    ],
    'first_name' => 'First name',
    'last_name' => 'Last name',
    'birthdate' => 'Birthday',
    'age' => 'Age',
    'address' => 'Address',
    'street' => 'Street',
    'house_number' => 'House number',
    'postal_code' => 'Postal',
    'city' => 'City',
    'country' => 'Country',
    'company_name' => 'Company name',
    'company_address' => 'Address',
    'company_street' => 'Street',
    'company_house_number' => 'House number',
    'company_postal_code' => 'Postal',
    'company_city' => 'City',
    'company_country' => 'Country',
    'telephone' => 'Phone / Mobile',
    'phone_number' => 'Phone',
    'language_country' => 'Language / Country',
    'mobile_number' => 'Mobile',
    'bank_account_number' => 'Bank account',

    'password'                  => 'Password',
    'log_in'                    => 'Log in',
    'unauthorized'              => 'Unauthorized',
    'unauthorized_explanation'  => 'You aren\'t authorized to do this action',
    'back'                      => 'Back',
    'forgot_password'           => 'Forgot password?',
    'enter_email'               => 'Fill in your e-mail',
    'password-reset'            => 'Your password has been changed. You can log in with your new password.',
    'password_reset_fail'       => 'Your password couldn\'t be changed. Check if your e-mail is correct.',
    'to_login_page'             => 'To login page',
    'confirmation'              =>
        [
            'password-forgot'   => 'You will receive an e-mail to reset your password.',
            'password-reset'    => 'Your password is changed. Now you can log in .',
            'account_activated' => 'Your user has been activated. Now you can log in .',
        ],
    'reset-password'            => 'Reset password',
    'password_confirmation'     => 'Confirm passwordWachtwoord bevestiging',
    'update_password'           => 'Change password',
    'activate_account'          => 'Activate user',
    'log_out'                   => 'Sign out',
    'welcome'                   => 'Welcome',
    'password-reset-button'     => 'Reset password',
    'failed'                    => 'The given e-mail and/or password don\'t match. Try again.',
    'not_approved'              => 'Your user hasn\'t been confirmed. Try again when you received a notification about activation.',
    'throttle'                  => 'You have tried to many times. For security reason has been temporary blocked. Try again at a latter moment.',
    'edit_profile'              => 'Change profile'

];