Files
fotospiel-app/resources/lang/en/auth.php

45 lines
1.4 KiB
PHP

<?php
return [
'failed' => 'These credentials do not match our records.',
'password' => 'The provided password is incorrect.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
'login' => [
'title' => 'Log In',
'username_or_email' => 'Username or Email',
'password' => 'Password',
'remember' => 'Remember Me',
'submit' => 'Log In',
],
'register' => [
'title' => 'Register',
'name' => 'Full Name',
'username' => 'Username',
'email' => 'Email Address',
'password' => 'Password',
'password_confirmation' => 'Confirm Password',
'first_name' => 'First Name',
'last_name' => 'Last Name',
'address' => 'Address',
'phone' => 'Phone Number',
'privacy_consent' => 'I agree to the privacy policy and accept the processing of my personal data.',
'submit' => 'Register',
],
'verification' => [
'notice' => 'Please confirm your email address.',
'resend' => 'Resend Email',
],
'header' => [
'home' => 'Home',
'packages' => 'Packages',
'blog' => 'Blog',
'contact' => 'Contact',
'login' => 'Login',
'register' => 'Register',
'occasions' => [
'wedding' => 'Wedding',
'birthday' => 'Birthday',
'corporate' => 'Corporate Event',
],
],
];