66 lines
2.9 KiB
PHP
66 lines
2.9 KiB
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Signup Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used during signup 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.
|
|
|
|
|
*/
|
|
|
|
'title' => 'Create an account',
|
|
'already_have_account' => 'I already have an account',
|
|
'sign_in' => 'Sign in',
|
|
'uncertain_about_account' => 'Uncertain about creating an account?',
|
|
'explore_benefits' => 'Explore the Benefits',
|
|
'email_label' => 'Email',
|
|
'email_placeholder' => 'Enter your email',
|
|
'email_invalid' => 'Enter a valid email address!',
|
|
'password_label' => 'Password',
|
|
'password_placeholder' => 'Minimum 8 characters',
|
|
'password_invalid' => 'Password does not meet the required criteria!',
|
|
'name_label' => 'Full Name',
|
|
'name_placeholder' => 'Enter your full name',
|
|
'name_invalid' => 'Please enter your name',
|
|
'phone_label' => 'Phone Number',
|
|
'phone_placeholder' => 'Enter your phone number',
|
|
'referral_label' => 'Referral Code',
|
|
'referral_placeholder' => 'Enter referral code (optional)',
|
|
'gender_label' => 'Gender',
|
|
'select_gender' => 'Select Gender',
|
|
'gender_male' => 'Male',
|
|
'gender_female' => 'Female',
|
|
'date_of_birth_label' => 'Date of Birth',
|
|
'date_of_birth_placeholder' => 'Select your date of birth',
|
|
'save_password' => 'Save the password',
|
|
'privacy_policy' => 'I have read and accept the :privacy_policy',
|
|
'privacy_policy_link' => 'Privacy Policy',
|
|
'create_account' => 'Create an account',
|
|
'or_continue_with' => 'or continue with',
|
|
'google' => 'Google',
|
|
'facebook' => 'Facebook',
|
|
'apple' => 'Apple',
|
|
'need_help' => 'Need help?',
|
|
'rights_reserved' => '© All rights reserved. Made by :company',
|
|
'company_name' => 'Coderthemes',
|
|
|
|
// Benefits section
|
|
'benefits_title' => 'Why create an account?',
|
|
'benefit_1_title' => 'Subscribe to your favorite products',
|
|
'benefit_1_description' => 'Save your favorite products and get notified when they go on sale.',
|
|
'benefit_2_title' => 'View and manage your orders and wishlist',
|
|
'benefit_2_description' => 'Track your orders and view your order history.',
|
|
'benefit_3_title' => 'Earn rewards for future purchases',
|
|
'benefit_3_description' => 'Get rewards points for every purchase you make.',
|
|
'benefit_4_title' => 'Receive exclusive offers and discounts',
|
|
'benefit_4_description' => 'Get access to exclusive offers and promotions.',
|
|
'benefit_5_title' => 'Create multiple wishlists',
|
|
'benefit_5_description' => 'Organize your favorite products into multiple wishlists.',
|
|
'benefit_6_title' => 'Pay for purchases by installments',
|
|
'benefit_6_description' => 'Pay for your purchases in convenient installments.',
|
|
];
|