You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.5 KiB
42 lines
1.5 KiB
<?php
|
|
|
|
return [
|
|
// Profile
|
|
'profile' => 'My Profile',
|
|
'profile_edit' => 'Edit My Profile',
|
|
'update_profile' => 'Update Profile',
|
|
'profile_updated' => 'Profile has been updated.',
|
|
|
|
// Registration
|
|
'register' => 'Create new Account',
|
|
'need_account' => 'Need an Account?',
|
|
'have_an_account' => 'I have an Account',
|
|
|
|
// Login & Logout
|
|
'login' => 'Login',
|
|
'welcome' => 'Welcome :name.',
|
|
'failed' => 'These credentials do not match our records.',
|
|
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
|
'logout' => 'Logout',
|
|
'logged_out' => 'You have logged out.',
|
|
|
|
// Password
|
|
'change_password' => 'Change Password',
|
|
'password_changed' => 'Your password has been changed.',
|
|
'forgot_password' => 'Forgot Password?',
|
|
'reset_password' => 'Reset Password',
|
|
'send_reset_password_link' => 'Send reset password link',
|
|
'old_password_failed' => 'Old password does not match!',
|
|
'reset_password_hint' => 'Please reset your password by filling out this form',
|
|
|
|
// Attributes
|
|
'email' => 'Email',
|
|
'password' => 'Password',
|
|
'password_confirmation' => 'Confirm Password',
|
|
'old_password' => 'Old Password',
|
|
'new_password' => 'New Password',
|
|
'new_password_confirmation' => 'Confirm new Password',
|
|
|
|
// Authorization
|
|
'unauthorized_access' => 'You cannot access :url page.',
|
|
];
|