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/csb.komma.pro/resources/lang/en/site/form.php
<?php

use App\Users\Genders;

return [
    'name'       => [
        'label'       => 'Name',
        'placeholder' => 'Enter your name'
    ],

    'first_name'       => [
        'label'       => 'First name',
        'placeholder' => 'Enter your first name'
    ],

    'last_name'        => [
        'label'       => 'Last name',
        'placeholder' => 'Enter your last name'
    ],

    'phone' => [
        'label'       => 'Telephone',
        'placeholder' => 'Enter your telephone'
    ],

    'email' => [
        'label'       => 'E-mailadres',
        'placeholder' => 'Enter your e-mail address'
    ],

    'password' => [
        'label'       => 'Password',
        'placeholder' => 'Enter your password'
    ],

    'password_confirmation' => [
        'label'       => 'Confirm password',
        'placeholder' => 'Type your password again'
    ],

    'form_message' => [
        'label'       => 'Message',
        'placeholder' => 'Please enter your message'
    ],

    'gender' => [
        'label'       => 'gender',
    ],

    'culture' => [
        'label'       => 'Language / Country',
        'placeholder' => 'Please enter your language / country'
    ],

    'street' => [
        'label'       => 'Street',
        'placeholder' => 'Please enter your street'
    ],

    'house_number' => [
        'label'       => 'House number',
        'placeholder' => 'Please enter your house number'
    ],

    'postal_code' => [
        'label'       => 'Postal code',
        'placeholder' => 'Please enter your postal code'
    ],

    'city' => [
        'label'       => 'City',
        'placeholder' => 'Please enter your city'
    ],

    'accept_legal' => 'I agree to the terms of service',

    'send' => 'Send message',

    'form' => [
        'salutation' => [
            'name'         => 'Salutation',
            'formal' => [
                Genders::Unknown => [
                    'with_salutation' => [
                        'short' => 'Dear Ms./Mr.',
                        'long'  => 'Dear Missus / Mister.'
                    ],
                    'without_salutation' => [
                        'short' => 'Ms./Mr.',
                        'long'  => 'Missus / Mister'
                    ]
                ],
                Genders::Male => [
                    'with_salutation' => [
                        'short' => 'Dear Mr.',
                        'long'  => 'Dear Mister.'
                    ],
                    'without_salutation' => [
                        'short' => 'Mr.',
                        'long'  => 'Mister.'
                    ]
                ],
                Genders::Female => [
                    'with_salutation' => [
                        'short' => 'Dear Ms.',
                        'long'  => 'Dear Missus'
                    ],
                    'without_salutation' => [
                        'short' => 'Ms.',
                        'long'  => 'Missus'
                    ]
                ],
            ],
            'informal' => [
                Genders::Unknown => [
                    'with_salutation' => [
                        'short' => 'Dear',
                        'long'  => 'Dear'
                    ],
                    'without_salutation' => [
                        'short' => 'Dear',
                        'long'  => 'Dear'
                    ]
                ],
                Genders::Male => [
                    'with_salutation' => [
                        'short' => 'Dear',
                        'long'  => 'Dear'
                    ],
                    'without_salutation' => [
                        'short' => 'Dear',
                        'long'  => 'Dear'
                    ]
                ],
                Genders::Female => [
                    'with_salutation' => [
                        'short' => 'Dear',
                        'long'  => 'Dear'
                    ],
                    'without_salutation' => [
                        'short' => 'Dear',
                        'long'  => 'Dear'
                    ]
                ],
            ],
        ],
    ],
];