| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- return [
- 'verify' => [
- 'send_error' => 'Failed to get verification code',
- 'phone_length_invalid' => 'Sorry, mobile numbers with this number of digits are not supported',
- 'phone_already_bound' => 'The phone number has already been bound',
- 'account_not_exist' => 'Failed to send code, account does not exist',
- 'too_many_ip_requests' => 'You have sent too many messages from this IP, sending is blocked',
- 'too_many_phone_requests' => 'You have sent too many messages from this phone number, sending is blocked',
- 'too_frequent_requests' => 'You are sending too fast, please try again later',
- 'sms_too_many' => 'You have sent too many text messages and are blocked from sending',
- 'no_wrong_later' => 'Your number is incorrect or temporarily unavailable, please try again later',
- ],
- 'withdraw' => [
- 'try_again_later' => 'Please try again later',
- 'cpf_number_used' => 'The CPF number has been used several times and cannot be saved',
- 'pix_failed' => 'The PIX operation failed',
- 'score_fail' => 'Amount must be an integer value',
- 'no_withdraw_value' => 'The withdrawable amount is not enough,you need play more games',
- 'too_low' => 'Lower than the minimum withdrawal amount',
- 'too_high' => 'Higher than the maximum withdrawal amount',
- 'day_max' => 'Exceeded the daily withdrawal limit',
- 'no_enouth_score' => 'Not enough money on hand',
- 'in_game' => 'Sorry, You\'re in game for now',
- 'no_deposit' => 'You need deposit first!',
- 'params_error' => 'Parameters error',
- 'pix_type_missing' => 'The PIX type is missing',
- ],
- 'error' => [
- 'user_not_exist' => 'Wrong UserID!',
- 'Locale_not_found' => 'Locale is not support!',
- 'user_already_bind' => 'User already bind!',
- 'country_not_found' => 'Cannot find the country!',
- ],
- 'agent' => [
- 'fail_wrong_id' => 'Incorrect records ID',
- 'fail_wrong_status' => 'Already received',
- ],
- 'payment' => [
- 'paytype_error' => 'PayType ERROR',
- 'valid_failed' => 'Payment validation failed',
- 'activity_closed' => 'Activity is closed',
- 'invalid_params' => 'Invalid parameters',
- ],
- 'user' => [
- 'phone_fail' => 'Not correct phone number',
- 'paypass_fail' => 'The original password is wrong, please enter it again',
- 'email_fail' => 'Wrong email format',
- ],
- 'bank' => [
- 'account_empty' => 'The bank account cannot be empty',
- 'account_invalid_length' => 'The bank number must have 16 or 18 digits',
- 'clabe_invalid_length' => 'The Clabe number must have 18 digits',
- 'username_empty' => 'The name cannot be empty',
- 'branch_empty' => 'The branch code cannot be empty',
- 'try_again_later' => 'Please try again later',
- 'missing_userid' => 'Params error',
- 'pix_type_missing' => 'The PIX type is missing',
- 'cpf_used_multiple_times' => 'The CPF number has been used multiple times and cannot be saved',
- ],
- 'protect' => [
- 'score_limit' => 'Score limit reached',
- 'times_limit' => 'Protect times limit reached',
- ],
- 'checkin' => [
- 'user_signin_error' => 'Failed to get user sign-in information',
- 'user_already_signed_in' => 'You have already signed in today',
- 'signin_event_ended' => 'The sign-in activity has ended',
- 'signin_data_error' => 'Failed to read sign-in data',
- 'recharge_required' => 'Recharge is required to sign in',
- 'unknown_error' => 'Unknown error',
- 'exception_occurred' => 'An error occurred while processing your request',
- ],
- 'activity' => [
- 'redpack_not_available' => 'There is no RedPack',
- 'redpack_no_recharge' => 'You need deposit first!',
- ],
- ];
|