1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- use App\Constants\HttpStatus;
- return [
- 'translate' => [
- 'Reading' => 'Reading',
- 'Traveling' => 'Traveling',
- 'Photography' => 'Photography',
- 'Music' => 'Music',
- 'Painting' => 'Painting',
- 'Yoga' => 'Yoga',
- 'Cooking' => 'Cooking',
- 'Calligraphy' => 'Calligraphy',
- 'Crafts' => 'Crafts',
- 'History' => 'History',
- 'Drinking' => 'Drinking',
- 'Coding' => 'Coding',
- 'Valuing family' => 'Valuing family',
- 'Skydiving' => 'Skydiving',
- 'Diving' => 'Diving',
- '$50K to $100K' => '$50K to $100K',
- '$100K to $500K' => '$100K to $500K',
- '$500K to $1M' => '$500K to $1M',
- '$1M to $5M' => '$1M to $5M',
- '$5M to $10M' => '$5M to $10M',
- 'Over $10M' => 'Over $10M',
- 'Male' => 'Male',
- 'Female' => 'Female',
- '邀请注册' => 'Invite to register',
- '首次邀请注册' => 'First invitation to register',
- '注册' => 'Register',
- '邀请完善' => 'Invite to complete',
- '完善信息' => 'Complete information',
- '普通区抽奖' => 'Normal area lottery',
- '金币区抽奖' => 'Gold area lottery',
- '至尊区抽奖' => 'Supreme area lottery',
- ],
- HttpStatus::CUSTOM_ERROR => '',
- HttpStatus::UNKNOWN_ERROR => 'Unknown error.',
- HttpStatus::OK => 'OK',
- HttpStatus::USER_DOES_NOT_EXIST => "User does not exist.",
- HttpStatus::PASSWORDS_ERROR => "Password error",
- HttpStatus::VERIFICATION_CODE_ERROR => 'Verification code error.',
- HttpStatus::VERIFICATION_CODE_EXPIRED => 'The verification code has expired.',
- HttpStatus::PASSWORD_INCONSISTENCY => 'Password inconsistency.',
- HttpStatus::USERNAME_ALREADY_EXISTS => 'The user name already exists. Please log in directly.',
- HttpStatus::EMAIL_ALREADY_EXISTS => 'Email already exists, please login directly.',
- HttpStatus::USERNAME_ERROR => 'User name error.',
- HttpStatus::VALIDATION_FAILED => 'Parameter validation failure.',
- HttpStatus::SYSTEM_ERROR => 'System error.',
- HttpStatus::AUTHORIZATION_HEADER_NOT_FOUND => 'Please log in.',
- HttpStatus::NO_COLLECT_YOURSELF => "Don't collect yourself.",
- HttpStatus::NO_BASIC_INFO => 'Please fill in the basic information first.',
- HttpStatus::NOT_FOUND => 'Not Found.',
- HttpStatus::AVATAR_MUST_SQUARE => 'Please crop the picture and upload it again.',
- HttpStatus::PAIRING_FAILURE => 'Pairing failure.',
- HttpStatus::COLLECT_COUNT_REACH_MAX => 'The number of collectibles reached the maximum.',
- HttpStatus::SEND_CODE_ERROR => 'Send failure',
- HttpStatus::PHONE_ERROR => 'The phone number is incorrect',
- HttpStatus::POST_DOES_NOT_EXIST => 'Post does not exist',
- HttpStatus::FILE_UPLOAD_ERROR => 'File upload error.',
- HttpStatus::INVITATION_CODE_ERROR => "Invitation code error.",
- HttpStatus::USER_ANOTHER_DEVICE => "The user has logged in to another device.",
- HttpStatus::INSUFFICIENT => "The remaining times are insufficient.",
- HttpStatus::MAXIMUM_NUMBER_OF_ADDRESSES => 'A maximum of 10 addresses can be added.',
- HttpStatus::HTTP_POST_ERROR => 'HTTP Post error.',
- HttpStatus::IM_ERROR => 'Im error',
- HttpStatus::PHONE_ALREADY_EXISTS => 'Phone number already exists, please login directly.',
- HttpStatus::GOOGLE_ERROR => 'Google login error.',
- HttpStatus::INSUFFICIENT_CHAT_BALANCE => 'Insufficient chat balance',
- HttpStatus::INSUFFICIENT_WALLET => 'Insufficient wallet balance',
- HttpStatus::FACEBOOK_ERROR => 'Facebook error',
- HttpStatus::VERIFY_ERROR => 'Verification failure',
- HttpStatus::PAY_VERIFY_ERROR =>'PAY_VERIFY_ERROR',
- HttpStatus::IM_SYSTEM_ERROR =>'Im system error',
- ];
|