ソースを参照

feat: NG-71: 会员奖金计算调整

kevin 1 年間 前
コミット
ce523d5691

+ 0 - 113
common/helpers/bonus/BonusCalc.php

@@ -239,7 +239,6 @@ class BonusCalc extends BaseObject {
 
             // 绩效奖/团队奖
             if($this->_sysConfig['openQY']['VALUE']) {
-                $this->calcBonusQY();
 //                $this->calcBonusBdQY();
 //                $this->calcBonusFxQY();
             }
@@ -306,7 +305,6 @@ class BonusCalc extends BaseObject {
 
             $this->calcBonusGarage();
             $t23 = microtime(true);
-            echo('计算车奖' . ($this->_sysConfig['openGarage']['VALUE'] ? '完成' : '关闭').',耗时:' . round($t23 - $t22, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
             $this->_updatePercent(69);
 
             // 计算季度奖
@@ -319,7 +317,6 @@ class BonusCalc extends BaseObject {
             //把奖金会员写入缓存
             $this->loopMonthBonusUserFromDbToCache();
             $t30 = microtime(true);
-            echo('奖金会员写入缓存完成,耗时:' . round($t30 - $t22, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
             $this->_updatePercent(70);
 
             //奖金写库
@@ -1214,110 +1211,7 @@ class BonusCalc extends BaseObject {
      * @throws \yii\db\Exception
      */
     public function calcBonusQY(int $offset = 0) {
-        echo sprintf("时间:[%s]团队奖,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
-        $periodNum = $this->_periodNum;
-        // 从缓存获取分页有业绩的会员信息
-        $allData = CalcCache::getHasPerfUsers($this->_periodNum, $offset, $this->_limit);
-        if ($allData) {
-            $insertBonusData = [];
-            foreach ($allData as $userId) {
-                // 从缓存中获取会员的业绩信息
-                $perfData = CalcCache::nowPeriodPerf($userId, $periodNum);
-                // 从缓存中获取会员的上期结余业绩信息
-                $pervSurplusPerf = CalcCache::surplusPerf($userId, $periodNum);
-                // 本期 + 上期结余
-                $perfArr = [
-                    'SURPLUS_1L' => $perfData['PV_1L_TOUCH'] + $pervSurplusPerf['SURPLUS_1L'],
-                    'SURPLUS_2L' => $perfData['PV_2L_TOUCH'] + $pervSurplusPerf['SURPLUS_2L'],
-                    'SURPLUS_3L' => $perfData['PV_3L_TOUCH'] + $pervSurplusPerf['SURPLUS_3L'],
-                    'SURPLUS_4L' => $perfData['PV_4L_TOUCH'] + $pervSurplusPerf['SURPLUS_4L'],
-                    'SURPLUS_5L' => $perfData['PV_5L_TOUCH'] + $pervSurplusPerf['SURPLUS_5L'],
-                ];
-                $oriPerfArr = [
-                    'perfArr' => $perfArr,
-                    'touchBonus' => 0,
-                ];
-
-                // 获取会员的报单级别
-                $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
-                $decLevelConfig = $this->_decLevelConfig;
-                $nowDecLevelConfig = $decLevelConfig[$userBaseInfo['DEC_LV']];
-                // 对碰
-                $touchBonusArr = $this->touchPerf($oriPerfArr, $perfArr, $nowDecLevelConfig['QY_PERCENT']/100);
-                $touchPerfArr = [];
-                foreach ($touchBonusArr['perfArr'] as $keyR => $perfR) {
-                    $touchPerfArr[$keyR] = $perfR;
-                }
-                // 对碰完成后把结余的业绩存入本期业绩缓存中
-                CalcCache::nowPeriodPerf($userId, $periodNum, $touchPerfArr);
-                //更新数据库
-                PerfPeriod::updateAll($touchPerfArr, 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM', [
-                    'USER_ID' => $userId,
-                    'PERIOD_NUM' => $periodNum,
-                ]);
-                if ($touchBonusArr['touchBonus'] <= 0) continue;
 
-                $teamBonus = $touchBonusArr['touchBonus'];
-                $capBonusQy = $teamBonus; // 封顶前的奖金
-                //判断级别上限,个人奖金封顶限制
-                $teamBonus = $this->declarationLevelCap($teamBonus, $userId, $userBaseInfo['DEC_LV']);
-                if( $teamBonus <= 0 ) continue;
-                // 将封顶前的金额加入用户奖金缓存中,此金额不能发放(总奖金,总实际奖金) 
-                CalcCache::bonus($userId, $periodNum, 'CAPPED_BONUS_QY', $capBonusQy); 
-
-                $teamBonus = $this->bonusTotalLimit($teamBonus, $userId, $userBaseInfo['REC_NUM'], $userBaseInfo['ZC_AMOUNT']);
-                if( $teamBonus <= 0 ) continue;
-
-                //扣除相应的复消积分和管理费
-                $deductData = $this->deduct($userId, $teamBonus);
-
-                // 取小腿值
-
-                //团队奖流水
-                $insertBonusData[] = [
-                    'ID' => SnowFake::instance()->generateId(),
-                    'USER_ID' => $userId,
-                    'ORI_CAPPED_BONUS_QY' => $capBonusQy,
-                    'LAST_DEC_LV' => $userBaseInfo['DEC_LV'],
-                    'LAST_EMP_LV' => $userBaseInfo['EMP_LV'],
-                    'LAST_CROWN_LV' => $lastCrownLv,
-                    'CROWN_LV' => $userBaseInfo['CROWN_LV'],
-                    'LAST_STATUS' => $userBaseInfo['STATUS'],
-                    'AMOUNT' => $deductData['surplus'],
-                    'ORI_BONUS' => $oriBonus,
-                    'RECONSUME_POINTS' => $deductData['reConsumePoints'],
-                    'MANAGE_TAX' => $deductData['manageTax'],
-                    'PERIOD_NUM' => $this->_periodNum,
-                    'CALC_YEAR' => $this->_calcYear,
-                    'CALC_MONTH' => $this->_calcYearMonth,
-                    'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
-                    'CREATED_AT' => Date::nowTime(),
-                    'LOGS' => json_encode([
-                        'perfArr' => $perfArr,
-                        'touchPerfArrOri' => $touchBonusArr['perfArr'],
-                        'touchPerfArr' => $touchPerfArr,
-                        'nowDecLevelConfig' => $nowDecLevelConfig,
-                        'decLevel' => $userBaseInfo['DEC_LV'],
-                    ]),
-                    'IS_ACTIVE' => (int)$isActive,
-                    'HOPE_CROWN_LV' => $starCrown['ID'],
-                    'HOPE_BONUS' => $teamBonus,
-                ];
-
-                // 星级放入缓存
-                CalcCache::addUserStarCrown($userId, $periodNum, $lastCrownLv);
-                if ($oriBonus > 0) {
-                    // 把对碰后的奖金存入缓存中
-                    CalcCache::bonus($userId, $periodNum, 'BONUS_QY', $oriBonus, $deductData);
-                }
-
-                unset($perfData, $pervSurplusPerf, $perfArr, $oriPerfArr, $touchPerfArr, $userBaseInfo, $decLevelConfig, $touchBonusArr, $userId, $nowDecLevelConfig, $teamBonus, $deductData);
-            }
-            CalcBonusQY::batchInsert($insertBonusData);
-            unset($allData, $insertBonusData);
-            return $this->calcBonusQY($offset + $this->_limit);
-        }
-        unset($allData);
         return true;
     }
 
@@ -3657,15 +3551,12 @@ class BonusCalc extends BaseObject {
                 ':PERIOD_NUM' => $this->_periodNum,
                 ':USER_ID' => $userId
             ]);
-        // 会员本期最新CrownLV
-        $nowCrownLv = $userBonusQY['LAST_CROWN_LV'] ?? StarCrownLevel::getDefaultLevelId();
         $result = [
             'USER_ID' => $userId,
             'LAST_USER_NAME' => $baseInfo['USER_NAME'],
             'LAST_REAL_NAME' => $baseInfo['REAL_NAME'],
             'LAST_DEC_LV' => $baseInfo['DEC_LV'],
             'LAST_EMP_LV' => $nowDirectorLv,
-            'LAST_CROWN_LV' => $nowCrownLv,
             'LAST_STATUS' => $baseInfo['STATUS'],
             'LAST_MOBILE' => $baseInfo['MOBILE'],
             'LAST_PERIOD_AT' => $baseInfo['PERIOD_NUM'],
@@ -3735,10 +3626,6 @@ class BonusCalc extends BaseObject {
             'BONUS_QUARTER' => $bonus['BONUS_QUARTER'],
             'ORI_BONUS_QUARTER' => $bonus['ORI_BONUS_QUARTER'],
 
-            'BONUS_TOURISM' => $tourismBonus, // 旅游奖
-            'BONUS_VILLA' => $villaBonus, // 房奖
-            'BONUS_GARAGE' => $garageBonus, // 车奖
-
             //以下没有用
             'BONUS_FW' => 0,
             'BONUS_FX' => $bonus['BONUS_FX'],

+ 0 - 316
common/messages/ar-EG/app.php

@@ -1,316 +0,0 @@
-<?php
-return [
-    # 商城
-    'addressId' => 'Address',
-    'reconsume' => 'Reconsume',
-    'orderCode' => 'Order Code',
-    'orderDetail' => 'Order Detail',
-    'productCode' => 'Product Code',
-    'productName' => 'Product Name',
-    'productPrice' => 'Product Price',
-    'qty' => 'Qty',
-    'taxRate' => 'Tax Rate',
-    'totalTax' => 'Total Tax',
-    'totalAmount' => 'Total Amount',
-    'total' => 'Total',
-    'signature' => 'Signature',
-    'date' => 'Date',
-    'accountBalance' => 'Account Balance',
-    'travelBonus' => 'Travel Bonus',
-    'carFund' => 'Car Fund',
-    'villaFund' => 'Villa Fund',
-    'reconsumeSuccessfully' => '帮会员复消成功',
-    'reconsumeRemark' => '复销备注',
-    'standardProducts' => 'Standard Products',
-    'carFundProducts' => 'Car Fund Products',
-    'villaFundProducts' => 'Villa Fund Products',
-    'travelFundProducts' => 'Travel Fund Products',
-    'insufficientInventory' => 'Insufficient inventory',
-    'soldOut' => 'Sold out',
-    'productsDoesNotExists' => 'Products does not exists!',
-    'allowOnlyOne' => 'Only 1 can be purchased at a time',
-    'canNotBuy' => 'Please pay in EPP order',
-    'instalmentGoodsNoError' => 'Products No. error',
-    'instalmentOrderInProcess' => '分期商品订单未完成',
-    'productsDoesSoldOut' => 'Products has sold out!',
-    'cashDoesNotAdequate' => '余额不足,无法购买商品',
-    'exchangePointDoesNotAdequate' => '兑换积分不足,无法购买商品',
-    'travelPointDoesNotAdequate' => '旅游积分不足,无法购买商品',
-    'carFundPointDoesNotAdequate' => '车奖积分不足,无法购买商品',
-    'villaPointDoesNotAdequate' => '房奖积分不足,无法购买商品',
-    'paymentInfoDoesNotExists' => '支付信息不存在',
-    'payAmountNotEqualOrderAmount' => '支付金额与订单金额不符',
-    'orderSn' => 'Order Code',
-    'expressCompany' => 'Express Company',
-    'orderTrackNo' => 'Track Code',
-    'remark' => 'Remark',
-    'orderType' => 'Order Type',
-    'payType' => 'Pay Type',
-    'productID' => 'Product ID',
-    'quantity' => 'Quantity',
-    'repeatSalesMemberNo' => 'UserName',
-    'consigneeNo' => 'Consignee',
-    'acceptMobile' => 'Accept Mobile',
-    'lgaName' => 'Lga Name',
-    'cityName' => 'City Name',
-    'detailAddress' => 'Address',
-    'shippingAddress' => 'shipping Address',
-
-    'orderDoesNotExist' => 'the order does not exist',
-    'orderHasBeenCancelCanNotDeliver ' => '订单已取消不能发货',
-    'orderHasBeenDeleteCanNotDeliver' => '订单已删除不能发货',
-    'orderPayStatusDoesNotSupportRefund' => '订单状态支付状态不支持退款',
-    'orderLogisticsStatusDoesNotSupportRefund' => '订单物流状态不支持退款',
-    'orderPayTypeDoesNotSupportRefund' => '订单支付方式不支持退款',
-    'paymentPasswordError' => 'The payment password is incorrect',
-    'shippingDoesNotExist' => 'the shipping address does not exist',
-    'payTypeError' => '支付方式错误',
-    'orderCanNotHasMoreClassification' => '订单不能包含多种商品分类',
-    'shopGoodClassificationError' => '商品分类错误',
-    'orderStatusTypeError' => '订单状态类型错误',
-    'orderStatusDoesNotChange' => '订单状态没有改变',
-    'orderHasBeenLogisticsStatusDoesNotChangedUnpaid' => '订单已经进入物流状态不能改为未支付',
-    'orderHasBeenInvalidCanNotProcess' => '订单已失效不能处理',
-    'orderCanNotBeenChangedLogistics' => '订单不能单独处理为物流状态',
-    'orderHasBeenFinishedCanNotCancel' => '订单已完成不能取消',
-    'orderHasBeenDeletedCanNotCancel' => '订单已删除不能取消',
-    'orderHasBeenFinishedCanNotDelete' => '订单已完成不能删除',
-    'flowTypeError' => '流水类型错误',
-    'flowCreateError' => '流水产生错误',
-    'doesNotYourSubMemberCanNotReconsume' => '不是您的伞下会员,不能为其复消',
-    'membersResellingBalancePayment' => 'Members reselling balance payment',
-    'membersExchangePointPayment' => '会员复销积分兑换',
-    'orderCanNotContainMultipleProductCategories' => 'Order cannot contain multiple product categories',
-
-
-    # 会员
-    'memberCode' => 'Member Code',
-    'memberName' => 'Member Name',
-    'memberAddress' => 'Member Address',
-    'memberPhone' => 'Member Phone',
-    'bankName' => 'Bank Name',
-    'bankCode' => 'Bank Code',
-    'admin' => 'Admin',
-    'minCharge' => 'Min Charge',
-    'maxCharge' => 'Max Charge',
-    'chargeRate' => 'Charge Rate',
-    'updater' => 'Updater',
-    'userName' => 'USER_NAME',
-    'passwordHash' => 'PASSWORD_HASH',
-    'payPassword' => 'PAY_PASSWORD',
-    'nation' => 'NATION',
-    'realName' => 'REAL_NAME',
-    'IDCard' => 'ID_CARD',
-    'IDType' => 'ID_TYPE',
-    'mobile' => 'MOBILE',
-    'address' => 'ADDRESS',
-    'IDImage' => 'ID_IMAGE',
-    'openBank' => 'OPEN_BANK',
-    'bankAddress' => 'BANK_ADDRESS',
-    'bankNo' => 'BANK_NO',
-    'bankProvince' => 'BANK_PROVINCE',
-    'bankCity' => 'BANK_CITY',
-    'bankCounty' => 'BANK_COUNTY',
-    'spouseName' => 'SPOUSE_NAME',
-    'spouseIDCard' => 'SPOUSE_IDCARD',
-    'decClosed' => 'DEC_CLOSED',
-    'decClosedAt' => 'DEC_CLOSED_AT',
-    'decLv' => 'DEC_LV',
-    'empLv' => 'EMP_LV',
-    'crownLv' => 'CROWN_LV',
-    'province' => 'PROVINCE',
-    'city' => 'CITY',
-    'county' => 'COUNTY',
-    'tel' => 'TEL',
-    'subComID' => 'SUB_COM_ID',
-    'avatar' => 'AVATAR',
-    'isDec' => 'IS_DEC',
-    'isAtlas' => 'IS_ATLAS',
-    'isRecharge' => 'IS_RECHARGE',
-    'DEC_ID' => 'DEC_ID',
-    'birthday' => 'BIRTHDAY',
-    'decRoleID' => 'DEC_ROLE_ID',
-    'periodAt' => 'PERIOD_AT',
-    'decProvince' => 'DEC_PROVINCE',
-    'decCity' => 'DEC_CITY',
-    'decCounty' => 'DEC_COUNTY',
-    'isUnion' => 'IS_UNION',
-    'statusAt' => 'STATUS_AT',
-    'verified' => 'VERIFIED',
-    'verifiedAt' => 'VERIFIED_AT',
-    'allowLogin' => 'ALLOW_LOGIN',
-    'notOperating' => 'NOT_OPERATING',
-    'regFrom' => 'REG_FROM',
-    'IDCardPrefix' => 'ID_CARD_PREFIX',
-    'sex' => 'SEX',
-    'decAccountOld' => 'DEC_ACCOUNT_OLD',
-    'bankUpdatedAt' => 'BANK_UPDATED_AT',
-    'isDirectSeller' => 'IS_DIRECT_SELLER',
-    'decLvUpdatedAt' => 'DEC_LV_UPDATED_AT',
-    'decLvUpdatedPeriod' => 'DEC_LV_UPDATED_PERIOD',
-    'decAddress' => 'DEC_ADDRESS',
-    'decPhone' => 'DEC_PHONE',
-    'guarantor' => 'GUARANTOR',
-    'guarantorName' => 'GUARANTOR_NAME',
-    'partFuncClosed' => 'PART_FUNC_CLOSED',
-    'lastDecLvUpdatedPeriod' => 'LAST_DEC_LV_UPDATED_PERIOD',
-    'userCreator' => 'USER_CREATOR',
-    'userUpdater' => 'USER_UPDATER',
-    'lastDecLvUpdatedAt' => 'LAST_DEC_LV_UPDATED_AT',
-    'decCreatedAt' => 'DEC_CREATED_AT',
-    'partFuncClosedRemark' => 'PART_FUNC_CLOSED_REMARK',
-    'decCreatedPeriod' => 'DEC_CREATED_PERIOD',
-    'passwordChanged' => 'PASSWORD_CHANGED',
-    'subComLeader' => 'SUB_COM_LEADER',
-    'zgUpgradePv' => 'ZG_UPGRADE_PV',
-    'appClientID' => 'APP_CLIENT_ID',
-    'readAgreement' => 'READ_AGREEMENT',
-    'lastDecLv' => 'LAST_DEC_LV',
-    'bonusAppClientID' => 'BONUS_APP_CLIENT_ID',
-    'isFirstOpen' => 'IS_FIRST_OPEN',
-    'isModifyPassword' => 'IS_MODIFY_PASSWORD',
-    'isStudio' => 'IS_STUDIO',
-    'email' => 'EMAIL',
-
-    'fillingUpOfADeficit' => 'filling up of a deficit',
-    'fullPayment' => 'full payment',
-
-    'personalDataModifiedSuccessfully' => 'Personal data modified successfully',
-    'passwordModifiedSuccessfully' => 'Password modified successfully',
-    'theFunctionIsNotAvailable' => 'The function is not available',
-    'inactiveUser' => 'Inactive user. Please contact customer service.',
-    'checkPerformance' => 'Please contact customer service to check performance.',
-    'checkPerformanceOfUpgradedMember' => 'Please contact the customer service personnel to check the performance of upgraded members',
-    'memberNumberExpired' => 'Member number expired',
-    'memberNumberDoesNotConformTo' => 'Member number does not conform to',
-    'failedToGenerateMemberNumber' => 'Failed to generate member number',
-    'memberNumberDoesNotExist' => 'Member number does not exist',
-    'repeatSalesMemberNoDoesNotExist' => 'Repeat sales Member No. does not exist',
-    'memberDoesNotExist' => 'Member does not exist',
-    'memberDoesNotInSamePlacementNetwork' => 'The member is not in the same placement network as the current user',
-    'viewSubMembersMost' => 'View the top 20 sub members of the member at most',
-    'upgradeMethodIncorrect' => 'The upgrade method is incorrect. Please contact the customer service personnel',
-
-    'originalLoginPasswordError' => 'Original login password error',
-    'originalPaymentPasswordError' => 'Original payment password error',
-    'userNameNotExists' => 'Nonexistent user name',
-    'pleaseSelectUpgradeLevel' => 'Please select upgrade level',
-    'totalPVLessThan' => 'Total PV cannot be less than the selected level PV',
-    'totalPvExceedPv' => 'The total PV cannot exceed the PV value of the next level under the selected level',
-    'deliveryTemporarilyNotSupported' => 'Delivery is temporarily not supported in the region. Contact customer service for details',
-    'applicantCashShort' => 'The applicant is short of cash and cannot complete the declaration',
-    'failedToUpgrade' => 'Failed to upgrade for member',
-    'bulkDeclarationNotSames' => 'Bulk declaration member must be the same member',
-    'reportFormatIncorrect' => 'The format of the report data is incorrect',
-    'memberNumberCanNotContainChineseCharacters' => 'Member number cannot contain Chinese characters',
-    'pleaseSelectTheEntryLevel' => 'Please select the entry level',
-    'totalBVCanNotLessThanSelectedBV' => 'Please choose the correct Entry Level.',
-    'totalBVCanNotLessThanNextSelectedLevelBV' => 'Please choose the correct Entry Level.',
-    'incorrectEntryType' => 'Incorrect entry type',
-    'MembershipNumberFilledInitialPurchase' => 'Membership number must be filled in for initial purchase',
-    'fillTheInstructorNumberTheMember' => 'For the first purchase, you must fill in the instructor number of the member',
-    'sponsorNumberMustBeFilled' => 'For the first purchase, the Sponsor number of the member must be filled in',
-    'beFilledTheMarketMember' => 'The first purchase must be filled in the market of the member',
-    'pleaseSelectMarket' => 'Please select a market',
-    'stockistDoesNotExist' => 'Stockist does not exist',
-    'newMemberDoesNotExist' => 'New member does not exist',
-    'brandAmbassadorUpgradeError' => 'Brand Ambassador upgrade error',
-    'changeUserStatusError' => 'change user status error',
-    'dataFormatError' => 'Data format error',
-    'decUserNameDoesNotExist' => '请输入报单中心编号',
-    'decUserNameIsWrong' => '报单中心编号输入错误',
-
-
-
-    # 奖金
-    'memberBonus' => 'Member Bonus',
-    'memberEcoin' => 'Member Ecoin',
-    'carPoints' => 'Car Points',
-    'villaPoints' => 'Villa Points',
-    'increase' => 'increase',
-    'reduce' => 'reduce',
-    'cannotViewThisPeriod' => 'Cannot view this period',
-    'bonusRecordDoesNotExists' => 'The bonus record does not exists of this period',
-    'pleaseSelectThePeriod' => 'Please select the period',
-    'withdrawalApplicationHasBeenSubmitted' => 'Withdrawal application has been submitted, please wait for review.',
-    'withdrawHasBeenBacked' => 'Withdraw has been backed',
-    'withdrawDoesNotAllowedOfAuthentication' => '未实名验证无法提现',
-    'withdrawDoesNotAllowedOfSubsidiaryMember' => '附属会员无法提现',
-    'autoWithdrawHasBeenOpened' => '已开启自动提现,如需手动提现请关闭自动提现',
-    'withdrawNotAllowOfDate' => '未到提现日期,请在每月挂网后第一周申请提现',
-    'withdrawAllowOnceOfMonth' => '提现失败,每月只可以提现一次',
-    'withdrawRecordHasNotVerify' => '提现失败,您存在未审核的提现记录',
-    'notionalPoolingAmountFinished' => '归集完成,归集金额',
-    'withdrawDoesNotUploadInvoice' => '该提现记录无法上传发票',
-    'transferDoesNotAllowedOfAuthentication' => '未实名验证无法转账',
-    'transferDoesNotAllowed' => '不允许转账',
-    'transferDoesNotOpen' => '转账功能未启用',
-    'transferTypeDoesNotExists' => '没有可用的转账类型',
-    'rechargeApplicationHasBeenSubmitted' => 'Recharge application has been submitted, please wait for review.',
-
-    # 设置
-    'autoWithdrawHasBeenClosed' => '开启关闭自动提现成功',
-    'closeMessageSendSuccessfully' => '开启关闭复销短信提醒成功',
-    'changeDefaultAddressFailed' => '更新默认地址失败',
-    'addShippingAddressSuccessfully' => '添加收货地址成功',
-    'updateUserConfigFailed' => '更新个人设置失败',
-    'isAutoWithdraw' => '是否自动提现',
-    'allowReconsumeSms' => '开启复销短信通知',
-    'pleaseAuthentication' => '请先实名认证',
-    'systemCloseAutoWithdraw' => '系统关闭了自动提现',
-    'systemCloseReconsumeSMSNotification' => '系统关闭了开启复销短信通知',
-    'openAutoWithdraw' => '开启关闭自动提现',
-    'updateUserSMSExpiredFailed' => '更新个人短信有效期失败',
-    'modeDoesNotExist' => '不存在此方式',
-    'currencyDoesNotExist' => '未设置汇率',
-    'countryDoesNotSelect' => '未选择国家',
-    'transferMemberDoesNotSame' => '转账会员非本国会员',
-
-    # 首页
-    'pcOf' => 'PC of ',
-
-    # 财务
-    'statueError' => 'Status error',
-    'notAllowedToTransferToYourself' => 'Not allowed to transfer to yourself',
-    'wrongTransactionType' => 'Wrong transaction type',
-    'isCanWithdrawBack' => '提现退回已关闭',
-    'withdrawRecordDoesNotExist' => '符合退回的提现记录不存在',
-
-
-    # 登录
-    'refreshTokenFailed' => 'refresh token failed',
-    'passwordChangeSucceeded' => 'Password change succeeded',
-    'accountDoesNotExist' => 'The account does not exist',
-    'memberNameOrPasswordIncorrect' => 'The member name or password is incorrect',
-    'abnormalMemberCode' => 'Abnormal member code',
-    'memberNotActivated' => 'Member not activated',
-    'memberHasBeenCancelled' => 'The member has been cancelled',
-    'memberHasBeenBlacklisted' => 'The member has been blacklisted',
-    'memberHasBeenPermanentlySuspended' => 'The member has been permanently suspended',
-    'memberPartOfFunctionClosed' => 'Member part of the function is closed, unable to log in.',
-    'memberAppDeviceInformationUpdateFailed' => 'Member APP device information update failed',
-
-    # 文章
-    'category' => 'Category',
-    'title' => 'Title',
-    'content' => 'Content',
-    'articleDoesNotExist' => 'The article does not exist',
-
-    # 公用
-    'notConnection' => 'Connection not operated for too long',
-    'deleteFailed' => 'failed to delete',
-    'deleteSuccessfully' => 'delete successfully',
-    'quickLoginCanNotOperate' => '快速登录的会员无法进行任何操作',
-    'selectAtLeastOne' => '必须选择一条数据',
-    'failed' => 'Failed',
-    'successfully' => 'Successfully',
-    'createAt' => 'Creation Time',
-    'status' => 'Status',
-    'state' => 'State',
-    'sort' => 'Sort',
-    'illegalRequest' => 'Illegal request',
-    'invalidParameter' => 'Invalid Parameter',
-    'dataDoesNotExists' => 'The data does not exist',
-
-
-];

+ 0 - 904
common/messages/ar-EG/ctx.php

@@ -1,904 +0,0 @@
-<?php
-return [
-    #Admin
-    'AdminAddedSuccessfully' => 'Administrator added successfully',
-    'AdminEditedSuccessfully' => 'Administrator edited successfully',
-    'passwordChangeSucceeded' => 'Password change succeeded',
-    'successAddAdminRole' => 'Admin role added successfully',
-    'editAdminRoleSuccess' => 'Edit admin role successfully',
-    'roleDoesNotExist' => 'Role does not exist',
-    'successSetAdminRolePermissions' => 'Set administrator role permissions successfully',
-    'successSetAdminRoleListFieldPermissions' => 'Set administrator role list field permissions successfully',
-    'adminUnderSelectedRoleCannotDeleted' => 'Administrators under the selected role cannot be deleted',
-    'twoPasswordsMustSame' => 'The two passwords must be the same',
-    'memberNameDoesNotExist' => 'The member name does not exist',
-    'loginPasswordHasNotChanged' => 'The login password has not changed',
-    'oldLoginPasswordIncorrect' => 'The old login password is incorrect',
-    'submissionDoesNotExist' => 'The submission does not exist',
-    'passwordLeastEightCharacters' => 'The password must contain at least eight characters',
-    'passwordRule' => 'The password must contain at least two types of digits, capital letters, small letters and special characters',
-    'unableToDeleteOneSelf' => "Can't delete yourself",
-    'resetPwdSucessNotice' => 'Password reset successfully',
-
-    #Finance
-    'commonModelsWithdrawStatusNameStatusApplied' => 'Applied',
-    'commonModelsWithdrawStatusNameStatusAudited' => 'Withdrawal has been reviewed',
-    'commonModelsWithdrawStatusNameStatusWaitPaid' => 'Unpaid',
-    'commonModelsWithdrawStatusNameStatusPaidFalse' => 'Failed',
-    'commonModelsWithdrawStatusNameStatusRefused' => 'Refused',
-    'commonModelsWithdrawStatusNameStatusPaid' => 'Withdrawal has been paid',
-    'commonModelsWithdrawStatusNameStatusReturned' => 'Returned',
-    'backendApiControllersFinaceRechargeStatusApprove' => 'Approve',
-    'backendApiControllersFinaceRechargeStatusReject' => 'Reject',
-    'modelListFinanceBalanceAuditListUserName' => 'Member Code',
-    'modelListFinanceBalanceAuditListRealName'=>'Member Name',
-    'modelListFinanceBalanceAuditListMemberLevel'=> 'Member level',
-    'modelListFinanceBalanceAuditListStockistLevel'=> 'Stockist level',
-    'modelListFinanceBalanceAuditListEmpLevel'=>'Rank',
-    'modelListFinanceBalanceAuditListTypeName'=>'Account type',
-    'modelListFinanceBalanceAuditListDealType'=>'Transaction type',
-    'modelListFinanceBalanceAuditListAmount'=>'Adjustment amount',
-    'modelListFinanceBalanceAuditListRemark'=>'Remark',
-    'modelListFinanceBalanceAuditListRemarkIsShow'=>'Whether The Front Desk Displays Comments',
-    'modelListFinanceBalanceAuditListAuditStatusName'=>'Audit status',
-    'modelListFinanceBalanceAuditListApplicant'=>'applicant',
-    'modelListFinanceBalanceAuditListCreatedAt'=>'Application time',
-    'modelListFinanceBalanceAuditListAuditName'=>'Reviewed by',
-    'modelListFinanceBalanceAuditListAuditTime'=>'Audit time',
-    'modelListFinanceTranserListTransferSn'=>'Transfer record serial number',
-    'modelListFinanceTranserListLastOutUserName'=>'Transfer out Member No',
-    'modelListFinanceTranserListLastOutRealName'=>'Name of transfer out member',
-    'modelListFinanceTranserListLastOutDecLvName'=>'Transfer out of member level',
-    'modelListFinanceTranserListOutWallet'=>'Transfer out account',
-    'modelListFinanceTranserListLastInUserName'=>'Transfer to member code',
-    'modelListFinanceTranserListLastInRealName'=> 'Transfer to member name',
-    'modelListFinanceTranserListLastInDecLvName'=>'Transfer to member level',
-    'modelListFinanceTranserListInWallet'=>'Transfer account',
-    'modelListFinanceTranserListOriAmount'=>'Transfer amount',
-    'modelListFinanceTranserListFee'=>'Service charge',
-    'modelListFinanceTranserListAmount'=>'Actual transfer amount',
-    'modelListFinanceTranserListCreatedAt'=>'Transfer time',
-    'modelListFinanceTranserListPeriodNum'=>'Transfer PC',
-    'financeControllerTransferListExport'=>'Transfer_List',
-    'modelListFinanceWithdrawSn'=>'Withdrawal serial number',
-    'modelListFinanceWithdrawPeriod'=>'Period',
-    'modelListFinanceWithdrawAt'=>'Withdrawal time',
-    'modelListFinanceWithdrawState'=>'State',
-    'modelListFinanceWithdrawAmount'=>'Withdrawal amount',
-    'modelListFinanceWithdrawFees' => 'Bank charge',
-    'modelListFinanceWithdrawRealAmount' => 'Actual amount',
-    'modelListFinanceWithdrawBank' => 'Bank info',
-    'modelListFinanceWithdrawBankNo' => 'Bank account',
-    'modelListFinanceWithdrawMobile' => 'Phone Number',
-    'modelListFinanceWithdrawUpdateAdminName' => 'Operations administrator',
-    'modelListFinanceWithdrawBackRemark' => 'Return note',
-    'modelListFinanceWithdrawWithdrawalTime'=>'Withdrawal time',
-    'modelsListsFinanceRechargeListgetColumnSn' => 'SN',
-    'modelsListsFinanceRechargeListgetColumnBank' => 'Bank',
-    'modelsListsFinanceRechargeListgetColumnBankNo' => 'Bank account',
-    'modelsListsFinanceRechargeListgetColumnAuditStatus' => 'Audit Status',
-    'modelsListsFinanceRechargeListgetColumnAmount' => 'Recharge amount',
-    'modelsListsFinanceRechargeListgetColumnCreatedAt' => 'Apply time',
-    'modelsListsFinanceRechargeListgetColumnRemark' => 'Remark',
-    'rechargeRecordSerialNumber'=>'Recharge record serial number',
-    'rechargeAuditStatusToBeReviewed'=>'To be reviewed',
-    'rechargeAuditStatusVoucherUploaded'=>'Voucher uploaded',
-    'rechargeAuditStatusAudited'=>'Audited',
-    'rechargeRechargeState'=>'Recharge State',
-    'rechargeRechargeStateNew'=>'New',
-    'rechargeRechargeStateProcessing'=>'Processing',
-    'rechargeRechargeStateSuccess'=>'Success',
-    'shopOrderListUndelivered' => 'Undelivered',
-    'shopOrderListDelivered'=>'Delivered',
-    'shopOrderListConfirmReceipt' => 'Confirm receipt',
-    'shopOrderListGetOrderStatusUnpaid' => 'Unpaid',
-    'shopOrderListGetOrderStatusPaid' => 'Paid',
-    'shopOrderListGetOrderStatusLogisticsStatus' => 'Logistics status',
-    'shopOrderListGetOrderStatusOrderCompletion' => 'Order completion',
-    'shopOrderListGetOrderStatusOrderCancellation' => 'Order cancellation',
-    'shopOrderListGetOrderStatusOrderDeletion' => 'Order deletion',
-    'shopOrderListGetOrderStatusOrderDeletionOrderRefund' => 'Order refund',
-    'shopOrderListGetOrderStatusPaymentFailed' => 'Payment failed',
-    'balanceAuditListGetBalanceAuditType' => 'Member bonus account',
-    'balanceAuditListCash' => 'Member Ecoin account',
-    'balanceAuditListGaragePoints' => 'Car points',
-    'balanceAuditListVillaPoints' => 'Villa points',
-    'financeRechargeListStatusTobeReviewed' => 'To be reviewed',
-    'financeRechargeListStatusApproved' => 'Approved',
-    'financeRechargeListStatusVoucherUploaded' => 'Voucher uploaded',
-    'financeRechargeListStatusRejected' => 'Rejected',
-    'rechargeStatusTitle:0' => 'To be reviewed',
-    'rechargeStatusTitle:1' => 'Voucher uploaded',
-    'rechargeStatusTitle:2' => 'Approved',
-    'rechargeStatusTitle:3' => 'Rejected',
-    'rechargeStatus:0' => 'NEW',
-    'rechargeStatus:1' => 'PROCESSING',
-    'rechargeStatus:2' => 'SUCCESS',
-    'rechargeStatus:3' => 'FAILED',
-
-    'memberEcoinAdjustmentListFileName'=> 'Member_Ecoin_adjustment_list',
-    'applicationChangeBalanceSucceeded'=> 'Application for change of member balance succeeded',
-    'applicationCannotReviewedAgain'=> 'The application has been reviewed and cannot be reviewed again',
-    'idNotMatchName'=>'Member code does not match member name',
-    'incorrectBalanceType'=>'Incorrect balance type',
-    'incorrectTransactionType'=>'Incorrect transaction type',
-    'adjustmentAmountCannotZero'=>'The adjustment amount cannot be 0',
-    'pointsEnoughAdjustmentNotAllowed' => "Insufficient balance of member's repurchase points, adjustment is not allowed",
-    'cannotSetPendingReview' => 'Cannot be set to pending review',
-    'auditCannotRepeated' => 'The audit has been approved and cannot be repeated',
-    'rejectedAuditCannotRepeated'=> 'It has been reviewed and rejected and cannot be reviewed again',
-    'statusParameterError' => 'Wrong state parameter',
-    'adjustmentBalanceCodeFailed' => 'Balance adjustment verification code failed',
-    'aPieceMustBeSelected' => 'A piece of data must be selected',
-    'noEligibleData' => 'No matching data',
-    'modificationAdjustmentMemberBalanceCompleted'=>'Modification and adjustment of member balance entry data completed',
-    'reviewThroughMemberBalance'=>'The review is done through the member balance',
-    'batchAuditMemberBalanceCompleted'=>'Batch audit/audit reject member balance completed',
-    'addedMemberSuccessfullyWithdrewCash' => 'The newly added member successfully withdrew cash',
-    'withdrawalInformationModifiedSuccessfully'=>'The withdrawal information is modified successfully',
-    'withdrawalApplyDoesNotExist'=>'Withdrawal request does not exist',
-    'memberNameOrNumberInconsistentSystem' => 'Withdrawal member code does not match member ID',
-    'memberRegisterTypeInconsistentWithSystem'=>'The selected member registration type is inconsistent with the system',
-    'withdrawalMustGreaterThanZero'=>'Withdrawal amount must be greater than 0',
-    'withdrawalAmountMustInteger' => 'Withdrawal amount must be an integer',
-    'withdrawalAmountCannotLessThan' => 'The withdrawal amount cannot be less than',
-    'WithdrawalAmountCannotHigherThan' => 'Withdrawal amount cannot be higher than',
-    'withdrawalAmountMustLessThanAvailableBalance' => 'The withdrawal amount must be less than the available balance',
-    'paymentPasswordIncorrect' => 'The payment password is incorrect',
-    'failedApplyWithdrawalVerify' => 'Application for cash withdrawal verification failed',
-    'withdrawalAuditVerificationFailed' => 'Withdrawal audit verification failed',
-    'cannotSelectDateInThePast'=>'Cannot select a date in the past',
-    'statusSettingSucceeded' => 'Status setting succeeded',
-    'exportWithdrawApplyExcelName' => 'Withdraw_Apply',
-    'invoiceEnteredSuccessfully' => 'Invoice entered successfully',
-    'modifyInvoiceEntryCompleted' => 'Modify invoice entry data completion',
-    'reviewInvoiceDataCompleted' => 'Review invoice data completed',
-    'memberPerformanceAdjustmentList' => 'Member Performance Adjustment List',
-    'applicationAdjustMemberPerfSuccess' => 'The application to adjust the member performance was successful',
-    'nextPeriodConnectedNetCannotAdjusted' => 'The next period [ {periodNum} ] has been connected to the net, and this period cannot be adjusted',
-    'passReviewAdjustPerfSuccess' => "Auditing success by adjusting member performance",
-    'batchReviewMemberPerfCompletion' => 'Batch review/rejection of member performance completion',
-    'transactionTypeAddSuccess'=> 'Transaction type added successfully',
-    'modifyTransactionTypeCompleted' => 'Modify the transaction type to complete',
-    'unableDelete' => 'Cannot be deleted',
-    'pendingRecordAfterThePendingReviewed' => 'If there is a pending record in the member review list, it shall be submitted after the pending record has been reviewed',
-    'periodNotNetCannotAdjusted' => 'This period [ {periodNum} ] is not connected to the net and cannot be adjusted',
-    'adjustmentTypeIncorrect' => 'The adjustment type is incorrect',
-    'incorrectLocation' => 'Incorrect location',
-    'amountChangeCannotZero' => 'The amount of change cannot be 0',
-    'memberUnderrepresentedRegion' => 'The member is underrepresented in that region',
-    'memberSurplusRegionLess' => 'The member has insufficient surplus in the region for the current period',
-    'withdrawFormNoSn' => "There is no paid record of withdrawals serial number {sn}",
-    'withdrawFormUserNameInconsistent'=>'The serial number of the withdrawal in Excel. {excelName} is inconsistent with information in the system {userName}',
-    'withdrawFormRealNameInconsistent' => "The serial number of the withdrawal in Excel. {sn}, member's name  {excelName}, is inconsistent with information in the system {realName}",
-    'withdrawFormPeriodsInconsistent' => "Excel withdrawal serial number {sn} withdrawal periods {withdrawPeriodNum}, is inconsistent with the information in the system【 {systemWithdrawPeriodNum} 】",
-    'withdrawFormPaidAtInconsistent' => "Payment date of the withdrawal serial number in Excel {sn} {paidAt} is inconsistent with system information {systemPaidAt}",
-    'withdrawFormAmountInconsistent' => "Withdrawal amount of the withdrawal serial number in Excel {sn} {execlAmount} is inconsistent with the information in the system {systemAmount}",
-    'withdrawFormBankRealNameInconsistent' => "Real-time account name of the withdrawal serial number in Excel {sn} {execlBankRealName}, is inconsistent with the information in the system  {systemName}  Inconsistent ",
-    'withdrawFormBankNoInconsistent' => "Real-time bank account of the withdrawal serial number in Excel {excelBankNo} {sn}  is inconsistent with information in system {systemBankNo}",
-    'withdrawFormNoExistsUser'=>'This user does not exist',
-    'withdrawChkAuditStatus' => "The current status of the withdrawal  {sn}  is 【 {statusName} 】, cannot be set to【 {newStatusName}】",
-
-    # Internet function
-    'numberOfLayers' => 'Number Of Layers',
-    'recommendedMemberNo'=>'Sponsor Member No',
-    'nameRecommendedMember'=>'Name Of Sponsor Member',
-    'recommendedMemberLevel' => 'Sponsor Member Level',
-    'highestDirector' => 'Highest Director',
-    'highestCrown' => 'Highest Crown',
-    "joiningPeriod" => 'Joining Period',
-    'modelListAtlasUserName' => 'Member Code',
-    'modelListAtlasDepth' => 'Depth',
-    'numberOfPeriods' => 'Number Of Periods',
-    'atlasViewLimitNotice'=>'Top 23 sub members of members can be viewed at most',
-    'atlasNetworkViewLimitNotice'=>'View the top 20 sub members of the member at most',
-    'placementMemberNumber'=>'Placement Member Number',
-    'placementMemberName' => 'Placement Member Name',
-
-    #Products management
-    'shopListProductName' => 'Product Name',
-    'shopListProductsCode' => 'Products Code',
-    'shopListDiscountRate' => 'Discount Rate',
-    'shopListProductsType' => 'Products Type',
-    'shopListProductCategory' => 'Product Category',
-    'shopListPaymentMode' => 'Payment Mode',
-    'shopListPriceStandard' => 'US Price($)',
-    'shopListSellPrice' => 'Sales Price(₦)',
-    'shopListProductsBv' => 'Products BV',
-    'shopListTaxRate' => 'Tax Rate(%)',
-    'shopListTax' => 'Tax(₦)',
-    'shopListInventory' => 'Inventory',
-    'shopListStatus' => 'Status',
-    'shopListOnSale' => 'On sale',
-    'shopListSoldOut' => 'Sold out',
-    'shopListUpdatedAt' => 'Update Time',
-    'shopListEntryArea' => 'Office Entry area',
-    'shopListResellingArea' => 'Office Reselling area',
-    'shopList1stPurchase' => '1st Purchase',
-    'shopListRepeatPurchase' => 'Repeat Purchase',
-
-    'shopListStandardProducts' => 'Standard Products',
-    'shopListCarFundProducts' => 'Car Fund Products',
-    'shopListVillaFundProducts' => 'Villa Fund Products',
-    'shopListAccountBalance' => 'Account Balance',
-    'shopListPayTravelBonus' => 'Travel Bonus',
-    'shopListPayCarFund' => 'Car Fund',
-    'shopListPayVillaFund' => 'Villa Fund',
-    'shopListPayStack' => 'PayStack',
-    'shopGoodTypeDomestic' => '国内商品',
-    'shopGoodTypeImport' => '国内商品',
-    'beforeAdjustmentPcNo' => 'Before adjust Pc No.',
-    'afterAdjustmentPcNo' => 'After adjust Pc No.',
-
-    'shopExportListName' => 'Goods_List',
-    'shopProductAddSucceededNotice' => 'Product add succeeded',
-    'shopProductEditSucceed'=>'Product editing succeeded',
-    'shopStatusSetSucceedNotice' => 'Status setting succeeded',
-    'shopDelOrderSuccedNotice'=>'The order is deleted successfully, please regenerate the performance sheet and calculate the bonus',
-    'shopDecOrderListExport' => 'First purchase order list',
-    'shopOrderListExport' => 'Order_List',
-    'shopStatusUpdateErrorNotice'=>'Status update error',
-    'shopOrderListExportPdf'=>'Order list',
-    'shopadminRefund'=>'Refund successfully',
-    'shopBaOrderListExport' => 'Ba_Order_List',
-    'shopBrandAmbassadorOrderExport'=>'Brand Ambassador Order',
-    'shopSetProductStatusErrorNotice'=>'The current product status is【{nowStatus}】,cannot be set to【{newStatus}】',
-    'shopPayTypeCash' => 'Ecoin',
-    'shopPayTypeGaragePoints' => 'Car Fund',
-    'shopPayTypeVillaFund' => 'Villa Fund',
-    'shopBuyActionErrorNotice'=>'The wrong way to buy the product',
-    'shopSortMoreThanOne'=>'Please fill in numbers greater than or equal to 1 for sorting',
-    'shopDiscountZeroBetweenOne'=>'Please fill in the number between 0-1 for the discount',
-    'shopDeleteDecOrderAndOrderFailedNotice'=>'Failed to delete first purchase order, failed to delete order',
-    'shopBackOrderFailedNotice'=>'Failed to roll back membership level, failed to delete order',
-    'shopLockFailedDeleteOrderFailed'=>'Failed to lock member, failed to delete order',
-    'shopDeleteOrderFailed' => 'Failed to delete order',
-    'shopBackAmountFailedDeleteOrderFailed'=>'Failed to refund the order amount, failed to delete the order',
-    'shopNotFindOrder' => 'Order information not found, the order number is:',
-    'shopOrderAlreadyDeleted'=> 'The order has been deleted, the order number is:',
-    'shopOrderPeriodNumNotExist'=>'The performance period corresponding to the order does not exist, and the order number is {sn} Performance period is:{periodNum}',
-    'shopOrderPeriodNumIsSented'=>'The order corresponding to the performance period has been posted online, and the order number is {sn} Performance period is:{periodNum}',
-    'shopOrderPeriodNumSenting'=>'The performance period corresponding to the order is being linked online,the order number is{sn} Performance period is:{periodNum}',
-    'shopNotFindDecOrder' => 'The corresponding order information has not been obtained,the order number is:',
-    'shopDecAlreadyDeleted'=>'The corresponding order information has been deleted,the order number is:',
-    'shopHasLaterOrder' => 'There is a later order, this order cannot be deleted,the order number is:',
-    'shopRegisterHasUpgradeOrder' => 'There is an upgrade order for this registration form, which cannot be deleted,the order number is:',
-    'shopRegisterHasFxOrder'=>'There is a cancellation order for this registration form, which cannot be deleted,the order number is:',
-    'shopOrderListMemberCode' => 'Member Code',
-    'shopOrderListStockist'=>'Stockist',
-    'shopOrderListCreatorNo'=>'Creator No',
-    'shopOrderListCreatorName'=>'Creator Name',
-    'shopOrderListOrderCode'=>'Order Code',
-    'shopOrderListOrderStatus'=>'Status',
-    'shopOrderListProductCode' => 'Product Code',
-    'shopOrderListProductName'=>'Product Name',
-    'shopOrderListRecipient' => 'Recipient',
-    'shopOrderListContactOne' => 'Contact 1',
-    'shopOrderListContactTwo' => 'Contact 2',
-    'shopOrderListState'=>'State',
-    'shopOrderListLocalGovernmentArea' => 'Local Government Area',
-    'shopOrderListCity'=>'City',
-    'shopOrderListDetailedAddress'=>'Detailed Address',
-    'shopOrderDeliveryWarehouse' => 'Delivery Warehouse',
-    'shopOrderListPeriod' => 'Period',
-    'shopOrderListOrderType' => 'Order Type',
-    'shopOrderListOrderTypeRepeatPurchase'=>'Repeat Purchase',
-    'shopOrderListOrderTypePoints'=>'Points',
-    'shopOrderListOrderTypeRepeatPurchaseOrder' => 'Repurchase order',
-    'shopOrderListOrderTypePointsOrder' => 'Point order',
-    'shopOrderListOrderTypeZc'=>'Welcome Pack',
-    'shopOrderListOrderTypeFx'=>'Repeat Purchase',
-    'shopOrderListCreationTime' => 'Creation Time',
-    'shopOrderListPayType' => 'Pay Type',
-    'shopOrderListPaymentTime'=>'Payment Time',
-    'shopOrderListDeliveryTime'=>'Delivery Time',
-    'shopOrderListQty' => 'Qty',
-    'shopOrderListItemPricing'=>'Item Pricing',
-    'shopOrderListTotalPrice' => 'Total Price',
-    'shopOrderListBVAmount'=>'BV Amount',
-    'shopOrderListUsTotalPrice'=>'Total Price($)',
-    'shopOrderListFreight' => 'Freight',
-    'shopOrderListTaxRate'=>'Tax Rate',
-    'shopOrderListTax' => 'Tax',
-    'shopOrderListCourierCompany' => 'Courier Services Company',
-    'shopOrderListCourierNumber' => 'Courier Number',
-    'shopOrderListShippingMethod' => 'Shipping Method',
-    'shopOrderListShippingMethodMailing' => 'Mailing',
-    'shopOrderListShippingMethodAutoPick' => 'Auto pick',
-    'shopOrderListMemberNotes' => 'Member Notes',
-    'shopOrderListShipmentStatus' => 'Shipment Status',
-    'shopOrderListIsAuto' => 'Is Auto',
-    'shopOrderListIsAutoYes' => 'Yes',
-    'shopOrderListIsAutoNo' => 'No',
-    'shopOrderListOrderNo' => 'Order No',
-    'shopOrderPaymentAmount' => 'Payment Amount',
-    'shopOrderPayBV' => 'Pay BV',
-    'total' => 'Total',
-    'date' => 'Date',
-    'orderCode' => 'Order Code',
-    'orderDetail' => 'Order Detail',
-    'productCode' => 'Product Code',
-    'productName' => 'Product Name',
-    'productPrice' => 'Product Price',
-    'qty' => 'Qty',
-    'taxRate' => 'Tax Rate',
-    'totalTax' => 'Total Tax',
-    'totalAmount' => 'Total Amount',
-    'signature' => 'Signature',
-    'orderNotExist' => 'order does not exist',
-    'orderHasBeenConnected' => 'The order has been connected to the net, and this period cannot be adjusted',
-    'invalidPcNo' => 'Invalid Pc No.',
-
-    #Log
-    'adminUserDoesNotExist'  => 'Administrator does not exist',
-    'adminUserGroupDoesNotExist'  => 'Management group does not exist',
-    'columnArrayMustExistHeader'  => 'The header must exist in the column array',
-    'operatingType'  => 'Operation Type',
-    'operatingObject'  => 'Operation object',
-    'objectNumber'  => 'Object number',
-    'requestContent'  => 'Request content',
-    'returnContent'  => 'Return content',
-    'operator'  => 'Operator',
-    'operatingTime'  => 'Operation Time',
-    'numberOfPhases'  => 'Number Of Periods',
-    'IPAddress'  => 'IP Address',
-    'client'  => 'Client',
-    'operatingSystem'  => 'Operating System',
-    'requestPath'  => 'Request Path',
-    'operationObjectNumber'  => 'Operation Object No',
-    'remarks'  => 'Remark',
-    'returnResult'  => 'Return content',
-    'successTimes'  => 'Successful login times',
-    'failTimes'  => 'Failed logins times',
-    'loginSuccess'  => 'login successfully',
-    'loginFail'  => 'Login failed',
-    'adminLoginLog'  => 'Admin login log',
-    'userLoginLog'  => 'Member login log',
-    'version'  => 'Version number',
-    'adminOperatingLog'  => 'Administrator operation log',
-    'updateNumberOfPhasesConfig'  => 'Update period configuration',
-    'updateLevelBonusConfig'  => 'Update level bonus configuration',
-    'updateBonusConfig'  => 'Update bonus configuration',
-    'updateRankBonusConfig'  => 'Update rank bonus configuration',
-    'updateTransferConfig'  => 'Update transfer configuration',
-    'requestChangeUserBalance'  => 'Apply for change of membership balance',
-    'checkUserBalance'  => 'Review member balance',
-    'batchRequestChangeUserBalance'  => 'Batch application to change member balance',
-    'blankEntry'  => 'Empty order entry',
-    'delBlankUser'  => 'Delete empty order member',
-    'changeUserLevel'  => 'Modify Member Level',
-    'applyAdjustmentUserPerformance'  => 'Apply for Adjustment of Member Performance',
-    'applyModifyUserStatus'  => 'Apply to modify member status',
-    'setTeamLeaders'  => 'Set up team leaders',
-    'checkUserStatus'  => 'Review member status',
-    'displayMap'  => 'Show map',
-    'hiddenMap'  => 'Hide map',
-    'setDeclarationCenter'  => 'Set up stockist',
-    'cancelDeclarationCenter'  => 'Cancel stockist',
-    'userActivation'  => 'Member activation',
-    'userLocking'  => 'Member lock',
-    'modifyUserInfo'  => 'Modify member information',
-    'editAdmin'  => 'Edit administrator',
-    'applyRemoveNetwork'  => 'Apply for mobile network',
-    'approveRemoveNetwork'  => 'Approved by mobile network',
-    'resetPasswords'  => 'Reset password',
-    'cancellationSystem'  => 'Revocation system',
-    'addSystem'  => 'Add system',
-    'editSystem'  => 'Edit system',
-    'recoverySystem'  => 'Recovery system',
-    'systemLog'  => 'System log',
-    'shopOrderPeriodAdjust' => 'Order Period Adjust',
-    'memberHighestEmpLvAdjust' => 'Member Highest Director Adjustment',
-    'call'  => 'Transfer',
-    'beCcalled'  => 'called',
-    'userOperatingLog'  => 'Member operation log',
-    'enableDisableAutomaticWithdrawal'  => 'Enable / Disable Automatic Withdrawal',
-    'enableDisableReSalesSMSReminder'  => 'Enable / Disable Re Sales SMS Reminder',
-    'memberTransfer'  => 'Member Transfer',
-    'memberWithdrawalApplication'  => 'Member Withdrawal Application',
-    'memberModificationInformation'  => 'Member Modification Information',
-    'modifyMasterPoint'  => 'Modify Master Point',
-    'periodNumber' => 'Period Number',
-    'serialNumber' => 'Serial Number',
-    'rank'  => 'Rank',
-    'adjustMemberHighestDirector' => 'Adjust Highest Director',
-
-    #Ad
-    'AdAddedSuccessfully' => 'Ad added successfully',
-    'EditAdSuccessfully' => 'Ad edited successfully',
-
-    #Article
-    'articleNotExists'  => 'Article does not exist',
-
-    #File
-    'mallManagement'    => 'Mall Management',
-    'memberManagement'  => 'Member Management',
-    'networkChart' => 'Network Chart',
-    'resaleManagement' => 'Resale management',
-    'bonusManagement' => 'Bonus management',
-    'financialManagement' => 'financial management',
-
-    # Public
-    'amountUnit' => '₦',
-    'sceneDoesNotExist' => 'Scene does not exist',
-    'memberDoesNotExist' => 'Member does not exist',
-    'countryDoesNotExist' => 'Country does not exist',
-    'mustSelectOneItemToDelete' => 'must select one item to delete',
-    'dataNotExists' => 'Data not exists',
-    'startExporting'=> 'Starting exporting, please go to File Management - Export Files to view.',
-    'incorrectDateFormat' => 'Incorrect date format',
-    'notConnection' => 'Connection not operated for too long',
-    'deleteFailed' => 'failed to delete',
-    'deleteSuccessfully' => 'delete successfully',
-    'quickLoginCanNotOperate' => 'Members who log in quickly cannot perform any operations',
-    'selectAtLeastOne' => 'A data must be selected',
-    'failed' => 'Failed',
-    'successfully' => 'Successfully',
-    'createAt' => 'Creation Time',
-    'status' => 'Status',
-    'state' => 'State',
-    'sort' => 'Sort',
-    'illegalRequest' => 'Illegal request',
-    'invalidParameter' => 'Invalid Parameter',
-    'dataDoesNotExists' => 'The data does not exist',
-    'operationAdministrator' => 'Operation Administrator',
-    'typeError' => 'Type error',
-    'contentError' => 'Content error',
-    'hideSuccessfully' => 'hide successfully',
-    'UnhideSuccessfully' => 'Unhide successfully',
-
-    # Member
-    'memberCode' => 'Member Code',
-    'memberName' => 'Member Name',
-    'memberAddress' => 'Member Address',
-    'memberPhone' => 'Member Phone',
-    'loginStatus' => 'Login Status',
-    'allowLogin' => 'Allow Login',
-    'prohibitLogin' => 'Prohibit Login',
-    'activate' => 'Activate',
-    'lock' => 'Lock',
-    'filterAllowLogin' => 'Filter Allow Login',
-    'bankName' => 'Bank Name',
-    'bankCode' => 'Bank Code',
-    'bankAccountNumber' => 'Bank Account Number',
-    'admin' => 'Admin',
-    'minCharge' => 'Min Charge',
-    'maxCharge' => 'Max Charge',
-    'chargeRate' => 'Charge Rate',
-    'updater' => 'Updater',
-    'userName' => 'USER_NAME',
-    'passwordHash' => 'PASSWORD_HASH',
-    'payPassword' => 'PAY_PASSWORD',
-    'nation' => 'NATION',
-    'realName' => 'REAL_NAME',
-    'IDCard' => 'ID_CARD',
-    'IDType' => 'ID_TYPE',
-    'mobile' => 'MOBILE',
-    'address' => 'ADDRESS',
-    'IDImage' => 'ID_IMAGE',
-    'openBank' => 'OPEN_BANK',
-    'bankAddress' => 'BANK_ADDRESS',
-    'bankNo' => 'BANK_NO',
-    'bankProvince' => 'BANK_PROVINCE',
-    'bankCity' => 'BANK_CITY',
-    'bankCounty' => 'BANK_COUNTY',
-    'spouseName' => 'SPOUSE_NAME',
-    'spouseIDCard' => 'SPOUSE_IDCARD',
-    'decClosed' => 'DEC_CLOSED',
-    'decClosedAt' => 'DEC_CLOSED_AT',
-    'decLv' => 'DEC_LV',
-    'empLv' => 'EMP_LV',
-    'crownLv' => 'CROWN_LV',
-    'province' => 'PROVINCE',
-    'city' => 'CITY',
-    'county' => 'COUNTY',
-    'tel' => 'TEL',
-    'subComID' => 'SUB_COM_ID',
-    'avatar' => 'AVATAR',
-    'isDec' => 'IS_DEC',
-    'isAtlas' => 'IS_ATLAS',
-    'isRecharge' => 'IS_RECHARGE',
-    'DEC_ID' => 'DEC_ID',
-    'birthday' => 'BIRTHDAY',
-    'decRoleID' => 'DEC_ROLE_ID',
-    'periodAt' => 'PERIOD_AT',
-    'decProvince' => 'DEC_PROVINCE',
-    'decCity' => 'DEC_CITY',
-    'decCounty' => 'DEC_COUNTY',
-    'isUnion' => 'IS_UNION',
-    'statusAt' => 'STATUS_AT',
-    'verified' => 'VERIFIED',
-    'verifiedAt' => 'VERIFIED_AT',
-    'notOperating' => 'NOT_OPERATING',
-    'regFrom' => 'REG_FROM',
-    'IDCardPrefix' => 'ID_CARD_PREFIX',
-    'sex' => 'SEX',
-    'decAccountOld' => 'DEC_ACCOUNT_OLD',
-    'bankUpdatedAt' => 'BANK_UPDATED_AT',
-    'isDirectSeller' => 'IS_DIRECT_SELLER',
-    'decLvUpdatedAt' => 'DEC_LV_UPDATED_AT',
-    'decLvUpdatedPeriod' => 'DEC_LV_UPDATED_PERIOD',
-    'decAddress' => 'DEC_ADDRESS',
-    'decPhone' => 'DEC_PHONE',
-    'guarantor' => 'GUARANTOR',
-    'guarantorName' => 'GUARANTOR_NAME',
-    'partFuncClosed' => 'PART_FUNC_CLOSED',
-    'lastDecLvUpdatedPeriod' => 'LAST_DEC_LV_UPDATED_PERIOD',
-    'userCreator' => 'USER_CREATOR',
-    'userUpdater' => 'USER_UPDATER',
-    'lastDecLvUpdatedAt' => 'LAST_DEC_LV_UPDATED_AT',
-    'decCreatedAt' => 'DEC_CREATED_AT',
-    'partFuncClosedRemark' => 'PART_FUNC_CLOSED_REMARK',
-    'decCreatedPeriod' => 'DEC_CREATED_PERIOD',
-    'passwordChanged' => 'PASSWORD_CHANGED',
-    'subComLeader' => 'SUB_COM_LEADER',
-    'zgUpgradePv' => 'ZG_UPGRADE_PV',
-    'appClientID' => 'APP_CLIENT_ID',
-    'readAgreement' => 'READ_AGREEMENT',
-    'lastDecLv' => 'LAST_DEC_LV',
-    'bonusAppClientID' => 'BONUS_APP_CLIENT_ID',
-    'isFirstOpen' => 'IS_FIRST_OPEN',
-    'isModifyPassword' => 'IS_MODIFY_PASSWORD',
-    'isStudio' => 'IS_STUDIO',
-    'email' => 'EMAIL',
-    'levelBeforeModification' => 'Level Before Modification',
-    'modifiedLevel' => 'Modified Level',
-    'country' => 'Country',
-    'beforeCountry' => '修改前国家',
-    'afterCountry' => '修改前国家',
-
-    'moveMember' => 'Move Member',
-    'moveMemberName' => 'Move Member Name',
-    'uperCodeBeforeMoving' => 'Uper Code Before Moving',
-    'uperCodeAfterMoving' => 'Uper Code After Moving',
-    'typeOfMoving' => 'Type Of Moving',
-    'position' => 'Position',
-    'periodOfMoving' => 'Period Of Moving',
-    'whetherToMove' => 'Whether To Move',
-    'percentage' => 'Percentage',
-    'AdministratorOfMoving' => 'Administrator Of Moving',
-    'joiningDate' => 'Joining Date',
-    'currentMemberLevel' => 'Current Member Level',
-    'currentAdjustmentDate' => 'Current Adjustment Date',
-    'PCMemberLevel' => 'PC Member Level',
-    'latestDirector' => 'Latest Director',
-    'latestCrown' => 'Highest Crown',
-    'recommendationNo' => 'Sponsor Code',
-    'recommendedName' => 'Sponsor Name',
-    'placementNo' => 'Placement No',
-    'placementName' => 'Placement Name',
-    'resettlementArea' => 'Resettlement Area',
-    'phoneNumber' => 'Phone Number',
-    'alternatePhoneNumber' => 'Alternate Phone Number',
-    'stockistCode' => 'Stockist Code',
-    'whetherStockist' => 'Whether Stockist',
-    'stockistOrNot' => 'Stockist or not',
-    'whetherChartDisplay' => 'Whether Chart Display',
-    'whetherRechargeDisplay' => 'Whether Recharge Display',
-    'stockistLevel' => 'Stockist Level',
-    'commonAddress' => 'Common Address',
-    'enableTransfer' => 'Enable Transfer',
-    'activeStatus' => 'Active Status',
-    'locking' => 'Locking',
-    'activation' => 'Activation',
-    'on' => 'On',
-    'off' => 'Off',
-    'administratorOfReviewing' => 'Administrator Of Reviewing',
-    'reviewTime' => 'Review Time',
-    'I.Market' => 'I. Market',
-    'II.Market' => 'II. Market',
-    'userMoveAuditStatus:0' => 'To be reviewed',
-    'userMoveAuditStatus:1' => 'Approved',
-    'userMoveAuditStatus:2' => 'Failed',
-    'userMoveAuditStatus:3' => 'Audit reject',
-    'levelNoChange' => '级别没有变化无需调整',
-    'studioOrNot' => 'Studio or not',
-
-    # Network
-    'placementNetwork' => 'Placement Network',
-    'sponsorNetwork' => 'Sponsor Network',
-
-
-    # Bonus
-    'memberBonus' => 'Member Bonus',
-    'memberEcoin' => 'Member Ecoin',
-    'travelIncentive' => 'Travel Incentive',
-    'carIncentive' => 'Car Incentive',
-    'villaIncentive' => 'Villa Incentive',
-    'requirePeriods' => 'Please enter Period No.',
-    'requireMemberNumber' => 'Please enter member code',
-    'payCycle' => 'Pay Cycle(PC)',
-    'sponsorNo' => 'Sponsor No',
-    'sponsorName' => 'Sponsor Name',
-    'superiorCode' => 'Superior Code',
-    'superiorName' => 'Superior Name',
-    'superiorNumber' => 'Superior Number',
-    'welcomeBonus' => 'Welcome Bonus',
-    'teamBonus' => 'Team Bonus',
-    'uncappedTeamBonus' => 'Uncapped Team Bonus',
-    'directorBonus' => 'Director Bonus',
-    'stockistCommission' => 'Stockist Commission',
-    'quarterlyBonus' => 'Quarterly Bonus',
-    'actualBonus' => 'Actual Bonus',
-    'totalBonus' => 'Total Bonus',
-    'totalRevenue' => 'Total Revenue',
-    'bonusMonth' => 'Bonus Month',
-    'oneNewMarketPerformance' => 'I. new market performance',
-    'twoNewMarketPerformance' => 'II. new market performance',
-    'oneMarketBalancePerformance' => 'I. market balance performance',
-    'twoMarketBalancePerformance' => 'II. market balance performance',
-    'managementAward' => 'Management Award',
-    'bonusDate' => 'Settlement Date',
-    'transactionType' => 'Transaction Type',
-    'memberLevel' => 'Member Level',
-    'balanceBeforeTransaction' => 'Balance Before Transaction',
-    'debitCredit' => 'Debit/Credit',
-    'newBalance' => 'New Balance',
-    'personalPerformance' => 'Personal Performance',
-    'remainderLeftLeg' => 'Remainder@Left Leg',
-    'remainderRightLeg' => 'Remainder@Right Leg',
-    'cumulativeTeamPerformance' => 'Cumulative Team Performance',
-    'salesNo' => 'Sales No',
-    'saleType' => 'Type',
-    'saleStatus' => 'Status',
-    'sponsorNoAtSettlement' => 'Sponsor No. At Settlement',
-    'sponsorNameAtSettlement' => 'Sponsor Name At Settlement',
-    'entryBV' => 'Entry BV',
-    'entryAmount' => 'Entry Amount',
-    'entryNo' => 'Entry No',
-    'orderSource' => 'Order Source',
-    'reviewed' => 'Reviewed',
-    'wastedisposal' => 'Waste disposal',
-    'whetherActive' => 'Whether Active',
-    'yes' => 'Yes',
-    'no' => 'No',
-    'declarationPerformance' => 'Declaration Performance',
-    'cancellationPerformance' => 'Cancellation Performance',
-    'LNewMarketPerformance' => 'L. New Market Performance',
-    'LNewPerformanceOfMarketEntry' => 'L. New Performance Of Market Entry',
-    'LNewPerformanceOfMarketReCancellation' => 'L. New Performance Of Market Re Cancellation',
-    'RNewMarketPerformance' => 'R. New Market Performance',
-    'RNewPerformanceOfMarketEntry' => 'R. New Performance Of Market Entry',
-    'RNewPerformanceOfMarketReCancellation' => 'R. New Performance Of Market Re Cancellation',
-    'LMarketBalancePerformance' => 'L. Market Balance Performance',
-    'RMarketBalancePerformance'=> 'R. Market Balance Performance',
-    'LMarketEntryBalancePerformance' => 'L. Market Entry Balance Performance',
-    'RMarketEntryBalancePerformance' => 'R. Market Entry Balance Performance',
-    'LMarketReconditioningBalancePerformance' => 'L. Market Reconditioning Balance Performance',
-    'RMarketReCancellationBalancePerformance' => 'R. Market Re Cancellation Balance Performance',
-    'teamPerformance' => 'Team Performance',
-    'recommenderNo' => 'Recommender No',
-    'recommenderName' => 'Recommender Name',
-    'directorRank' => 'Director Rank',
-    'directorPGSPerformance' => 'Director PGS Performance',
-    'LNewMarketEntryPerformance' => 'L. New Market Entry Performance',
-    'RNewMarketEntryPerformance' => 'R. New Market Entry Performance',
-    'LMarketMonthlyRemainingDeclarationPerformance' => 'L. Market Monthly Remaining Declaration Performance',
-    'RMarketMonthlyRemainingDeclarationPerformance' => 'R. Market Monthly Remaining Declaration Performance',
-    'monthlyNewTeamPerformance' => 'Monthly New Team Performance',
-    'monthlyCumulativeTeamPerformance' => 'Monthly Cumulative Team Performance',
-
-    # 【数据表】
-    # 会员等级
-    'dbDeclarationLevelBA' => 'BA',
-    'dbDeclarationLevelElite' => 'Elite',
-    'dbDeclarationLevelPro' => 'Pro',
-    'dbDeclarationLevelVip' => 'Vip',
-    # 管理星级
-    'dbEmployLevelNoRank' => 'No Rank',
-    'dbEmployLevel1StarDirector'  => '1-Star Director',
-    'dbEmployLevel2StarDirector'  => '2-Star Director',
-    'dbEmployLevel3StarDirector'  => '3-Star Director',
-    'dbEmployLevel4StarDirector'  => '4-Star Director',
-    'dbEmployLevel5StarDirector'  => '5-Star Director',
-    'dbEmployLevel6StarDirector'  => '6-Star Director',
-    'dbEmployLevel7StarDirector'  => '7-Star Director',
-    # 皇冠星级
-    'dbCrownLevel0StarCrown' => '0-Star Crown',
-    'dbCrownLevel1StarCrown' => '1-Star Crown',
-    'dbCrownLevel2StarCrown' => '2-Star Crown',
-    'dbCrownLevel3StarCrown' => '3-Star Crown',
-    'dbCrownLevel4StarCrown' => '4-Star Crown',
-    'dbCrownLevel5StarCrown' => '5-Star Crown',
-    'dbCrownLevel6StarCrown' => '6-Star Crown',
-    'dbCrownLevel7StarCrown' => '7-Star Crown',
-    # 报单中心级别
-    'dbDecRole1stLevelStockist'	=> '1st Level Stockist',
-    'dbDecRole2ndLevelStockist'	=> '2nd Level Stockist',
-    'dbDecRole3rdLevelStockist'	=> '3rd Level Stockist',
-    'dbDecRole4thLevelStockist'	=> '4th Level Stockist',
-    'dbDecRole5thLevelStockist'	=> '5th Level Stockist',
-    # 注册类型
-    'dbRegTypePersonal' => '个人',
-    'dbRegTypeBusiness' => '个体工商户',
-    'dbRegTypeCompany' => '公司',
-    # 交易类型
-    'dbConfigAllowWallet' => '转出转入配置',
-    'dbConfigAutoCalcPeriod' => '自动结算',
-    'dbConfigAutoClosePeriod' => '自动封期',
-    'dbConfigBackupTime' => '备份时间',
-    'dbConfigBackupWeekDate' => '备份星期',
-    'dbConfigBaseScore' => '基础分数配置',
-    'dbConfigBsNoPvPointsPercent' => '没有业绩的时候,蓝星奖金给多少业绩比例的兑换积分',
-    'dbConfigCalcYear' => '期数计算至年份',
-    'dbConfigCashReconsumeBonusPercent' => '现金购物PV算奖比例',
-    'dbConfigCloseDays' => '自动封期天数',
-    'dbConfigCloseTime' => '自动封期时间',
-    'dbConfigCloseWeekDate' => '自动封期星期',
-    'dbConfigDealSwitch' => '查看交易记录',
-    'dbConfigDecRoleBonusFrom' => '服务奖来源',
-    'dbConfigExchangeRate' => '汇率配置',
-    'dbConfigFlowBonusSwitch' => '奖金明细',
-    'dbConfigFreeShipping' => '商品免运费阈值',
-    'dbConfigInstalmentQty' => '分期商品期数',
-    'dbConfigFreight' => '商品运费',
-    'dbConfigFwCoefficientFromFxCash' => '服务奖现金复消系数',
-    'dbConfigFwCoefficientFromFxPoint' => '服务奖积分复消系数',
-    'dbConfigFwCoefficientFromZc' => '服务奖首购报单系数',
-    'dbConfigHistoryBonusLimit' => '奖金余额备份近几周',
-    'dbConfigIsCanTransferProp' => '是否开启单笔转账比例',
-    'dbConfigIsCanWithdrawBack' => '是否开启前台提现退回功能',
-    'dbConfigIsDecReg' => '只允许报单中心报单',
-    'dbConfigIsOpenUpgrade' => '是否开启会员升级单功能',
-    'dbConfigIsResaleUmbrella' => '是否只允许为伞下会员报复消单',
-    'dbConfigManageTaxPercent' => '管理费比例',
-    'dbConfigManualWithdrawMinAmount' => '手动提现最低金额',
-    'dbConfigMonthPcsPvFxCondition' => '每月个人总消费PV条件',
-    'dbConfigNewBonusSwitch' => '最新奖金',
-    'dbConfigObservePeriodLimit' => '观察期月份限制',
-    'dbConfigOpenFW' => '是否开启服务奖',
-    'dbConfigOpenGL' => '是否开启管理奖',
-    'dbConfigOpenGarage' => '车奖积分比例',
-    'dbConfigOpenGarageCap' => '车奖个人封顶值',
-    'dbConfigOpenQY' => '是否开启团队奖',
-    'dbConfigOpenQuarter' => '季度奖金',
-    'dbConfigOpenTG' => '是否开启推广奖',
-    'dbConfigOpenTourism' => '旅游积分比例',
-    'dbConfigOpenVilla' => '房奖积分比例',
-    'dbConfigOpenVillaCap' => '房奖个人封顶值',
-    'dbConfigPasswordRule' => '密码规则',
-    'dbConfigPastBonusSwitch' => '往期奖金',
-    'dbConfigPayPasswordRule' => '支付密码规则',
-    'dbConfigPvRatio' => 'PV比例',
-    'dbConfigReConsumePointsMonthCap' => '重复消费积分每月上限',
-    'dbConfigReConsumePointsPercent' => '重复消费积分比例',
-    'dbConfigRecPercent' => '推广奖比例',
-    'dbConfigShowBonusPeriodNum' => '前台可见往期奖金期数',
-    'dbConfigShowFlowPeriodNum' => '前台可见交易记录期数',
-    'dbConfigShowTransferPeriodNum' => '前台可见转账记录期数',
-    'dbConfigShowWithdrawPeriodNum' => '前台可见提现记录期数',
-    'dbConfigSiteClose' => '是否关闭网站',
-    'dbConfigSiteCloseInfo' => '关闭提示信息',
-    'dbConfigSiteTitle' => '网站标题',
-    'dbConfigTransferOpen' => '是否开启转账功能',
-    'dbConfigTransferRecordSwitch' => '前台转账记录开关',
-    'dbConfigTransferSwitch' => '前台我要转账开关',
-    'dbConfigWithdrawFee' => '提现手续费',
-    'dbConfigWithdrawFreezeDays' => '提现预付款天数',
-    'dbConfigReportAlarmOpen' => '是否开启预警信息推送',
-
-    # 【参数】
-    # 钱包类型
-    'cashWallet' => 'Cash wallet',
-    # 用户状态
-    'userStatusInactive' => 'Inactive',
-    'userStatusNormal' => 'Normal',
-    'userStatusLogout' => 'Logout',
-    'userStatusBlacklist' => 'Blacklist',
-    'userStatusSuspended' => 'Suspended',
-    'userStatusPermanentShutDown' => 'Permanent shut down',
-    # 奖金类型
-    'bonusWalletTypeAccountBonus' => 'Account bonus',
-    'bonusWalletTypeResellingPointsBalance' => 'Reselling points balance',
-    'bonusWalletTypeAccountEcoin' => 'Account Ecoin',
-    'bonusWalletTypeExchangePointsBalance' => 'Exchange points balance',
-    'bonusWalletTypeTravelPointsBalance' => 'Travel points balance',
-    'bonusWalletTypeCarPointsBalance' => 'Car points balance',
-    'bonusWalletTypeVillaPointsBalance' => 'Villa points balance',
-    # 审核状态
-    'auditStatusUnaudited' => 'Unaudited',
-    'auditStatusAudited' => 'Audited',
-    'auditStatusAuditFailure' => 'Audit failure',
-    'auditStatusRefused' => 'Refused',
-    # 发货状态
-    'deliveryStatusUndelivered' => 'Undelivered',
-    'deliveryStatusDelivered' => 'Delivered',
-    'deliveryStatusConfirmReceipt' => 'Confirm receipt',
-    # 导出模块
-    'exportModuleShop' => 'Mall Management',
-    'exportModuleMember' => 'Member Management',
-    'exportModuleNetwork' => 'Network Chart',
-    'exportModuleResale' => 'Resale Management',
-    'exportModuleBonus' => 'Bonus Management',
-    'exportModuleShopFinancial' => 'Financial Management',
-    # 订单状态
-    'orderStatusUnpaid' => 'Unpaid',
-    'orderStatusPaid' => 'Paid',
-    'orderStatusLogisticsStatus' => 'Logistics status',
-    'orderStatusOrderCompletion' => 'Order completion',
-    'orderStatusOrderCancellation' => 'Order cancellation',
-    'orderStatusOrderDeletion' => 'Order deletion',
-    'orderStatusOrderRefund' => 'Order refund',
-    'orderStatusPaymentFailed' => 'Payment failed',
-    # 流水类型
-    'shopFlowTypeRemittanceRecharge' => 'Remittance recharge',
-    'shopFlowTypeThirdPartyRecharge' => 'Rhird-party recharge',
-    'shopFlowTypeTransferOut' => 'Transfer out',
-    'shopFlowTypeTransferInto' => 'Transfer into',
-    'shopFlowTypePay' => 'Pay',
-    'shopFlowTypeWelcomePackRecharge' => 'Welcome pack recharge',
-    'shopFlowTypeOrderRecharge' => 'Order recharge',
-    'shopFlowTypeFreightPayment' => 'Freight payment',
-    'shopFlowTypeAdjustedRecharge' => 'Adjusted recharge',
-    'shopFlowTypeAdjustedDeduct' => 'Adjusted deduct',
-    'shopFlowTypeAdjustedTransferOut' => 'Adjusted transfer out',
-    'shopFlowTypeAdjustedTransferIn' => 'Adjusted transfer in',
-    'shopFlowTypeExchangeRecharge' => 'Exchange recharge',
-    'shopFlowTypeExchangeDeduct' => 'Exchange deduct',
-    'shopFlowTypeDeleteOrderDeduct' => 'Delete order deduct',
-    'shopFlowTypeDeleteOrderRecharge' => 'Delete order recharge',
-    'shopFlowTypeDeleteOrderReturn' => 'Delete order return',
-    'shopFlowTypeRepairPayment' => 'Repair payment',
-    'shopFlowTypeAfterSaleExchangeRecharge' => 'After-sale exchange recharge',
-    'shopFlowTypeAfterSaleExchangeDeduct' => 'After-sale exchange deduct',
-    'shopFlowTypeOMSDeduct' => 'OMS deduct',
-    'shopFlowTypeDeduct' => 'Deduct',
-    'shopFlowTypeIncrease' => 'Increase',
-    'shopFlowTypeOther' => 'Other',
-    'shopFlowTypeAdministratorManualAdjustment' => 'Administrator manual adjustment',
-    # 国家
-    'dbCountriesdz' => "COTE D'IVOIRE",
-    'dbCountriesao' => 'ALGERIA',
-    'dbCountriesbj' => 'BOTSWANA',
-    'dbCountriesbw' => 'BURKINA FASO',
-    'dbCountriesbf' => 'ANGOLA',
-    'dbCountriesbi' => 'BENIN',
-    'dbCountriescm' => 'CHAD',
-    'dbCountriescv' => 'COMOROS',
-    'dbCountriescf' => 'CAMEROON',
-    'dbCountriestd' => 'SOUTH SUDAN',
-    'dbCountrieskm' => 'GUINEA',
-    'dbCountriescg' => 'CAPE VERDE',
-    'dbCountriesci' => 'CENTRAL AFRICA REPUBLIC',
-    'dbCountriesdj' => 'CONGO',
-    'dbCountriescd' => 'BURUNDI',
-    'dbCountrieseg' => 'DJIBOUTI',
-    'dbCountriesgq' => 'GABON',
-    'dbCountrieser' => 'DR CONGO',
-    'dbCountriessz' => 'SOUTH AFRICA',
-    'dbCountrieset' => 'EGYPT',
-    'dbCountriesga' => 'EQUATORIAL GUINEA',
-    'dbCountriesgm' => 'ESWATINI',
-    'dbCountriesgh' => 'ERITREA',
-    'dbCountriesgn' => 'ETHIOPIA',
-    'dbCountriesgw' => 'GAMBIA',
-    'dbCountrieske' => 'GHANA',
-    'dbCountriesls' => 'KENYA',
-    'dbCountrieslr' => 'GUINEA - BISSAU',
-    'dbCountriesly' => 'LESOTHO',
-    'dbCountriesmg' => 'LIBYA',
-    'dbCountriesmw' => 'MAURITANIA',
-    'dbCountriesml' => 'MADAGASCAR',
-    'dbCountriesmr' => 'MALAWI',
-    'dbCountriesmu' => 'MALI',
-    'dbCountriesma' => 'LIBERIA',
-    'dbCountriesmz' => 'MAURITIUS',
-    'dbCountriesna' => 'MOROCCO',
-    'dbCountriesne' => 'MOZAMBIQUE',
-    'dbCountriesng' => 'NAMIBIA',
-    'dbCountriesrw' => 'NIGER ',
-    'dbCountriesst' => 'SOMALIA',
-    'dbCountriessn' => 'SENEGAL',
-    'dbCountriessc' => 'NIGERIA',
-    'dbCountriessl' => 'SAO TOME & PRINCIPE',
-    'dbCountriesso' => 'SEYCHELLES',
-    'dbCountriesza' => 'UGANDA',
-    'dbCountriesss' => 'SIERRA LEONE',
-    'dbCountriessd' => 'RWANDA',
-    'dbCountriestz' => 'TOGO',
-    'dbCountriestg' => 'SUDAN',
-    'dbCountriestn' => 'TANZANIA',
-    'dbCountriesug' => 'TUNISIA',
-    'dbCountrieszm' => 'ZAMBIA',
-    'dbCountrieszw' => 'ZIMBABWE',
-];

+ 0 - 316
common/messages/es-ES/app.php

@@ -1,316 +0,0 @@
-<?php
-return [
-    # 商城
-    'addressId' => 'Address',
-    'reconsume' => 'Reconsume',
-    'orderCode' => 'Order Code',
-    'orderDetail' => 'Order Detail',
-    'productCode' => 'Product Code',
-    'productName' => 'Product Name',
-    'productPrice' => 'Product Price',
-    'qty' => 'Qty',
-    'taxRate' => 'Tax Rate',
-    'totalTax' => 'Total Tax',
-    'totalAmount' => 'Total Amount',
-    'total' => 'Total',
-    'signature' => 'Signature',
-    'date' => 'Date',
-    'accountBalance' => 'Account Balance',
-    'travelBonus' => 'Travel Bonus',
-    'carFund' => 'Car Fund',
-    'villaFund' => 'Villa Fund',
-    'reconsumeSuccessfully' => '帮会员复消成功',
-    'reconsumeRemark' => '复销备注',
-    'standardProducts' => 'Standard Products',
-    'carFundProducts' => 'Car Fund Products',
-    'villaFundProducts' => 'Villa Fund Products',
-    'travelFundProducts' => 'Travel Fund Products',
-    'insufficientInventory' => 'Insufficient inventory',
-    'soldOut' => 'Sold out',
-    'productsDoesNotExists' => 'Products does not exists!',
-    'allowOnlyOne' => 'Only 1 can be purchased at a time',
-    'canNotBuy' => 'Please pay in EPP order',
-    'instalmentGoodsNoError' => 'Products No. error',
-    'instalmentOrderInProcess' => '分期商品订单未完成',
-    'productsDoesSoldOut' => 'Products has sold out!',
-    'cashDoesNotAdequate' => '余额不足,无法购买商品',
-    'exchangePointDoesNotAdequate' => '兑换积分不足,无法购买商品',
-    'travelPointDoesNotAdequate' => '旅游积分不足,无法购买商品',
-    'carFundPointDoesNotAdequate' => '车奖积分不足,无法购买商品',
-    'villaPointDoesNotAdequate' => '房奖积分不足,无法购买商品',
-    'paymentInfoDoesNotExists' => '支付信息不存在',
-    'payAmountNotEqualOrderAmount' => '支付金额与订单金额不符',
-    'orderSn' => 'Order Code',
-    'expressCompany' => 'Express Company',
-    'orderTrackNo' => 'Track Code',
-    'remark' => 'Remark',
-    'orderType' => 'Order Type',
-    'payType' => 'Pay Type',
-    'productID' => 'Product ID',
-    'quantity' => 'Quantity',
-    'repeatSalesMemberNo' => 'UserName',
-    'consigneeNo' => 'Consignee',
-    'acceptMobile' => 'Accept Mobile',
-    'lgaName' => 'Lga Name',
-    'cityName' => 'City Name',
-    'detailAddress' => 'Address',
-    'shippingAddress' => 'shipping Address',
-
-    'orderDoesNotExist' => 'the order does not exist',
-    'orderHasBeenCancelCanNotDeliver ' => '订单已取消不能发货',
-    'orderHasBeenDeleteCanNotDeliver' => '订单已删除不能发货',
-    'orderPayStatusDoesNotSupportRefund' => '订单状态支付状态不支持退款',
-    'orderLogisticsStatusDoesNotSupportRefund' => '订单物流状态不支持退款',
-    'orderPayTypeDoesNotSupportRefund' => '订单支付方式不支持退款',
-    'paymentPasswordError' => 'The payment password is incorrect',
-    'shippingDoesNotExist' => 'the shipping address does not exist',
-    'payTypeError' => '支付方式错误',
-    'orderCanNotHasMoreClassification' => '订单不能包含多种商品分类',
-    'shopGoodClassificationError' => '商品分类错误',
-    'orderStatusTypeError' => '订单状态类型错误',
-    'orderStatusDoesNotChange' => '订单状态没有改变',
-    'orderHasBeenLogisticsStatusDoesNotChangedUnpaid' => '订单已经进入物流状态不能改为未支付',
-    'orderHasBeenInvalidCanNotProcess' => '订单已失效不能处理',
-    'orderCanNotBeenChangedLogistics' => '订单不能单独处理为物流状态',
-    'orderHasBeenFinishedCanNotCancel' => '订单已完成不能取消',
-    'orderHasBeenDeletedCanNotCancel' => '订单已删除不能取消',
-    'orderHasBeenFinishedCanNotDelete' => '订单已完成不能删除',
-    'flowTypeError' => '流水类型错误',
-    'flowCreateError' => '流水产生错误',
-    'doesNotYourSubMemberCanNotReconsume' => '不是您的伞下会员,不能为其复消',
-    'membersResellingBalancePayment' => 'Members reselling balance payment',
-    'membersExchangePointPayment' => '会员复销积分兑换',
-    'orderCanNotContainMultipleProductCategories' => 'Order cannot contain multiple product categories',
-
-
-    # 会员
-    'memberCode' => 'Member Code',
-    'memberName' => 'Member Name',
-    'memberAddress' => 'Member Address',
-    'memberPhone' => 'Member Phone',
-    'bankName' => 'Bank Name',
-    'bankCode' => 'Bank Code',
-    'admin' => 'Admin',
-    'minCharge' => 'Min Charge',
-    'maxCharge' => 'Max Charge',
-    'chargeRate' => 'Charge Rate',
-    'updater' => 'Updater',
-    'userName' => 'USER_NAME',
-    'passwordHash' => 'PASSWORD_HASH',
-    'payPassword' => 'PAY_PASSWORD',
-    'nation' => 'NATION',
-    'realName' => 'REAL_NAME',
-    'IDCard' => 'ID_CARD',
-    'IDType' => 'ID_TYPE',
-    'mobile' => 'MOBILE',
-    'address' => 'ADDRESS',
-    'IDImage' => 'ID_IMAGE',
-    'openBank' => 'OPEN_BANK',
-    'bankAddress' => 'BANK_ADDRESS',
-    'bankNo' => 'BANK_NO',
-    'bankProvince' => 'BANK_PROVINCE',
-    'bankCity' => 'BANK_CITY',
-    'bankCounty' => 'BANK_COUNTY',
-    'spouseName' => 'SPOUSE_NAME',
-    'spouseIDCard' => 'SPOUSE_IDCARD',
-    'decClosed' => 'DEC_CLOSED',
-    'decClosedAt' => 'DEC_CLOSED_AT',
-    'decLv' => 'DEC_LV',
-    'empLv' => 'EMP_LV',
-    'crownLv' => 'CROWN_LV',
-    'province' => 'PROVINCE',
-    'city' => 'CITY',
-    'county' => 'COUNTY',
-    'tel' => 'TEL',
-    'subComID' => 'SUB_COM_ID',
-    'avatar' => 'AVATAR',
-    'isDec' => 'IS_DEC',
-    'isAtlas' => 'IS_ATLAS',
-    'isRecharge' => 'IS_RECHARGE',
-    'DEC_ID' => 'DEC_ID',
-    'birthday' => 'BIRTHDAY',
-    'decRoleID' => 'DEC_ROLE_ID',
-    'periodAt' => 'PERIOD_AT',
-    'decProvince' => 'DEC_PROVINCE',
-    'decCity' => 'DEC_CITY',
-    'decCounty' => 'DEC_COUNTY',
-    'isUnion' => 'IS_UNION',
-    'statusAt' => 'STATUS_AT',
-    'verified' => 'VERIFIED',
-    'verifiedAt' => 'VERIFIED_AT',
-    'allowLogin' => 'ALLOW_LOGIN',
-    'notOperating' => 'NOT_OPERATING',
-    'regFrom' => 'REG_FROM',
-    'IDCardPrefix' => 'ID_CARD_PREFIX',
-    'sex' => 'SEX',
-    'decAccountOld' => 'DEC_ACCOUNT_OLD',
-    'bankUpdatedAt' => 'BANK_UPDATED_AT',
-    'isDirectSeller' => 'IS_DIRECT_SELLER',
-    'decLvUpdatedAt' => 'DEC_LV_UPDATED_AT',
-    'decLvUpdatedPeriod' => 'DEC_LV_UPDATED_PERIOD',
-    'decAddress' => 'DEC_ADDRESS',
-    'decPhone' => 'DEC_PHONE',
-    'guarantor' => 'GUARANTOR',
-    'guarantorName' => 'GUARANTOR_NAME',
-    'partFuncClosed' => 'PART_FUNC_CLOSED',
-    'lastDecLvUpdatedPeriod' => 'LAST_DEC_LV_UPDATED_PERIOD',
-    'userCreator' => 'USER_CREATOR',
-    'userUpdater' => 'USER_UPDATER',
-    'lastDecLvUpdatedAt' => 'LAST_DEC_LV_UPDATED_AT',
-    'decCreatedAt' => 'DEC_CREATED_AT',
-    'partFuncClosedRemark' => 'PART_FUNC_CLOSED_REMARK',
-    'decCreatedPeriod' => 'DEC_CREATED_PERIOD',
-    'passwordChanged' => 'PASSWORD_CHANGED',
-    'subComLeader' => 'SUB_COM_LEADER',
-    'zgUpgradePv' => 'ZG_UPGRADE_PV',
-    'appClientID' => 'APP_CLIENT_ID',
-    'readAgreement' => 'READ_AGREEMENT',
-    'lastDecLv' => 'LAST_DEC_LV',
-    'bonusAppClientID' => 'BONUS_APP_CLIENT_ID',
-    'isFirstOpen' => 'IS_FIRST_OPEN',
-    'isModifyPassword' => 'IS_MODIFY_PASSWORD',
-    'isStudio' => 'IS_STUDIO',
-    'email' => 'EMAIL',
-
-    'fillingUpOfADeficit' => 'filling up of a deficit',
-    'fullPayment' => 'full payment',
-
-    'personalDataModifiedSuccessfully' => 'Personal data modified successfully',
-    'passwordModifiedSuccessfully' => 'Password modified successfully',
-    'theFunctionIsNotAvailable' => 'The function is not available',
-    'inactiveUser' => 'Inactive user. Please contact customer service.',
-    'checkPerformance' => 'Please contact customer service to check performance.',
-    'checkPerformanceOfUpgradedMember' => 'Please contact the customer service personnel to check the performance of upgraded members',
-    'memberNumberExpired' => 'Member number expired',
-    'memberNumberDoesNotConformTo' => 'Member number does not conform to',
-    'failedToGenerateMemberNumber' => 'Failed to generate member number',
-    'memberNumberDoesNotExist' => 'Member number does not exist',
-    'repeatSalesMemberNoDoesNotExist' => 'Repeat sales Member No. does not exist',
-    'memberDoesNotExist' => 'Member does not exist',
-    'memberDoesNotInSamePlacementNetwork' => 'The member is not in the same placement network as the current user',
-    'viewSubMembersMost' => 'View the top 20 sub members of the member at most',
-    'upgradeMethodIncorrect' => 'The upgrade method is incorrect. Please contact the customer service personnel',
-
-    'originalLoginPasswordError' => 'Original login password error',
-    'originalPaymentPasswordError' => 'Original payment password error',
-    'userNameNotExists' => 'Nonexistent user name',
-    'pleaseSelectUpgradeLevel' => 'Please select upgrade level',
-    'totalPVLessThan' => 'Total PV cannot be less than the selected level PV',
-    'totalPvExceedPv' => 'The total PV cannot exceed the PV value of the next level under the selected level',
-    'deliveryTemporarilyNotSupported' => 'Delivery is temporarily not supported in the region. Contact customer service for details',
-    'applicantCashShort' => 'The applicant is short of cash and cannot complete the declaration',
-    'failedToUpgrade' => 'Failed to upgrade for member',
-    'bulkDeclarationNotSames' => 'Bulk declaration member must be the same member',
-    'reportFormatIncorrect' => 'The format of the report data is incorrect',
-    'memberNumberCanNotContainChineseCharacters' => 'Member number cannot contain Chinese characters',
-    'pleaseSelectTheEntryLevel' => 'Please select the entry level',
-    'totalBVCanNotLessThanSelectedBV' => 'Please choose the correct Entry Level.',
-    'totalBVCanNotLessThanNextSelectedLevelBV' => 'Please choose the correct Entry Level.',
-    'incorrectEntryType' => 'Incorrect entry type',
-    'MembershipNumberFilledInitialPurchase' => 'Membership number must be filled in for initial purchase',
-    'fillTheInstructorNumberTheMember' => 'For the first purchase, you must fill in the instructor number of the member',
-    'sponsorNumberMustBeFilled' => 'For the first purchase, the Sponsor number of the member must be filled in',
-    'beFilledTheMarketMember' => 'The first purchase must be filled in the market of the member',
-    'pleaseSelectMarket' => 'Please select a market',
-    'stockistDoesNotExist' => 'Stockist does not exist',
-    'newMemberDoesNotExist' => 'New member does not exist',
-    'brandAmbassadorUpgradeError' => 'Brand Ambassador upgrade error',
-    'changeUserStatusError' => 'change user status error',
-    'dataFormatError' => 'Data format error',
-    'decUserNameDoesNotExist' => '请输入报单中心编号',
-    'decUserNameIsWrong' => '报单中心编号输入错误',
-
-
-
-    # 奖金
-    'memberBonus' => 'Member Bonus',
-    'memberEcoin' => 'Member Ecoin',
-    'carPoints' => 'Car Points',
-    'villaPoints' => 'Villa Points',
-    'increase' => 'increase',
-    'reduce' => 'reduce',
-    'cannotViewThisPeriod' => 'Cannot view this period',
-    'bonusRecordDoesNotExists' => 'The bonus record does not exists of this period',
-    'pleaseSelectThePeriod' => 'Please select the period',
-    'withdrawalApplicationHasBeenSubmitted' => 'Withdrawal application has been submitted, please wait for review.',
-    'withdrawHasBeenBacked' => 'Withdraw has been backed',
-    'withdrawDoesNotAllowedOfAuthentication' => '未实名验证无法提现',
-    'withdrawDoesNotAllowedOfSubsidiaryMember' => '附属会员无法提现',
-    'autoWithdrawHasBeenOpened' => '已开启自动提现,如需手动提现请关闭自动提现',
-    'withdrawNotAllowOfDate' => '未到提现日期,请在每月挂网后第一周申请提现',
-    'withdrawAllowOnceOfMonth' => '提现失败,每月只可以提现一次',
-    'withdrawRecordHasNotVerify' => '提现失败,您存在未审核的提现记录',
-    'notionalPoolingAmountFinished' => '归集完成,归集金额',
-    'withdrawDoesNotUploadInvoice' => '该提现记录无法上传发票',
-    'transferDoesNotAllowedOfAuthentication' => '未实名验证无法转账',
-    'transferDoesNotAllowed' => '不允许转账',
-    'transferDoesNotOpen' => '转账功能未启用',
-    'transferTypeDoesNotExists' => '没有可用的转账类型',
-    'rechargeApplicationHasBeenSubmitted' => 'Recharge application has been submitted, please wait for review.',
-
-    # 设置
-    'autoWithdrawHasBeenClosed' => '开启关闭自动提现成功',
-    'closeMessageSendSuccessfully' => '开启关闭复销短信提醒成功',
-    'changeDefaultAddressFailed' => '更新默认地址失败',
-    'addShippingAddressSuccessfully' => '添加收货地址成功',
-    'updateUserConfigFailed' => '更新个人设置失败',
-    'isAutoWithdraw' => '是否自动提现',
-    'allowReconsumeSms' => '开启复销短信通知',
-    'pleaseAuthentication' => '请先实名认证',
-    'systemCloseAutoWithdraw' => '系统关闭了自动提现',
-    'systemCloseReconsumeSMSNotification' => '系统关闭了开启复销短信通知',
-    'openAutoWithdraw' => '开启关闭自动提现',
-    'updateUserSMSExpiredFailed' => '更新个人短信有效期失败',
-    'modeDoesNotExist' => '不存在此方式',
-    'currencyDoesNotExist' => '未设置汇率',
-    'countryDoesNotSelect' => '未选择国家',
-    'transferMemberDoesNotSame' => '转账会员非本国会员',
-
-    # 首页
-    'pcOf' => 'PC of ',
-
-    # 财务
-    'statueError' => 'Status error',
-    'notAllowedToTransferToYourself' => 'Not allowed to transfer to yourself',
-    'wrongTransactionType' => 'Wrong transaction type',
-    'isCanWithdrawBack' => '提现退回已关闭',
-    'withdrawRecordDoesNotExist' => '符合退回的提现记录不存在',
-
-
-    # 登录
-    'refreshTokenFailed' => 'refresh token failed',
-    'passwordChangeSucceeded' => 'Password change succeeded',
-    'accountDoesNotExist' => 'The account does not exist',
-    'memberNameOrPasswordIncorrect' => 'The member name or password is incorrect',
-    'abnormalMemberCode' => 'Abnormal member code',
-    'memberNotActivated' => 'Member not activated',
-    'memberHasBeenCancelled' => 'The member has been cancelled',
-    'memberHasBeenBlacklisted' => 'The member has been blacklisted',
-    'memberHasBeenPermanentlySuspended' => 'The member has been permanently suspended',
-    'memberPartOfFunctionClosed' => 'Member part of the function is closed, unable to log in.',
-    'memberAppDeviceInformationUpdateFailed' => 'Member APP device information update failed',
-
-    # 文章
-    'category' => 'Category',
-    'title' => 'Title',
-    'content' => 'Content',
-    'articleDoesNotExist' => 'The article does not exist',
-
-    # 公用
-    'notConnection' => 'Connection not operated for too long',
-    'deleteFailed' => 'failed to delete',
-    'deleteSuccessfully' => 'delete successfully',
-    'quickLoginCanNotOperate' => '快速登录的会员无法进行任何操作',
-    'selectAtLeastOne' => '必须选择一条数据',
-    'failed' => 'Failed',
-    'successfully' => 'Successfully',
-    'createAt' => 'Creation Time',
-    'status' => 'Status',
-    'state' => 'State',
-    'sort' => 'Sort',
-    'illegalRequest' => 'Illegal request',
-    'invalidParameter' => 'Invalid Parameter',
-    'dataDoesNotExists' => 'The data does not exist',
-
-
-];

+ 0 - 904
common/messages/es-ES/ctx.php

@@ -1,904 +0,0 @@
-<?php
-return [
-    #Admin
-    'AdminAddedSuccessfully' => 'Administrator added successfully',
-    'AdminEditedSuccessfully' => 'Administrator edited successfully',
-    'passwordChangeSucceeded' => 'Password change succeeded',
-    'successAddAdminRole' => 'Admin role added successfully',
-    'editAdminRoleSuccess' => 'Edit admin role successfully',
-    'roleDoesNotExist' => 'Role does not exist',
-    'successSetAdminRolePermissions' => 'Set administrator role permissions successfully',
-    'successSetAdminRoleListFieldPermissions' => 'Set administrator role list field permissions successfully',
-    'adminUnderSelectedRoleCannotDeleted' => 'Administrators under the selected role cannot be deleted',
-    'twoPasswordsMustSame' => 'The two passwords must be the same',
-    'memberNameDoesNotExist' => 'The member name does not exist',
-    'loginPasswordHasNotChanged' => 'The login password has not changed',
-    'oldLoginPasswordIncorrect' => 'The old login password is incorrect',
-    'submissionDoesNotExist' => 'The submission does not exist',
-    'passwordLeastEightCharacters' => 'The password must contain at least eight characters',
-    'passwordRule' => 'The password must contain at least two types of digits, capital letters, small letters and special characters',
-    'unableToDeleteOneSelf' => "Can't delete yourself",
-    'resetPwdSucessNotice' => 'Password reset successfully',
-
-    #Finance
-    'commonModelsWithdrawStatusNameStatusApplied' => 'Applied',
-    'commonModelsWithdrawStatusNameStatusAudited' => 'Withdrawal has been reviewed',
-    'commonModelsWithdrawStatusNameStatusWaitPaid' => 'Unpaid',
-    'commonModelsWithdrawStatusNameStatusPaidFalse' => 'Failed',
-    'commonModelsWithdrawStatusNameStatusRefused' => 'Refused',
-    'commonModelsWithdrawStatusNameStatusPaid' => 'Withdrawal has been paid',
-    'commonModelsWithdrawStatusNameStatusReturned' => 'Returned',
-    'backendApiControllersFinaceRechargeStatusApprove' => 'Approve',
-    'backendApiControllersFinaceRechargeStatusReject' => 'Reject',
-    'modelListFinanceBalanceAuditListUserName' => 'Member Code',
-    'modelListFinanceBalanceAuditListRealName'=>'Member Name',
-    'modelListFinanceBalanceAuditListMemberLevel'=> 'Member level',
-    'modelListFinanceBalanceAuditListStockistLevel'=> 'Stockist level',
-    'modelListFinanceBalanceAuditListEmpLevel'=>'Rank',
-    'modelListFinanceBalanceAuditListTypeName'=>'Account type',
-    'modelListFinanceBalanceAuditListDealType'=>'Transaction type',
-    'modelListFinanceBalanceAuditListAmount'=>'Adjustment amount',
-    'modelListFinanceBalanceAuditListRemark'=>'Remark',
-    'modelListFinanceBalanceAuditListRemarkIsShow'=>'Whether The Front Desk Displays Comments',
-    'modelListFinanceBalanceAuditListAuditStatusName'=>'Audit status',
-    'modelListFinanceBalanceAuditListApplicant'=>'applicant',
-    'modelListFinanceBalanceAuditListCreatedAt'=>'Application time',
-    'modelListFinanceBalanceAuditListAuditName'=>'Reviewed by',
-    'modelListFinanceBalanceAuditListAuditTime'=>'Audit time',
-    'modelListFinanceTranserListTransferSn'=>'Transfer record serial number',
-    'modelListFinanceTranserListLastOutUserName'=>'Transfer out Member No',
-    'modelListFinanceTranserListLastOutRealName'=>'Name of transfer out member',
-    'modelListFinanceTranserListLastOutDecLvName'=>'Transfer out of member level',
-    'modelListFinanceTranserListOutWallet'=>'Transfer out account',
-    'modelListFinanceTranserListLastInUserName'=>'Transfer to member code',
-    'modelListFinanceTranserListLastInRealName'=> 'Transfer to member name',
-    'modelListFinanceTranserListLastInDecLvName'=>'Transfer to member level',
-    'modelListFinanceTranserListInWallet'=>'Transfer account',
-    'modelListFinanceTranserListOriAmount'=>'Transfer amount',
-    'modelListFinanceTranserListFee'=>'Service charge',
-    'modelListFinanceTranserListAmount'=>'Actual transfer amount',
-    'modelListFinanceTranserListCreatedAt'=>'Transfer time',
-    'modelListFinanceTranserListPeriodNum'=>'Transfer PC',
-    'financeControllerTransferListExport'=>'Transfer_List',
-    'modelListFinanceWithdrawSn'=>'Withdrawal serial number',
-    'modelListFinanceWithdrawPeriod'=>'Period',
-    'modelListFinanceWithdrawAt'=>'Withdrawal time',
-    'modelListFinanceWithdrawState'=>'State',
-    'modelListFinanceWithdrawAmount'=>'Withdrawal amount',
-    'modelListFinanceWithdrawFees' => 'Bank charge',
-    'modelListFinanceWithdrawRealAmount' => 'Actual amount',
-    'modelListFinanceWithdrawBank' => 'Bank info',
-    'modelListFinanceWithdrawBankNo' => 'Bank account',
-    'modelListFinanceWithdrawMobile' => 'Phone Number',
-    'modelListFinanceWithdrawUpdateAdminName' => 'Operations administrator',
-    'modelListFinanceWithdrawBackRemark' => 'Return note',
-    'modelListFinanceWithdrawWithdrawalTime'=>'Withdrawal time',
-    'modelsListsFinanceRechargeListgetColumnSn' => 'SN',
-    'modelsListsFinanceRechargeListgetColumnBank' => 'Bank',
-    'modelsListsFinanceRechargeListgetColumnBankNo' => 'Bank account',
-    'modelsListsFinanceRechargeListgetColumnAuditStatus' => 'Audit Status',
-    'modelsListsFinanceRechargeListgetColumnAmount' => 'Recharge amount',
-    'modelsListsFinanceRechargeListgetColumnCreatedAt' => 'Apply time',
-    'modelsListsFinanceRechargeListgetColumnRemark' => 'Remark',
-    'rechargeRecordSerialNumber'=>'Recharge record serial number',
-    'rechargeAuditStatusToBeReviewed'=>'To be reviewed',
-    'rechargeAuditStatusVoucherUploaded'=>'Voucher uploaded',
-    'rechargeAuditStatusAudited'=>'Audited',
-    'rechargeRechargeState'=>'Recharge State',
-    'rechargeRechargeStateNew'=>'New',
-    'rechargeRechargeStateProcessing'=>'Processing',
-    'rechargeRechargeStateSuccess'=>'Success',
-    'shopOrderListUndelivered' => 'Undelivered',
-    'shopOrderListDelivered'=>'Delivered',
-    'shopOrderListConfirmReceipt' => 'Confirm receipt',
-    'shopOrderListGetOrderStatusUnpaid' => 'Unpaid',
-    'shopOrderListGetOrderStatusPaid' => 'Paid',
-    'shopOrderListGetOrderStatusLogisticsStatus' => 'Logistics status',
-    'shopOrderListGetOrderStatusOrderCompletion' => 'Order completion',
-    'shopOrderListGetOrderStatusOrderCancellation' => 'Order cancellation',
-    'shopOrderListGetOrderStatusOrderDeletion' => 'Order deletion',
-    'shopOrderListGetOrderStatusOrderDeletionOrderRefund' => 'Order refund',
-    'shopOrderListGetOrderStatusPaymentFailed' => 'Payment failed',
-    'balanceAuditListGetBalanceAuditType' => 'Member bonus account',
-    'balanceAuditListCash' => 'Member Ecoin account',
-    'balanceAuditListGaragePoints' => 'Car points',
-    'balanceAuditListVillaPoints' => 'Villa points',
-    'financeRechargeListStatusTobeReviewed' => 'To be reviewed',
-    'financeRechargeListStatusApproved' => 'Approved',
-    'financeRechargeListStatusVoucherUploaded' => 'Voucher uploaded',
-    'financeRechargeListStatusRejected' => 'Rejected',
-    'rechargeStatusTitle:0' => 'To be reviewed',
-    'rechargeStatusTitle:1' => 'Voucher uploaded',
-    'rechargeStatusTitle:2' => 'Approved',
-    'rechargeStatusTitle:3' => 'Rejected',
-    'rechargeStatus:0' => 'NEW',
-    'rechargeStatus:1' => 'PROCESSING',
-    'rechargeStatus:2' => 'SUCCESS',
-    'rechargeStatus:3' => 'FAILED',
-
-    'memberEcoinAdjustmentListFileName'=> 'Member_Ecoin_adjustment_list',
-    'applicationChangeBalanceSucceeded'=> 'Application for change of member balance succeeded',
-    'applicationCannotReviewedAgain'=> 'The application has been reviewed and cannot be reviewed again',
-    'idNotMatchName'=>'Member code does not match member name',
-    'incorrectBalanceType'=>'Incorrect balance type',
-    'incorrectTransactionType'=>'Incorrect transaction type',
-    'adjustmentAmountCannotZero'=>'The adjustment amount cannot be 0',
-    'pointsEnoughAdjustmentNotAllowed' => "Insufficient balance of member's repurchase points, adjustment is not allowed",
-    'cannotSetPendingReview' => 'Cannot be set to pending review',
-    'auditCannotRepeated' => 'The audit has been approved and cannot be repeated',
-    'rejectedAuditCannotRepeated'=> 'It has been reviewed and rejected and cannot be reviewed again',
-    'statusParameterError' => 'Wrong state parameter',
-    'adjustmentBalanceCodeFailed' => 'Balance adjustment verification code failed',
-    'aPieceMustBeSelected' => 'A piece of data must be selected',
-    'noEligibleData' => 'No matching data',
-    'modificationAdjustmentMemberBalanceCompleted'=>'Modification and adjustment of member balance entry data completed',
-    'reviewThroughMemberBalance'=>'The review is done through the member balance',
-    'batchAuditMemberBalanceCompleted'=>'Batch audit/audit reject member balance completed',
-    'addedMemberSuccessfullyWithdrewCash' => 'The newly added member successfully withdrew cash',
-    'withdrawalInformationModifiedSuccessfully'=>'The withdrawal information is modified successfully',
-    'withdrawalApplyDoesNotExist'=>'Withdrawal request does not exist',
-    'memberNameOrNumberInconsistentSystem' => 'Withdrawal member code does not match member ID',
-    'memberRegisterTypeInconsistentWithSystem'=>'The selected member registration type is inconsistent with the system',
-    'withdrawalMustGreaterThanZero'=>'Withdrawal amount must be greater than 0',
-    'withdrawalAmountMustInteger' => 'Withdrawal amount must be an integer',
-    'withdrawalAmountCannotLessThan' => 'The withdrawal amount cannot be less than',
-    'WithdrawalAmountCannotHigherThan' => 'Withdrawal amount cannot be higher than',
-    'withdrawalAmountMustLessThanAvailableBalance' => 'The withdrawal amount must be less than the available balance',
-    'paymentPasswordIncorrect' => 'The payment password is incorrect',
-    'failedApplyWithdrawalVerify' => 'Application for cash withdrawal verification failed',
-    'withdrawalAuditVerificationFailed' => 'Withdrawal audit verification failed',
-    'cannotSelectDateInThePast'=>'Cannot select a date in the past',
-    'statusSettingSucceeded' => 'Status setting succeeded',
-    'exportWithdrawApplyExcelName' => 'Withdraw_Apply',
-    'invoiceEnteredSuccessfully' => 'Invoice entered successfully',
-    'modifyInvoiceEntryCompleted' => 'Modify invoice entry data completion',
-    'reviewInvoiceDataCompleted' => 'Review invoice data completed',
-    'memberPerformanceAdjustmentList' => 'Member Performance Adjustment List',
-    'applicationAdjustMemberPerfSuccess' => 'The application to adjust the member performance was successful',
-    'nextPeriodConnectedNetCannotAdjusted' => 'The next period [ {periodNum} ] has been connected to the net, and this period cannot be adjusted',
-    'passReviewAdjustPerfSuccess' => "Auditing success by adjusting member performance",
-    'batchReviewMemberPerfCompletion' => 'Batch review/rejection of member performance completion',
-    'transactionTypeAddSuccess'=> 'Transaction type added successfully',
-    'modifyTransactionTypeCompleted' => 'Modify the transaction type to complete',
-    'unableDelete' => 'Cannot be deleted',
-    'pendingRecordAfterThePendingReviewed' => 'If there is a pending record in the member review list, it shall be submitted after the pending record has been reviewed',
-    'periodNotNetCannotAdjusted' => 'This period [ {periodNum} ] is not connected to the net and cannot be adjusted',
-    'adjustmentTypeIncorrect' => 'The adjustment type is incorrect',
-    'incorrectLocation' => 'Incorrect location',
-    'amountChangeCannotZero' => 'The amount of change cannot be 0',
-    'memberUnderrepresentedRegion' => 'The member is underrepresented in that region',
-    'memberSurplusRegionLess' => 'The member has insufficient surplus in the region for the current period',
-    'withdrawFormNoSn' => "There is no paid record of withdrawals serial number {sn}",
-    'withdrawFormUserNameInconsistent'=>'The serial number of the withdrawal in Excel. {excelName} is inconsistent with information in the system {userName}',
-    'withdrawFormRealNameInconsistent' => "The serial number of the withdrawal in Excel. {sn}, member's name  {excelName}, is inconsistent with information in the system {realName}",
-    'withdrawFormPeriodsInconsistent' => "Excel withdrawal serial number {sn} withdrawal periods {withdrawPeriodNum}, is inconsistent with the information in the system【 {systemWithdrawPeriodNum} 】",
-    'withdrawFormPaidAtInconsistent' => "Payment date of the withdrawal serial number in Excel {sn} {paidAt} is inconsistent with system information {systemPaidAt}",
-    'withdrawFormAmountInconsistent' => "Withdrawal amount of the withdrawal serial number in Excel {sn} {execlAmount} is inconsistent with the information in the system {systemAmount}",
-    'withdrawFormBankRealNameInconsistent' => "Real-time account name of the withdrawal serial number in Excel {sn} {execlBankRealName}, is inconsistent with the information in the system  {systemName}  Inconsistent ",
-    'withdrawFormBankNoInconsistent' => "Real-time bank account of the withdrawal serial number in Excel {excelBankNo} {sn}  is inconsistent with information in system {systemBankNo}",
-    'withdrawFormNoExistsUser'=>'This user does not exist',
-    'withdrawChkAuditStatus' => "The current status of the withdrawal  {sn}  is 【 {statusName} 】, cannot be set to【 {newStatusName}】",
-
-    # Internet function
-    'numberOfLayers' => 'Number Of Layers',
-    'recommendedMemberNo'=>'Sponsor Member No',
-    'nameRecommendedMember'=>'Name Of Sponsor Member',
-    'recommendedMemberLevel' => 'Sponsor Member Level',
-    'highestDirector' => 'Highest Director',
-    'highestCrown' => 'Highest Crown',
-    "joiningPeriod" => 'Joining Period',
-    'modelListAtlasUserName' => 'Member Code',
-    'modelListAtlasDepth' => 'Depth',
-    'numberOfPeriods' => 'Number Of Periods',
-    'atlasViewLimitNotice'=>'Top 23 sub members of members can be viewed at most',
-    'atlasNetworkViewLimitNotice'=>'View the top 20 sub members of the member at most',
-    'placementMemberNumber'=>'Placement Member Number',
-    'placementMemberName' => 'Placement Member Name',
-
-    #Products management
-    'shopListProductName' => 'Product Name',
-    'shopListProductsCode' => 'Products Code',
-    'shopListDiscountRate' => 'Discount Rate',
-    'shopListProductsType' => 'Products Type',
-    'shopListProductCategory' => 'Product Category',
-    'shopListPaymentMode' => 'Payment Mode',
-    'shopListPriceStandard' => 'US Price($)',
-    'shopListSellPrice' => 'Sales Price(₦)',
-    'shopListProductsBv' => 'Products BV',
-    'shopListTaxRate' => 'Tax Rate(%)',
-    'shopListTax' => 'Tax(₦)',
-    'shopListInventory' => 'Inventory',
-    'shopListStatus' => 'Status',
-    'shopListOnSale' => 'On sale',
-    'shopListSoldOut' => 'Sold out',
-    'shopListUpdatedAt' => 'Update Time',
-    'shopListEntryArea' => 'Office Entry area',
-    'shopListResellingArea' => 'Office Reselling area',
-    'shopList1stPurchase' => '1st Purchase',
-    'shopListRepeatPurchase' => 'Repeat Purchase',
-
-    'shopListStandardProducts' => 'Standard Products',
-    'shopListCarFundProducts' => 'Car Fund Products',
-    'shopListVillaFundProducts' => 'Villa Fund Products',
-    'shopListAccountBalance' => 'Account Balance',
-    'shopListPayTravelBonus' => 'Travel Bonus',
-    'shopListPayCarFund' => 'Car Fund',
-    'shopListPayVillaFund' => 'Villa Fund',
-    'shopListPayStack' => 'PayStack',
-    'shopGoodTypeDomestic' => '国内商品',
-    'shopGoodTypeImport' => '国内商品',
-    'beforeAdjustmentPcNo' => 'Before adjust Pc No.',
-    'afterAdjustmentPcNo' => 'After adjust Pc No.',
-
-    'shopExportListName' => 'Goods_List',
-    'shopProductAddSucceededNotice' => 'Product add succeeded',
-    'shopProductEditSucceed'=>'Product editing succeeded',
-    'shopStatusSetSucceedNotice' => 'Status setting succeeded',
-    'shopDelOrderSuccedNotice'=>'The order is deleted successfully, please regenerate the performance sheet and calculate the bonus',
-    'shopDecOrderListExport' => 'First purchase order list',
-    'shopOrderListExport' => 'Order_List',
-    'shopStatusUpdateErrorNotice'=>'Status update error',
-    'shopOrderListExportPdf'=>'Order list',
-    'shopadminRefund'=>'Refund successfully',
-    'shopBaOrderListExport' => 'Ba_Order_List',
-    'shopBrandAmbassadorOrderExport'=>'Brand Ambassador Order',
-    'shopSetProductStatusErrorNotice'=>'The current product status is【{nowStatus}】,cannot be set to【{newStatus}】',
-    'shopPayTypeCash' => 'Ecoin',
-    'shopPayTypeGaragePoints' => 'Car Fund',
-    'shopPayTypeVillaFund' => 'Villa Fund',
-    'shopBuyActionErrorNotice'=>'The wrong way to buy the product',
-    'shopSortMoreThanOne'=>'Please fill in numbers greater than or equal to 1 for sorting',
-    'shopDiscountZeroBetweenOne'=>'Please fill in the number between 0-1 for the discount',
-    'shopDeleteDecOrderAndOrderFailedNotice'=>'Failed to delete first purchase order, failed to delete order',
-    'shopBackOrderFailedNotice'=>'Failed to roll back membership level, failed to delete order',
-    'shopLockFailedDeleteOrderFailed'=>'Failed to lock member, failed to delete order',
-    'shopDeleteOrderFailed' => 'Failed to delete order',
-    'shopBackAmountFailedDeleteOrderFailed'=>'Failed to refund the order amount, failed to delete the order',
-    'shopNotFindOrder' => 'Order information not found, the order number is:',
-    'shopOrderAlreadyDeleted'=> 'The order has been deleted, the order number is:',
-    'shopOrderPeriodNumNotExist'=>'The performance period corresponding to the order does not exist, and the order number is {sn} Performance period is:{periodNum}',
-    'shopOrderPeriodNumIsSented'=>'The order corresponding to the performance period has been posted online, and the order number is {sn} Performance period is:{periodNum}',
-    'shopOrderPeriodNumSenting'=>'The performance period corresponding to the order is being linked online,the order number is{sn} Performance period is:{periodNum}',
-    'shopNotFindDecOrder' => 'The corresponding order information has not been obtained,the order number is:',
-    'shopDecAlreadyDeleted'=>'The corresponding order information has been deleted,the order number is:',
-    'shopHasLaterOrder' => 'There is a later order, this order cannot be deleted,the order number is:',
-    'shopRegisterHasUpgradeOrder' => 'There is an upgrade order for this registration form, which cannot be deleted,the order number is:',
-    'shopRegisterHasFxOrder'=>'There is a cancellation order for this registration form, which cannot be deleted,the order number is:',
-    'shopOrderListMemberCode' => 'Member Code',
-    'shopOrderListStockist'=>'Stockist',
-    'shopOrderListCreatorNo'=>'Creator No',
-    'shopOrderListCreatorName'=>'Creator Name',
-    'shopOrderListOrderCode'=>'Order Code',
-    'shopOrderListOrderStatus'=>'Status',
-    'shopOrderListProductCode' => 'Product Code',
-    'shopOrderListProductName'=>'Product Name',
-    'shopOrderListRecipient' => 'Recipient',
-    'shopOrderListContactOne' => 'Contact 1',
-    'shopOrderListContactTwo' => 'Contact 2',
-    'shopOrderListState'=>'State',
-    'shopOrderListLocalGovernmentArea' => 'Local Government Area',
-    'shopOrderListCity'=>'City',
-    'shopOrderListDetailedAddress'=>'Detailed Address',
-    'shopOrderDeliveryWarehouse' => 'Delivery Warehouse',
-    'shopOrderListPeriod' => 'Period',
-    'shopOrderListOrderType' => 'Order Type',
-    'shopOrderListOrderTypeRepeatPurchase'=>'Repeat Purchase',
-    'shopOrderListOrderTypePoints'=>'Points',
-    'shopOrderListOrderTypeRepeatPurchaseOrder' => 'Repurchase order',
-    'shopOrderListOrderTypePointsOrder' => 'Point order',
-    'shopOrderListOrderTypeZc'=>'Welcome Pack',
-    'shopOrderListOrderTypeFx'=>'Repeat Purchase',
-    'shopOrderListCreationTime' => 'Creation Time',
-    'shopOrderListPayType' => 'Pay Type',
-    'shopOrderListPaymentTime'=>'Payment Time',
-    'shopOrderListDeliveryTime'=>'Delivery Time',
-    'shopOrderListQty' => 'Qty',
-    'shopOrderListItemPricing'=>'Item Pricing',
-    'shopOrderListTotalPrice' => 'Total Price',
-    'shopOrderListBVAmount'=>'BV Amount',
-    'shopOrderListUsTotalPrice'=>'Total Price($)',
-    'shopOrderListFreight' => 'Freight',
-    'shopOrderListTaxRate'=>'Tax Rate',
-    'shopOrderListTax' => 'Tax',
-    'shopOrderListCourierCompany' => 'Courier Services Company',
-    'shopOrderListCourierNumber' => 'Courier Number',
-    'shopOrderListShippingMethod' => 'Shipping Method',
-    'shopOrderListShippingMethodMailing' => 'Mailing',
-    'shopOrderListShippingMethodAutoPick' => 'Auto pick',
-    'shopOrderListMemberNotes' => 'Member Notes',
-    'shopOrderListShipmentStatus' => 'Shipment Status',
-    'shopOrderListIsAuto' => 'Is Auto',
-    'shopOrderListIsAutoYes' => 'Yes',
-    'shopOrderListIsAutoNo' => 'No',
-    'shopOrderListOrderNo' => 'Order No',
-    'shopOrderPaymentAmount' => 'Payment Amount',
-    'shopOrderPayBV' => 'Pay BV',
-    'total' => 'Total',
-    'date' => 'Date',
-    'orderCode' => 'Order Code',
-    'orderDetail' => 'Order Detail',
-    'productCode' => 'Product Code',
-    'productName' => 'Product Name',
-    'productPrice' => 'Product Price',
-    'qty' => 'Qty',
-    'taxRate' => 'Tax Rate',
-    'totalTax' => 'Total Tax',
-    'totalAmount' => 'Total Amount',
-    'signature' => 'Signature',
-    'orderNotExist' => 'order does not exist',
-    'orderHasBeenConnected' => 'The order has been connected to the net, and this period cannot be adjusted',
-    'invalidPcNo' => 'Invalid Pc No.',
-
-    #Log
-    'adminUserDoesNotExist'  => 'Administrator does not exist',
-    'adminUserGroupDoesNotExist'  => 'Management group does not exist',
-    'columnArrayMustExistHeader'  => 'The header must exist in the column array',
-    'operatingType'  => 'Operation Type',
-    'operatingObject'  => 'Operation object',
-    'objectNumber'  => 'Object number',
-    'requestContent'  => 'Request content',
-    'returnContent'  => 'Return content',
-    'operator'  => 'Operator',
-    'operatingTime'  => 'Operation Time',
-    'numberOfPhases'  => 'Number Of Periods',
-    'IPAddress'  => 'IP Address',
-    'client'  => 'Client',
-    'operatingSystem'  => 'Operating System',
-    'requestPath'  => 'Request Path',
-    'operationObjectNumber'  => 'Operation Object No',
-    'remarks'  => 'Remark',
-    'returnResult'  => 'Return content',
-    'successTimes'  => 'Successful login times',
-    'failTimes'  => 'Failed logins times',
-    'loginSuccess'  => 'login successfully',
-    'loginFail'  => 'Login failed',
-    'adminLoginLog'  => 'Admin login log',
-    'userLoginLog'  => 'Member login log',
-    'version'  => 'Version number',
-    'adminOperatingLog'  => 'Administrator operation log',
-    'updateNumberOfPhasesConfig'  => 'Update period configuration',
-    'updateLevelBonusConfig'  => 'Update level bonus configuration',
-    'updateBonusConfig'  => 'Update bonus configuration',
-    'updateRankBonusConfig'  => 'Update rank bonus configuration',
-    'updateTransferConfig'  => 'Update transfer configuration',
-    'requestChangeUserBalance'  => 'Apply for change of membership balance',
-    'checkUserBalance'  => 'Review member balance',
-    'batchRequestChangeUserBalance'  => 'Batch application to change member balance',
-    'blankEntry'  => 'Empty order entry',
-    'delBlankUser'  => 'Delete empty order member',
-    'changeUserLevel'  => 'Modify Member Level',
-    'applyAdjustmentUserPerformance'  => 'Apply for Adjustment of Member Performance',
-    'applyModifyUserStatus'  => 'Apply to modify member status',
-    'setTeamLeaders'  => 'Set up team leaders',
-    'checkUserStatus'  => 'Review member status',
-    'displayMap'  => 'Show map',
-    'hiddenMap'  => 'Hide map',
-    'setDeclarationCenter'  => 'Set up stockist',
-    'cancelDeclarationCenter'  => 'Cancel stockist',
-    'userActivation'  => 'Member activation',
-    'userLocking'  => 'Member lock',
-    'modifyUserInfo'  => 'Modify member information',
-    'editAdmin'  => 'Edit administrator',
-    'applyRemoveNetwork'  => 'Apply for mobile network',
-    'approveRemoveNetwork'  => 'Approved by mobile network',
-    'resetPasswords'  => 'Reset password',
-    'cancellationSystem'  => 'Revocation system',
-    'addSystem'  => 'Add system',
-    'editSystem'  => 'Edit system',
-    'recoverySystem'  => 'Recovery system',
-    'systemLog'  => 'System log',
-    'shopOrderPeriodAdjust' => 'Order Period Adjust',
-    'memberHighestEmpLvAdjust' => 'Member Highest Director Adjustment',
-    'call'  => 'Transfer',
-    'beCcalled'  => 'called',
-    'userOperatingLog'  => 'Member operation log',
-    'enableDisableAutomaticWithdrawal'  => 'Enable / Disable Automatic Withdrawal',
-    'enableDisableReSalesSMSReminder'  => 'Enable / Disable Re Sales SMS Reminder',
-    'memberTransfer'  => 'Member Transfer',
-    'memberWithdrawalApplication'  => 'Member Withdrawal Application',
-    'memberModificationInformation'  => 'Member Modification Information',
-    'modifyMasterPoint'  => 'Modify Master Point',
-    'periodNumber' => 'Period Number',
-    'serialNumber' => 'Serial Number',
-    'rank'  => 'Rank',
-    'adjustMemberHighestDirector' => 'Adjust Highest Director',
-
-    #Ad
-    'AdAddedSuccessfully' => 'Ad added successfully',
-    'EditAdSuccessfully' => 'Ad edited successfully',
-
-    #Article
-    'articleNotExists'  => 'Article does not exist',
-
-    #File
-    'mallManagement'    => 'Mall Management',
-    'memberManagement'  => 'Member Management',
-    'networkChart' => 'Network Chart',
-    'resaleManagement' => 'Resale management',
-    'bonusManagement' => 'Bonus management',
-    'financialManagement' => 'financial management',
-
-    # Public
-    'amountUnit' => '₦',
-    'sceneDoesNotExist' => 'Scene does not exist',
-    'memberDoesNotExist' => 'Member does not exist',
-    'countryDoesNotExist' => 'Country does not exist',
-    'mustSelectOneItemToDelete' => 'must select one item to delete',
-    'dataNotExists' => 'Data not exists',
-    'startExporting'=> 'Starting exporting, please go to File Management - Export Files to view.',
-    'incorrectDateFormat' => 'Incorrect date format',
-    'notConnection' => 'Connection not operated for too long',
-    'deleteFailed' => 'failed to delete',
-    'deleteSuccessfully' => 'delete successfully',
-    'quickLoginCanNotOperate' => 'Members who log in quickly cannot perform any operations',
-    'selectAtLeastOne' => 'A data must be selected',
-    'failed' => 'Failed',
-    'successfully' => 'Successfully',
-    'createAt' => 'Creation Time',
-    'status' => 'Status',
-    'state' => 'State',
-    'sort' => 'Sort',
-    'illegalRequest' => 'Illegal request',
-    'invalidParameter' => 'Invalid Parameter',
-    'dataDoesNotExists' => 'The data does not exist',
-    'operationAdministrator' => 'Operation Administrator',
-    'typeError' => 'Type error',
-    'contentError' => 'Content error',
-    'hideSuccessfully' => 'hide successfully',
-    'UnhideSuccessfully' => 'Unhide successfully',
-
-    # Member
-    'memberCode' => 'Member Code',
-    'memberName' => 'Member Name',
-    'memberAddress' => 'Member Address',
-    'memberPhone' => 'Member Phone',
-    'loginStatus' => 'Login Status',
-    'allowLogin' => 'Allow Login',
-    'prohibitLogin' => 'Prohibit Login',
-    'activate' => 'Activate',
-    'lock' => 'Lock',
-    'filterAllowLogin' => 'Filter Allow Login',
-    'bankName' => 'Bank Name',
-    'bankCode' => 'Bank Code',
-    'bankAccountNumber' => 'Bank Account Number',
-    'admin' => 'Admin',
-    'minCharge' => 'Min Charge',
-    'maxCharge' => 'Max Charge',
-    'chargeRate' => 'Charge Rate',
-    'updater' => 'Updater',
-    'userName' => 'USER_NAME',
-    'passwordHash' => 'PASSWORD_HASH',
-    'payPassword' => 'PAY_PASSWORD',
-    'nation' => 'NATION',
-    'realName' => 'REAL_NAME',
-    'IDCard' => 'ID_CARD',
-    'IDType' => 'ID_TYPE',
-    'mobile' => 'MOBILE',
-    'address' => 'ADDRESS',
-    'IDImage' => 'ID_IMAGE',
-    'openBank' => 'OPEN_BANK',
-    'bankAddress' => 'BANK_ADDRESS',
-    'bankNo' => 'BANK_NO',
-    'bankProvince' => 'BANK_PROVINCE',
-    'bankCity' => 'BANK_CITY',
-    'bankCounty' => 'BANK_COUNTY',
-    'spouseName' => 'SPOUSE_NAME',
-    'spouseIDCard' => 'SPOUSE_IDCARD',
-    'decClosed' => 'DEC_CLOSED',
-    'decClosedAt' => 'DEC_CLOSED_AT',
-    'decLv' => 'DEC_LV',
-    'empLv' => 'EMP_LV',
-    'crownLv' => 'CROWN_LV',
-    'province' => 'PROVINCE',
-    'city' => 'CITY',
-    'county' => 'COUNTY',
-    'tel' => 'TEL',
-    'subComID' => 'SUB_COM_ID',
-    'avatar' => 'AVATAR',
-    'isDec' => 'IS_DEC',
-    'isAtlas' => 'IS_ATLAS',
-    'isRecharge' => 'IS_RECHARGE',
-    'DEC_ID' => 'DEC_ID',
-    'birthday' => 'BIRTHDAY',
-    'decRoleID' => 'DEC_ROLE_ID',
-    'periodAt' => 'PERIOD_AT',
-    'decProvince' => 'DEC_PROVINCE',
-    'decCity' => 'DEC_CITY',
-    'decCounty' => 'DEC_COUNTY',
-    'isUnion' => 'IS_UNION',
-    'statusAt' => 'STATUS_AT',
-    'verified' => 'VERIFIED',
-    'verifiedAt' => 'VERIFIED_AT',
-    'notOperating' => 'NOT_OPERATING',
-    'regFrom' => 'REG_FROM',
-    'IDCardPrefix' => 'ID_CARD_PREFIX',
-    'sex' => 'SEX',
-    'decAccountOld' => 'DEC_ACCOUNT_OLD',
-    'bankUpdatedAt' => 'BANK_UPDATED_AT',
-    'isDirectSeller' => 'IS_DIRECT_SELLER',
-    'decLvUpdatedAt' => 'DEC_LV_UPDATED_AT',
-    'decLvUpdatedPeriod' => 'DEC_LV_UPDATED_PERIOD',
-    'decAddress' => 'DEC_ADDRESS',
-    'decPhone' => 'DEC_PHONE',
-    'guarantor' => 'GUARANTOR',
-    'guarantorName' => 'GUARANTOR_NAME',
-    'partFuncClosed' => 'PART_FUNC_CLOSED',
-    'lastDecLvUpdatedPeriod' => 'LAST_DEC_LV_UPDATED_PERIOD',
-    'userCreator' => 'USER_CREATOR',
-    'userUpdater' => 'USER_UPDATER',
-    'lastDecLvUpdatedAt' => 'LAST_DEC_LV_UPDATED_AT',
-    'decCreatedAt' => 'DEC_CREATED_AT',
-    'partFuncClosedRemark' => 'PART_FUNC_CLOSED_REMARK',
-    'decCreatedPeriod' => 'DEC_CREATED_PERIOD',
-    'passwordChanged' => 'PASSWORD_CHANGED',
-    'subComLeader' => 'SUB_COM_LEADER',
-    'zgUpgradePv' => 'ZG_UPGRADE_PV',
-    'appClientID' => 'APP_CLIENT_ID',
-    'readAgreement' => 'READ_AGREEMENT',
-    'lastDecLv' => 'LAST_DEC_LV',
-    'bonusAppClientID' => 'BONUS_APP_CLIENT_ID',
-    'isFirstOpen' => 'IS_FIRST_OPEN',
-    'isModifyPassword' => 'IS_MODIFY_PASSWORD',
-    'isStudio' => 'IS_STUDIO',
-    'email' => 'EMAIL',
-    'levelBeforeModification' => 'Level Before Modification',
-    'modifiedLevel' => 'Modified Level',
-    'country' => 'Country',
-    'beforeCountry' => '修改前国家',
-    'afterCountry' => '修改前国家',
-
-    'moveMember' => 'Move Member',
-    'moveMemberName' => 'Move Member Name',
-    'uperCodeBeforeMoving' => 'Uper Code Before Moving',
-    'uperCodeAfterMoving' => 'Uper Code After Moving',
-    'typeOfMoving' => 'Type Of Moving',
-    'position' => 'Position',
-    'periodOfMoving' => 'Period Of Moving',
-    'whetherToMove' => 'Whether To Move',
-    'percentage' => 'Percentage',
-    'AdministratorOfMoving' => 'Administrator Of Moving',
-    'joiningDate' => 'Joining Date',
-    'currentMemberLevel' => 'Current Member Level',
-    'currentAdjustmentDate' => 'Current Adjustment Date',
-    'PCMemberLevel' => 'PC Member Level',
-    'latestDirector' => 'Latest Director',
-    'latestCrown' => 'Highest Crown',
-    'recommendationNo' => 'Sponsor Code',
-    'recommendedName' => 'Sponsor Name',
-    'placementNo' => 'Placement No',
-    'placementName' => 'Placement Name',
-    'resettlementArea' => 'Resettlement Area',
-    'phoneNumber' => 'Phone Number',
-    'alternatePhoneNumber' => 'Alternate Phone Number',
-    'stockistCode' => 'Stockist Code',
-    'whetherStockist' => 'Whether Stockist',
-    'stockistOrNot' => 'Stockist or not',
-    'whetherChartDisplay' => 'Whether Chart Display',
-    'whetherRechargeDisplay' => 'Whether Recharge Display',
-    'stockistLevel' => 'Stockist Level',
-    'commonAddress' => 'Common Address',
-    'enableTransfer' => 'Enable Transfer',
-    'activeStatus' => 'Active Status',
-    'locking' => 'Locking',
-    'activation' => 'Activation',
-    'on' => 'On',
-    'off' => 'Off',
-    'administratorOfReviewing' => 'Administrator Of Reviewing',
-    'reviewTime' => 'Review Time',
-    'I.Market' => 'I. Market',
-    'II.Market' => 'II. Market',
-    'userMoveAuditStatus:0' => 'To be reviewed',
-    'userMoveAuditStatus:1' => 'Approved',
-    'userMoveAuditStatus:2' => 'Failed',
-    'userMoveAuditStatus:3' => 'Audit reject',
-    'levelNoChange' => '级别没有变化无需调整',
-    'studioOrNot' => 'Studio or not',
-
-    # Network
-    'placementNetwork' => 'Placement Network',
-    'sponsorNetwork' => 'Sponsor Network',
-
-
-    # Bonus
-    'memberBonus' => 'Member Bonus',
-    'memberEcoin' => 'Member Ecoin',
-    'travelIncentive' => 'Travel Incentive',
-    'carIncentive' => 'Car Incentive',
-    'villaIncentive' => 'Villa Incentive',
-    'requirePeriods' => 'Please enter Period No.',
-    'requireMemberNumber' => 'Please enter member code',
-    'payCycle' => 'Pay Cycle(PC)',
-    'sponsorNo' => 'Sponsor No',
-    'sponsorName' => 'Sponsor Name',
-    'superiorCode' => 'Superior Code',
-    'superiorName' => 'Superior Name',
-    'superiorNumber' => 'Superior Number',
-    'welcomeBonus' => 'Welcome Bonus',
-    'teamBonus' => 'Team Bonus',
-    'uncappedTeamBonus' => 'Uncapped Team Bonus',
-    'directorBonus' => 'Director Bonus',
-    'stockistCommission' => 'Stockist Commission',
-    'quarterlyBonus' => 'Quarterly Bonus',
-    'actualBonus' => 'Actual Bonus',
-    'totalBonus' => 'Total Bonus',
-    'totalRevenue' => 'Total Revenue',
-    'bonusMonth' => 'Bonus Month',
-    'oneNewMarketPerformance' => 'I. new market performance',
-    'twoNewMarketPerformance' => 'II. new market performance',
-    'oneMarketBalancePerformance' => 'I. market balance performance',
-    'twoMarketBalancePerformance' => 'II. market balance performance',
-    'managementAward' => 'Management Award',
-    'bonusDate' => 'Settlement Date',
-    'transactionType' => 'Transaction Type',
-    'memberLevel' => 'Member Level',
-    'balanceBeforeTransaction' => 'Balance Before Transaction',
-    'debitCredit' => 'Debit/Credit',
-    'newBalance' => 'New Balance',
-    'personalPerformance' => 'Personal Performance',
-    'remainderLeftLeg' => 'Remainder@Left Leg',
-    'remainderRightLeg' => 'Remainder@Right Leg',
-    'cumulativeTeamPerformance' => 'Cumulative Team Performance',
-    'salesNo' => 'Sales No',
-    'saleType' => 'Type',
-    'saleStatus' => 'Status',
-    'sponsorNoAtSettlement' => 'Sponsor No. At Settlement',
-    'sponsorNameAtSettlement' => 'Sponsor Name At Settlement',
-    'entryBV' => 'Entry BV',
-    'entryAmount' => 'Entry Amount',
-    'entryNo' => 'Entry No',
-    'orderSource' => 'Order Source',
-    'reviewed' => 'Reviewed',
-    'wastedisposal' => 'Waste disposal',
-    'whetherActive' => 'Whether Active',
-    'yes' => 'Yes',
-    'no' => 'No',
-    'declarationPerformance' => 'Declaration Performance',
-    'cancellationPerformance' => 'Cancellation Performance',
-    'LNewMarketPerformance' => 'L. New Market Performance',
-    'LNewPerformanceOfMarketEntry' => 'L. New Performance Of Market Entry',
-    'LNewPerformanceOfMarketReCancellation' => 'L. New Performance Of Market Re Cancellation',
-    'RNewMarketPerformance' => 'R. New Market Performance',
-    'RNewPerformanceOfMarketEntry' => 'R. New Performance Of Market Entry',
-    'RNewPerformanceOfMarketReCancellation' => 'R. New Performance Of Market Re Cancellation',
-    'LMarketBalancePerformance' => 'L. Market Balance Performance',
-    'RMarketBalancePerformance'=> 'R. Market Balance Performance',
-    'LMarketEntryBalancePerformance' => 'L. Market Entry Balance Performance',
-    'RMarketEntryBalancePerformance' => 'R. Market Entry Balance Performance',
-    'LMarketReconditioningBalancePerformance' => 'L. Market Reconditioning Balance Performance',
-    'RMarketReCancellationBalancePerformance' => 'R. Market Re Cancellation Balance Performance',
-    'teamPerformance' => 'Team Performance',
-    'recommenderNo' => 'Recommender No',
-    'recommenderName' => 'Recommender Name',
-    'directorRank' => 'Director Rank',
-    'directorPGSPerformance' => 'Director PGS Performance',
-    'LNewMarketEntryPerformance' => 'L. New Market Entry Performance',
-    'RNewMarketEntryPerformance' => 'R. New Market Entry Performance',
-    'LMarketMonthlyRemainingDeclarationPerformance' => 'L. Market Monthly Remaining Declaration Performance',
-    'RMarketMonthlyRemainingDeclarationPerformance' => 'R. Market Monthly Remaining Declaration Performance',
-    'monthlyNewTeamPerformance' => 'Monthly New Team Performance',
-    'monthlyCumulativeTeamPerformance' => 'Monthly Cumulative Team Performance',
-
-    # 【数据表】
-    # 会员等级
-    'dbDeclarationLevelBA' => 'BA',
-    'dbDeclarationLevelElite' => 'Elite',
-    'dbDeclarationLevelPro' => 'Pro',
-    'dbDeclarationLevelVip' => 'Vip',
-    # 管理星级
-    'dbEmployLevelNoRank' => 'No Rank',
-    'dbEmployLevel1StarDirector'  => '1-Star Director',
-    'dbEmployLevel2StarDirector'  => '2-Star Director',
-    'dbEmployLevel3StarDirector'  => '3-Star Director',
-    'dbEmployLevel4StarDirector'  => '4-Star Director',
-    'dbEmployLevel5StarDirector'  => '5-Star Director',
-    'dbEmployLevel6StarDirector'  => '6-Star Director',
-    'dbEmployLevel7StarDirector'  => '7-Star Director',
-    # 皇冠星级
-    'dbCrownLevel0StarCrown' => '0-Star Crown',
-    'dbCrownLevel1StarCrown' => '1-Star Crown',
-    'dbCrownLevel2StarCrown' => '2-Star Crown',
-    'dbCrownLevel3StarCrown' => '3-Star Crown',
-    'dbCrownLevel4StarCrown' => '4-Star Crown',
-    'dbCrownLevel5StarCrown' => '5-Star Crown',
-    'dbCrownLevel6StarCrown' => '6-Star Crown',
-    'dbCrownLevel7StarCrown' => '7-Star Crown',
-    # 报单中心级别
-    'dbDecRole1stLevelStockist'	=> '1st Level Stockist',
-    'dbDecRole2ndLevelStockist'	=> '2nd Level Stockist',
-    'dbDecRole3rdLevelStockist'	=> '3rd Level Stockist',
-    'dbDecRole4thLevelStockist'	=> '4th Level Stockist',
-    'dbDecRole5thLevelStockist'	=> '5th Level Stockist',
-    # 注册类型
-    'dbRegTypePersonal' => '个人',
-    'dbRegTypeBusiness' => '个体工商户',
-    'dbRegTypeCompany' => '公司',
-    # 交易类型
-    'dbConfigAllowWallet' => '转出转入配置',
-    'dbConfigAutoCalcPeriod' => '自动结算',
-    'dbConfigAutoClosePeriod' => '自动封期',
-    'dbConfigBackupTime' => '备份时间',
-    'dbConfigBackupWeekDate' => '备份星期',
-    'dbConfigBaseScore' => '基础分数配置',
-    'dbConfigBsNoPvPointsPercent' => '没有业绩的时候,蓝星奖金给多少业绩比例的兑换积分',
-    'dbConfigCalcYear' => '期数计算至年份',
-    'dbConfigCashReconsumeBonusPercent' => '现金购物PV算奖比例',
-    'dbConfigCloseDays' => '自动封期天数',
-    'dbConfigCloseTime' => '自动封期时间',
-    'dbConfigCloseWeekDate' => '自动封期星期',
-    'dbConfigDealSwitch' => '查看交易记录',
-    'dbConfigDecRoleBonusFrom' => '服务奖来源',
-    'dbConfigExchangeRate' => '汇率配置',
-    'dbConfigFlowBonusSwitch' => '奖金明细',
-    'dbConfigFreeShipping' => '商品免运费阈值',
-    'dbConfigInstalmentQty' => '分期商品期数',
-    'dbConfigFreight' => '商品运费',
-    'dbConfigFwCoefficientFromFxCash' => '服务奖现金复消系数',
-    'dbConfigFwCoefficientFromFxPoint' => '服务奖积分复消系数',
-    'dbConfigFwCoefficientFromZc' => '服务奖首购报单系数',
-    'dbConfigHistoryBonusLimit' => '奖金余额备份近几周',
-    'dbConfigIsCanTransferProp' => '是否开启单笔转账比例',
-    'dbConfigIsCanWithdrawBack' => '是否开启前台提现退回功能',
-    'dbConfigIsDecReg' => '只允许报单中心报单',
-    'dbConfigIsOpenUpgrade' => '是否开启会员升级单功能',
-    'dbConfigIsResaleUmbrella' => '是否只允许为伞下会员报复消单',
-    'dbConfigManageTaxPercent' => '管理费比例',
-    'dbConfigManualWithdrawMinAmount' => '手动提现最低金额',
-    'dbConfigMonthPcsPvFxCondition' => '每月个人总消费PV条件',
-    'dbConfigNewBonusSwitch' => '最新奖金',
-    'dbConfigObservePeriodLimit' => '观察期月份限制',
-    'dbConfigOpenFW' => '是否开启服务奖',
-    'dbConfigOpenGL' => '是否开启管理奖',
-    'dbConfigOpenGarage' => '车奖积分比例',
-    'dbConfigOpenGarageCap' => '车奖个人封顶值',
-    'dbConfigOpenQY' => '是否开启团队奖',
-    'dbConfigOpenQuarter' => '季度奖金',
-    'dbConfigOpenTG' => '是否开启推广奖',
-    'dbConfigOpenTourism' => '旅游积分比例',
-    'dbConfigOpenVilla' => '房奖积分比例',
-    'dbConfigOpenVillaCap' => '房奖个人封顶值',
-    'dbConfigPasswordRule' => '密码规则',
-    'dbConfigPastBonusSwitch' => '往期奖金',
-    'dbConfigPayPasswordRule' => '支付密码规则',
-    'dbConfigPvRatio' => 'PV比例',
-    'dbConfigReConsumePointsMonthCap' => '重复消费积分每月上限',
-    'dbConfigReConsumePointsPercent' => '重复消费积分比例',
-    'dbConfigRecPercent' => '推广奖比例',
-    'dbConfigShowBonusPeriodNum' => '前台可见往期奖金期数',
-    'dbConfigShowFlowPeriodNum' => '前台可见交易记录期数',
-    'dbConfigShowTransferPeriodNum' => '前台可见转账记录期数',
-    'dbConfigShowWithdrawPeriodNum' => '前台可见提现记录期数',
-    'dbConfigSiteClose' => '是否关闭网站',
-    'dbConfigSiteCloseInfo' => '关闭提示信息',
-    'dbConfigSiteTitle' => '网站标题',
-    'dbConfigTransferOpen' => '是否开启转账功能',
-    'dbConfigTransferRecordSwitch' => '前台转账记录开关',
-    'dbConfigTransferSwitch' => '前台我要转账开关',
-    'dbConfigWithdrawFee' => '提现手续费',
-    'dbConfigWithdrawFreezeDays' => '提现预付款天数',
-    'dbConfigReportAlarmOpen' => '是否开启预警信息推送',
-
-    # 【参数】
-    # 钱包类型
-    'cashWallet' => 'Cash wallet',
-    # 用户状态
-    'userStatusInactive' => 'Inactive',
-    'userStatusNormal' => 'Normal',
-    'userStatusLogout' => 'Logout',
-    'userStatusBlacklist' => 'Blacklist',
-    'userStatusSuspended' => 'Suspended',
-    'userStatusPermanentShutDown' => 'Permanent shut down',
-    # 奖金类型
-    'bonusWalletTypeAccountBonus' => 'Account bonus',
-    'bonusWalletTypeResellingPointsBalance' => 'Reselling points balance',
-    'bonusWalletTypeAccountEcoin' => 'Account Ecoin',
-    'bonusWalletTypeExchangePointsBalance' => 'Exchange points balance',
-    'bonusWalletTypeTravelPointsBalance' => 'Travel points balance',
-    'bonusWalletTypeCarPointsBalance' => 'Car points balance',
-    'bonusWalletTypeVillaPointsBalance' => 'Villa points balance',
-    # 审核状态
-    'auditStatusUnaudited' => 'Unaudited',
-    'auditStatusAudited' => 'Audited',
-    'auditStatusAuditFailure' => 'Audit failure',
-    'auditStatusRefused' => 'Refused',
-    # 发货状态
-    'deliveryStatusUndelivered' => 'Undelivered',
-    'deliveryStatusDelivered' => 'Delivered',
-    'deliveryStatusConfirmReceipt' => 'Confirm receipt',
-    # 导出模块
-    'exportModuleShop' => 'Mall Management',
-    'exportModuleMember' => 'Member Management',
-    'exportModuleNetwork' => 'Network Chart',
-    'exportModuleResale' => 'Resale Management',
-    'exportModuleBonus' => 'Bonus Management',
-    'exportModuleShopFinancial' => 'Financial Management',
-    # 订单状态
-    'orderStatusUnpaid' => 'Unpaid',
-    'orderStatusPaid' => 'Paid',
-    'orderStatusLogisticsStatus' => 'Logistics status',
-    'orderStatusOrderCompletion' => 'Order completion',
-    'orderStatusOrderCancellation' => 'Order cancellation',
-    'orderStatusOrderDeletion' => 'Order deletion',
-    'orderStatusOrderRefund' => 'Order refund',
-    'orderStatusPaymentFailed' => 'Payment failed',
-    # 流水类型
-    'shopFlowTypeRemittanceRecharge' => 'Remittance recharge',
-    'shopFlowTypeThirdPartyRecharge' => 'Rhird-party recharge',
-    'shopFlowTypeTransferOut' => 'Transfer out',
-    'shopFlowTypeTransferInto' => 'Transfer into',
-    'shopFlowTypePay' => 'Pay',
-    'shopFlowTypeWelcomePackRecharge' => 'Welcome pack recharge',
-    'shopFlowTypeOrderRecharge' => 'Order recharge',
-    'shopFlowTypeFreightPayment' => 'Freight payment',
-    'shopFlowTypeAdjustedRecharge' => 'Adjusted recharge',
-    'shopFlowTypeAdjustedDeduct' => 'Adjusted deduct',
-    'shopFlowTypeAdjustedTransferOut' => 'Adjusted transfer out',
-    'shopFlowTypeAdjustedTransferIn' => 'Adjusted transfer in',
-    'shopFlowTypeExchangeRecharge' => 'Exchange recharge',
-    'shopFlowTypeExchangeDeduct' => 'Exchange deduct',
-    'shopFlowTypeDeleteOrderDeduct' => 'Delete order deduct',
-    'shopFlowTypeDeleteOrderRecharge' => 'Delete order recharge',
-    'shopFlowTypeDeleteOrderReturn' => 'Delete order return',
-    'shopFlowTypeRepairPayment' => 'Repair payment',
-    'shopFlowTypeAfterSaleExchangeRecharge' => 'After-sale exchange recharge',
-    'shopFlowTypeAfterSaleExchangeDeduct' => 'After-sale exchange deduct',
-    'shopFlowTypeOMSDeduct' => 'OMS deduct',
-    'shopFlowTypeDeduct' => 'Deduct',
-    'shopFlowTypeIncrease' => 'Increase',
-    'shopFlowTypeOther' => 'Other',
-    'shopFlowTypeAdministratorManualAdjustment' => 'Administrator manual adjustment',
-    # 国家
-    'dbCountriesdz' => "COTE D'IVOIRE",
-    'dbCountriesao' => 'ALGERIA',
-    'dbCountriesbj' => 'BOTSWANA',
-    'dbCountriesbw' => 'BURKINA FASO',
-    'dbCountriesbf' => 'ANGOLA',
-    'dbCountriesbi' => 'BENIN',
-    'dbCountriescm' => 'CHAD',
-    'dbCountriescv' => 'COMOROS',
-    'dbCountriescf' => 'CAMEROON',
-    'dbCountriestd' => 'SOUTH SUDAN',
-    'dbCountrieskm' => 'GUINEA',
-    'dbCountriescg' => 'CAPE VERDE',
-    'dbCountriesci' => 'CENTRAL AFRICA REPUBLIC',
-    'dbCountriesdj' => 'CONGO',
-    'dbCountriescd' => 'BURUNDI',
-    'dbCountrieseg' => 'DJIBOUTI',
-    'dbCountriesgq' => 'GABON',
-    'dbCountrieser' => 'DR CONGO',
-    'dbCountriessz' => 'SOUTH AFRICA',
-    'dbCountrieset' => 'EGYPT',
-    'dbCountriesga' => 'EQUATORIAL GUINEA',
-    'dbCountriesgm' => 'ESWATINI',
-    'dbCountriesgh' => 'ERITREA',
-    'dbCountriesgn' => 'ETHIOPIA',
-    'dbCountriesgw' => 'GAMBIA',
-    'dbCountrieske' => 'GHANA',
-    'dbCountriesls' => 'KENYA',
-    'dbCountrieslr' => 'GUINEA - BISSAU',
-    'dbCountriesly' => 'LESOTHO',
-    'dbCountriesmg' => 'LIBYA',
-    'dbCountriesmw' => 'MAURITANIA',
-    'dbCountriesml' => 'MADAGASCAR',
-    'dbCountriesmr' => 'MALAWI',
-    'dbCountriesmu' => 'MALI',
-    'dbCountriesma' => 'LIBERIA',
-    'dbCountriesmz' => 'MAURITIUS',
-    'dbCountriesna' => 'MOROCCO',
-    'dbCountriesne' => 'MOZAMBIQUE',
-    'dbCountriesng' => 'NAMIBIA',
-    'dbCountriesrw' => 'NIGER ',
-    'dbCountriesst' => 'SOMALIA',
-    'dbCountriessn' => 'SENEGAL',
-    'dbCountriessc' => 'NIGERIA',
-    'dbCountriessl' => 'SAO TOME & PRINCIPE',
-    'dbCountriesso' => 'SEYCHELLES',
-    'dbCountriesza' => 'UGANDA',
-    'dbCountriesss' => 'SIERRA LEONE',
-    'dbCountriessd' => 'RWANDA',
-    'dbCountriestz' => 'TOGO',
-    'dbCountriestg' => 'SUDAN',
-    'dbCountriestn' => 'TANZANIA',
-    'dbCountriesug' => 'TUNISIA',
-    'dbCountrieszm' => 'ZAMBIA',
-    'dbCountrieszw' => 'ZIMBABWE',
-];

+ 0 - 316
common/messages/fr-FR/app.php

@@ -1,316 +0,0 @@
-<?php
-return [
-    # 商城
-    'addressId' => 'Address',
-    'reconsume' => 'Reconsume',
-    'orderCode' => 'Order Code',
-    'orderDetail' => 'Order Detail',
-    'productCode' => 'Product Code',
-    'productName' => 'Product Name',
-    'productPrice' => 'Product Price',
-    'qty' => 'Qty',
-    'taxRate' => 'Tax Rate',
-    'totalTax' => 'Total Tax',
-    'totalAmount' => 'Total Amount',
-    'total' => 'Total',
-    'signature' => 'Signature',
-    'date' => 'Date',
-    'accountBalance' => 'Account Balance',
-    'travelBonus' => 'Travel Bonus',
-    'carFund' => 'Car Fund',
-    'villaFund' => 'Villa Fund',
-    'reconsumeSuccessfully' => '帮会员复消成功',
-    'reconsumeRemark' => '复销备注',
-    'standardProducts' => 'Standard Products',
-    'carFundProducts' => 'Car Fund Products',
-    'villaFundProducts' => 'Villa Fund Products',
-    'travelFundProducts' => 'Travel Fund Products',
-    'insufficientInventory' => 'Insufficient inventory',
-    'soldOut' => 'Sold out',
-    'productsDoesNotExists' => 'Products does not exists!',
-    'allowOnlyOne' => 'Only 1 can be purchased at a time',
-    'canNotBuy' => 'Please pay in EPP order',
-    'instalmentGoodsNoError' => 'Products No. error',
-    'instalmentOrderInProcess' => '分期商品订单未完成',
-    'productsDoesSoldOut' => 'Products has sold out!',
-    'cashDoesNotAdequate' => '余额不足,无法购买商品',
-    'exchangePointDoesNotAdequate' => '兑换积分不足,无法购买商品',
-    'travelPointDoesNotAdequate' => '旅游积分不足,无法购买商品',
-    'carFundPointDoesNotAdequate' => '车奖积分不足,无法购买商品',
-    'villaPointDoesNotAdequate' => '房奖积分不足,无法购买商品',
-    'paymentInfoDoesNotExists' => '支付信息不存在',
-    'payAmountNotEqualOrderAmount' => '支付金额与订单金额不符',
-    'orderSn' => 'Order Code',
-    'expressCompany' => 'Express Company',
-    'orderTrackNo' => 'Track Code',
-    'remark' => 'Remark',
-    'orderType' => 'Order Type',
-    'payType' => 'Pay Type',
-    'productID' => 'Product ID',
-    'quantity' => 'Quantity',
-    'repeatSalesMemberNo' => 'UserName',
-    'consigneeNo' => 'Consignee',
-    'acceptMobile' => 'Accept Mobile',
-    'lgaName' => 'Lga Name',
-    'cityName' => 'City Name',
-    'detailAddress' => 'Address',
-    'shippingAddress' => 'shipping Address',
-
-    'orderDoesNotExist' => 'the order does not exist',
-    'orderHasBeenCancelCanNotDeliver ' => '订单已取消不能发货',
-    'orderHasBeenDeleteCanNotDeliver' => '订单已删除不能发货',
-    'orderPayStatusDoesNotSupportRefund' => '订单状态支付状态不支持退款',
-    'orderLogisticsStatusDoesNotSupportRefund' => '订单物流状态不支持退款',
-    'orderPayTypeDoesNotSupportRefund' => '订单支付方式不支持退款',
-    'paymentPasswordError' => 'The payment password is incorrect',
-    'shippingDoesNotExist' => 'the shipping address does not exist',
-    'payTypeError' => '支付方式错误',
-    'orderCanNotHasMoreClassification' => '订单不能包含多种商品分类',
-    'shopGoodClassificationError' => '商品分类错误',
-    'orderStatusTypeError' => '订单状态类型错误',
-    'orderStatusDoesNotChange' => '订单状态没有改变',
-    'orderHasBeenLogisticsStatusDoesNotChangedUnpaid' => '订单已经进入物流状态不能改为未支付',
-    'orderHasBeenInvalidCanNotProcess' => '订单已失效不能处理',
-    'orderCanNotBeenChangedLogistics' => '订单不能单独处理为物流状态',
-    'orderHasBeenFinishedCanNotCancel' => '订单已完成不能取消',
-    'orderHasBeenDeletedCanNotCancel' => '订单已删除不能取消',
-    'orderHasBeenFinishedCanNotDelete' => '订单已完成不能删除',
-    'flowTypeError' => '流水类型错误',
-    'flowCreateError' => '流水产生错误',
-    'doesNotYourSubMemberCanNotReconsume' => '不是您的伞下会员,不能为其复消',
-    'membersResellingBalancePayment' => 'Members reselling balance payment',
-    'membersExchangePointPayment' => '会员复销积分兑换',
-    'orderCanNotContainMultipleProductCategories' => 'Order cannot contain multiple product categories',
-
-
-    # 会员
-    'memberCode' => 'Member Code',
-    'memberName' => 'Member Name',
-    'memberAddress' => 'Member Address',
-    'memberPhone' => 'Member Phone',
-    'bankName' => 'Bank Name',
-    'bankCode' => 'Bank Code',
-    'admin' => 'Admin',
-    'minCharge' => 'Min Charge',
-    'maxCharge' => 'Max Charge',
-    'chargeRate' => 'Charge Rate',
-    'updater' => 'Updater',
-    'userName' => 'USER_NAME',
-    'passwordHash' => 'PASSWORD_HASH',
-    'payPassword' => 'PAY_PASSWORD',
-    'nation' => 'NATION',
-    'realName' => 'REAL_NAME',
-    'IDCard' => 'ID_CARD',
-    'IDType' => 'ID_TYPE',
-    'mobile' => 'MOBILE',
-    'address' => 'ADDRESS',
-    'IDImage' => 'ID_IMAGE',
-    'openBank' => 'OPEN_BANK',
-    'bankAddress' => 'BANK_ADDRESS',
-    'bankNo' => 'BANK_NO',
-    'bankProvince' => 'BANK_PROVINCE',
-    'bankCity' => 'BANK_CITY',
-    'bankCounty' => 'BANK_COUNTY',
-    'spouseName' => 'SPOUSE_NAME',
-    'spouseIDCard' => 'SPOUSE_IDCARD',
-    'decClosed' => 'DEC_CLOSED',
-    'decClosedAt' => 'DEC_CLOSED_AT',
-    'decLv' => 'DEC_LV',
-    'empLv' => 'EMP_LV',
-    'crownLv' => 'CROWN_LV',
-    'province' => 'PROVINCE',
-    'city' => 'CITY',
-    'county' => 'COUNTY',
-    'tel' => 'TEL',
-    'subComID' => 'SUB_COM_ID',
-    'avatar' => 'AVATAR',
-    'isDec' => 'IS_DEC',
-    'isAtlas' => 'IS_ATLAS',
-    'isRecharge' => 'IS_RECHARGE',
-    'DEC_ID' => 'DEC_ID',
-    'birthday' => 'BIRTHDAY',
-    'decRoleID' => 'DEC_ROLE_ID',
-    'periodAt' => 'PERIOD_AT',
-    'decProvince' => 'DEC_PROVINCE',
-    'decCity' => 'DEC_CITY',
-    'decCounty' => 'DEC_COUNTY',
-    'isUnion' => 'IS_UNION',
-    'statusAt' => 'STATUS_AT',
-    'verified' => 'VERIFIED',
-    'verifiedAt' => 'VERIFIED_AT',
-    'allowLogin' => 'ALLOW_LOGIN',
-    'notOperating' => 'NOT_OPERATING',
-    'regFrom' => 'REG_FROM',
-    'IDCardPrefix' => 'ID_CARD_PREFIX',
-    'sex' => 'SEX',
-    'decAccountOld' => 'DEC_ACCOUNT_OLD',
-    'bankUpdatedAt' => 'BANK_UPDATED_AT',
-    'isDirectSeller' => 'IS_DIRECT_SELLER',
-    'decLvUpdatedAt' => 'DEC_LV_UPDATED_AT',
-    'decLvUpdatedPeriod' => 'DEC_LV_UPDATED_PERIOD',
-    'decAddress' => 'DEC_ADDRESS',
-    'decPhone' => 'DEC_PHONE',
-    'guarantor' => 'GUARANTOR',
-    'guarantorName' => 'GUARANTOR_NAME',
-    'partFuncClosed' => 'PART_FUNC_CLOSED',
-    'lastDecLvUpdatedPeriod' => 'LAST_DEC_LV_UPDATED_PERIOD',
-    'userCreator' => 'USER_CREATOR',
-    'userUpdater' => 'USER_UPDATER',
-    'lastDecLvUpdatedAt' => 'LAST_DEC_LV_UPDATED_AT',
-    'decCreatedAt' => 'DEC_CREATED_AT',
-    'partFuncClosedRemark' => 'PART_FUNC_CLOSED_REMARK',
-    'decCreatedPeriod' => 'DEC_CREATED_PERIOD',
-    'passwordChanged' => 'PASSWORD_CHANGED',
-    'subComLeader' => 'SUB_COM_LEADER',
-    'zgUpgradePv' => 'ZG_UPGRADE_PV',
-    'appClientID' => 'APP_CLIENT_ID',
-    'readAgreement' => 'READ_AGREEMENT',
-    'lastDecLv' => 'LAST_DEC_LV',
-    'bonusAppClientID' => 'BONUS_APP_CLIENT_ID',
-    'isFirstOpen' => 'IS_FIRST_OPEN',
-    'isModifyPassword' => 'IS_MODIFY_PASSWORD',
-    'isStudio' => 'IS_STUDIO',
-    'email' => 'EMAIL',
-
-    'fillingUpOfADeficit' => 'filling up of a deficit',
-    'fullPayment' => 'full payment',
-
-    'personalDataModifiedSuccessfully' => 'Personal data modified successfully',
-    'passwordModifiedSuccessfully' => 'Password modified successfully',
-    'theFunctionIsNotAvailable' => 'The function is not available',
-    'inactiveUser' => 'Inactive user. Please contact customer service.',
-    'checkPerformance' => 'Please contact customer service to check performance.',
-    'checkPerformanceOfUpgradedMember' => 'Please contact the customer service personnel to check the performance of upgraded members',
-    'memberNumberExpired' => 'Member number expired',
-    'memberNumberDoesNotConformTo' => 'Member number does not conform to',
-    'failedToGenerateMemberNumber' => 'Failed to generate member number',
-    'memberNumberDoesNotExist' => 'Member number does not exist',
-    'repeatSalesMemberNoDoesNotExist' => 'Repeat sales Member No. does not exist',
-    'memberDoesNotExist' => 'Member does not exist',
-    'memberDoesNotInSamePlacementNetwork' => 'The member is not in the same placement network as the current user',
-    'viewSubMembersMost' => 'View the top 20 sub members of the member at most',
-    'upgradeMethodIncorrect' => 'The upgrade method is incorrect. Please contact the customer service personnel',
-
-    'originalLoginPasswordError' => 'Original login password error',
-    'originalPaymentPasswordError' => 'Original payment password error',
-    'userNameNotExists' => 'Nonexistent user name',
-    'pleaseSelectUpgradeLevel' => 'Please select upgrade level',
-    'totalPVLessThan' => 'Total PV cannot be less than the selected level PV',
-    'totalPvExceedPv' => 'The total PV cannot exceed the PV value of the next level under the selected level',
-    'deliveryTemporarilyNotSupported' => 'Delivery is temporarily not supported in the region. Contact customer service for details',
-    'applicantCashShort' => 'The applicant is short of cash and cannot complete the declaration',
-    'failedToUpgrade' => 'Failed to upgrade for member',
-    'bulkDeclarationNotSames' => 'Bulk declaration member must be the same member',
-    'reportFormatIncorrect' => 'The format of the report data is incorrect',
-    'memberNumberCanNotContainChineseCharacters' => 'Member number cannot contain Chinese characters',
-    'pleaseSelectTheEntryLevel' => 'Please select the entry level',
-    'totalBVCanNotLessThanSelectedBV' => 'Please choose the correct Entry Level.',
-    'totalBVCanNotLessThanNextSelectedLevelBV' => 'Please choose the correct Entry Level.',
-    'incorrectEntryType' => 'Incorrect entry type',
-    'MembershipNumberFilledInitialPurchase' => 'Membership number must be filled in for initial purchase',
-    'fillTheInstructorNumberTheMember' => 'For the first purchase, you must fill in the instructor number of the member',
-    'sponsorNumberMustBeFilled' => 'For the first purchase, the Sponsor number of the member must be filled in',
-    'beFilledTheMarketMember' => 'The first purchase must be filled in the market of the member',
-    'pleaseSelectMarket' => 'Please select a market',
-    'stockistDoesNotExist' => 'Stockist does not exist',
-    'newMemberDoesNotExist' => 'New member does not exist',
-    'brandAmbassadorUpgradeError' => 'Brand Ambassador upgrade error',
-    'changeUserStatusError' => 'change user status error',
-    'dataFormatError' => 'Data format error',
-    'decUserNameDoesNotExist' => '请输入报单中心编号',
-    'decUserNameIsWrong' => '报单中心编号输入错误',
-
-
-
-    # 奖金
-    'memberBonus' => 'Member Bonus',
-    'memberEcoin' => 'Member Ecoin',
-    'carPoints' => 'Car Points',
-    'villaPoints' => 'Villa Points',
-    'increase' => 'increase',
-    'reduce' => 'reduce',
-    'cannotViewThisPeriod' => 'Cannot view this period',
-    'bonusRecordDoesNotExists' => 'The bonus record does not exists of this period',
-    'pleaseSelectThePeriod' => 'Please select the period',
-    'withdrawalApplicationHasBeenSubmitted' => 'Withdrawal application has been submitted, please wait for review.',
-    'withdrawHasBeenBacked' => 'Withdraw has been backed',
-    'withdrawDoesNotAllowedOfAuthentication' => '未实名验证无法提现',
-    'withdrawDoesNotAllowedOfSubsidiaryMember' => '附属会员无法提现',
-    'autoWithdrawHasBeenOpened' => '已开启自动提现,如需手动提现请关闭自动提现',
-    'withdrawNotAllowOfDate' => '未到提现日期,请在每月挂网后第一周申请提现',
-    'withdrawAllowOnceOfMonth' => '提现失败,每月只可以提现一次',
-    'withdrawRecordHasNotVerify' => '提现失败,您存在未审核的提现记录',
-    'notionalPoolingAmountFinished' => '归集完成,归集金额',
-    'withdrawDoesNotUploadInvoice' => '该提现记录无法上传发票',
-    'transferDoesNotAllowedOfAuthentication' => '未实名验证无法转账',
-    'transferDoesNotAllowed' => '不允许转账',
-    'transferDoesNotOpen' => '转账功能未启用',
-    'transferTypeDoesNotExists' => '没有可用的转账类型',
-    'rechargeApplicationHasBeenSubmitted' => 'Recharge application has been submitted, please wait for review.',
-
-    # 设置
-    'autoWithdrawHasBeenClosed' => '开启关闭自动提现成功',
-    'closeMessageSendSuccessfully' => '开启关闭复销短信提醒成功',
-    'changeDefaultAddressFailed' => '更新默认地址失败',
-    'addShippingAddressSuccessfully' => '添加收货地址成功',
-    'updateUserConfigFailed' => '更新个人设置失败',
-    'isAutoWithdraw' => '是否自动提现',
-    'allowReconsumeSms' => '开启复销短信通知',
-    'pleaseAuthentication' => '请先实名认证',
-    'systemCloseAutoWithdraw' => '系统关闭了自动提现',
-    'systemCloseReconsumeSMSNotification' => '系统关闭了开启复销短信通知',
-    'openAutoWithdraw' => '开启关闭自动提现',
-    'updateUserSMSExpiredFailed' => '更新个人短信有效期失败',
-    'modeDoesNotExist' => '不存在此方式',
-    'currencyDoesNotExist' => '未设置汇率',
-    'countryDoesNotSelect' => '未选择国家',
-    'transferMemberDoesNotSame' => '转账会员非本国会员',
-
-    # 首页
-    'pcOf' => 'PC of ',
-
-    # 财务
-    'statueError' => 'Status error',
-    'notAllowedToTransferToYourself' => 'Not allowed to transfer to yourself',
-    'wrongTransactionType' => 'Wrong transaction type',
-    'isCanWithdrawBack' => '提现退回已关闭',
-    'withdrawRecordDoesNotExist' => '符合退回的提现记录不存在',
-
-
-    # 登录
-    'refreshTokenFailed' => 'refresh token failed',
-    'passwordChangeSucceeded' => 'Password change succeeded',
-    'accountDoesNotExist' => 'The account does not exist',
-    'memberNameOrPasswordIncorrect' => 'The member name or password is incorrect',
-    'abnormalMemberCode' => 'Abnormal member code',
-    'memberNotActivated' => 'Member not activated',
-    'memberHasBeenCancelled' => 'The member has been cancelled',
-    'memberHasBeenBlacklisted' => 'The member has been blacklisted',
-    'memberHasBeenPermanentlySuspended' => 'The member has been permanently suspended',
-    'memberPartOfFunctionClosed' => 'Member part of the function is closed, unable to log in.',
-    'memberAppDeviceInformationUpdateFailed' => 'Member APP device information update failed',
-
-    # 文章
-    'category' => 'Category',
-    'title' => 'Title',
-    'content' => 'Content',
-    'articleDoesNotExist' => 'The article does not exist',
-
-    # 公用
-    'notConnection' => 'Connection not operated for too long',
-    'deleteFailed' => 'failed to delete',
-    'deleteSuccessfully' => 'delete successfully',
-    'quickLoginCanNotOperate' => '快速登录的会员无法进行任何操作',
-    'selectAtLeastOne' => '必须选择一条数据',
-    'failed' => 'Failed',
-    'successfully' => 'Successfully',
-    'createAt' => 'Creation Time',
-    'status' => 'Status',
-    'state' => 'State',
-    'sort' => 'Sort',
-    'illegalRequest' => 'Illegal request',
-    'invalidParameter' => 'Invalid Parameter',
-    'dataDoesNotExists' => 'The data does not exist',
-
-
-];

+ 0 - 904
common/messages/fr-FR/ctx.php

@@ -1,904 +0,0 @@
-<?php
-return [
-    #Admin
-    'AdminAddedSuccessfully' => 'Administrator added successfully',
-    'AdminEditedSuccessfully' => 'Administrator edited successfully',
-    'passwordChangeSucceeded' => 'Password change succeeded',
-    'successAddAdminRole' => 'Admin role added successfully',
-    'editAdminRoleSuccess' => 'Edit admin role successfully',
-    'roleDoesNotExist' => 'Role does not exist',
-    'successSetAdminRolePermissions' => 'Set administrator role permissions successfully',
-    'successSetAdminRoleListFieldPermissions' => 'Set administrator role list field permissions successfully',
-    'adminUnderSelectedRoleCannotDeleted' => 'Administrators under the selected role cannot be deleted',
-    'twoPasswordsMustSame' => 'The two passwords must be the same',
-    'memberNameDoesNotExist' => 'The member name does not exist',
-    'loginPasswordHasNotChanged' => 'The login password has not changed',
-    'oldLoginPasswordIncorrect' => 'The old login password is incorrect',
-    'submissionDoesNotExist' => 'The submission does not exist',
-    'passwordLeastEightCharacters' => 'The password must contain at least eight characters',
-    'passwordRule' => 'The password must contain at least two types of digits, capital letters, small letters and special characters',
-    'unableToDeleteOneSelf' => "Can't delete yourself",
-    'resetPwdSucessNotice' => 'Password reset successfully',
-
-    #Finance
-    'commonModelsWithdrawStatusNameStatusApplied' => 'Applied',
-    'commonModelsWithdrawStatusNameStatusAudited' => 'Withdrawal has been reviewed',
-    'commonModelsWithdrawStatusNameStatusWaitPaid' => 'Unpaid',
-    'commonModelsWithdrawStatusNameStatusPaidFalse' => 'Failed',
-    'commonModelsWithdrawStatusNameStatusRefused' => 'Refused',
-    'commonModelsWithdrawStatusNameStatusPaid' => 'Withdrawal has been paid',
-    'commonModelsWithdrawStatusNameStatusReturned' => 'Returned',
-    'backendApiControllersFinaceRechargeStatusApprove' => 'Approve',
-    'backendApiControllersFinaceRechargeStatusReject' => 'Reject',
-    'modelListFinanceBalanceAuditListUserName' => 'Member Code',
-    'modelListFinanceBalanceAuditListRealName'=>'Member Name',
-    'modelListFinanceBalanceAuditListMemberLevel'=> 'Member level',
-    'modelListFinanceBalanceAuditListStockistLevel'=> 'Stockist level',
-    'modelListFinanceBalanceAuditListEmpLevel'=>'Rank',
-    'modelListFinanceBalanceAuditListTypeName'=>'Account type',
-    'modelListFinanceBalanceAuditListDealType'=>'Transaction type',
-    'modelListFinanceBalanceAuditListAmount'=>'Adjustment amount',
-    'modelListFinanceBalanceAuditListRemark'=>'Remark',
-    'modelListFinanceBalanceAuditListRemarkIsShow'=>'Whether The Front Desk Displays Comments',
-    'modelListFinanceBalanceAuditListAuditStatusName'=>'Audit status',
-    'modelListFinanceBalanceAuditListApplicant'=>'applicant',
-    'modelListFinanceBalanceAuditListCreatedAt'=>'Application time',
-    'modelListFinanceBalanceAuditListAuditName'=>'Reviewed by',
-    'modelListFinanceBalanceAuditListAuditTime'=>'Audit time',
-    'modelListFinanceTranserListTransferSn'=>'Transfer record serial number',
-    'modelListFinanceTranserListLastOutUserName'=>'Transfer out Member No',
-    'modelListFinanceTranserListLastOutRealName'=>'Name of transfer out member',
-    'modelListFinanceTranserListLastOutDecLvName'=>'Transfer out of member level',
-    'modelListFinanceTranserListOutWallet'=>'Transfer out account',
-    'modelListFinanceTranserListLastInUserName'=>'Transfer to member code',
-    'modelListFinanceTranserListLastInRealName'=> 'Transfer to member name',
-    'modelListFinanceTranserListLastInDecLvName'=>'Transfer to member level',
-    'modelListFinanceTranserListInWallet'=>'Transfer account',
-    'modelListFinanceTranserListOriAmount'=>'Transfer amount',
-    'modelListFinanceTranserListFee'=>'Service charge',
-    'modelListFinanceTranserListAmount'=>'Actual transfer amount',
-    'modelListFinanceTranserListCreatedAt'=>'Transfer time',
-    'modelListFinanceTranserListPeriodNum'=>'Transfer PC',
-    'financeControllerTransferListExport'=>'Transfer_List',
-    'modelListFinanceWithdrawSn'=>'Withdrawal serial number',
-    'modelListFinanceWithdrawPeriod'=>'Period',
-    'modelListFinanceWithdrawAt'=>'Withdrawal time',
-    'modelListFinanceWithdrawState'=>'State',
-    'modelListFinanceWithdrawAmount'=>'Withdrawal amount',
-    'modelListFinanceWithdrawFees' => 'Bank charge',
-    'modelListFinanceWithdrawRealAmount' => 'Actual amount',
-    'modelListFinanceWithdrawBank' => 'Bank info',
-    'modelListFinanceWithdrawBankNo' => 'Bank account',
-    'modelListFinanceWithdrawMobile' => 'Phone Number',
-    'modelListFinanceWithdrawUpdateAdminName' => 'Operations administrator',
-    'modelListFinanceWithdrawBackRemark' => 'Return note',
-    'modelListFinanceWithdrawWithdrawalTime'=>'Withdrawal time',
-    'modelsListsFinanceRechargeListgetColumnSn' => 'SN',
-    'modelsListsFinanceRechargeListgetColumnBank' => 'Bank',
-    'modelsListsFinanceRechargeListgetColumnBankNo' => 'Bank account',
-    'modelsListsFinanceRechargeListgetColumnAuditStatus' => 'Audit Status',
-    'modelsListsFinanceRechargeListgetColumnAmount' => 'Recharge amount',
-    'modelsListsFinanceRechargeListgetColumnCreatedAt' => 'Apply time',
-    'modelsListsFinanceRechargeListgetColumnRemark' => 'Remark',
-    'rechargeRecordSerialNumber'=>'Recharge record serial number',
-    'rechargeAuditStatusToBeReviewed'=>'To be reviewed',
-    'rechargeAuditStatusVoucherUploaded'=>'Voucher uploaded',
-    'rechargeAuditStatusAudited'=>'Audited',
-    'rechargeRechargeState'=>'Recharge State',
-    'rechargeRechargeStateNew'=>'New',
-    'rechargeRechargeStateProcessing'=>'Processing',
-    'rechargeRechargeStateSuccess'=>'Success',
-    'shopOrderListUndelivered' => 'Undelivered',
-    'shopOrderListDelivered'=>'Delivered',
-    'shopOrderListConfirmReceipt' => 'Confirm receipt',
-    'shopOrderListGetOrderStatusUnpaid' => 'Unpaid',
-    'shopOrderListGetOrderStatusPaid' => 'Paid',
-    'shopOrderListGetOrderStatusLogisticsStatus' => 'Logistics status',
-    'shopOrderListGetOrderStatusOrderCompletion' => 'Order completion',
-    'shopOrderListGetOrderStatusOrderCancellation' => 'Order cancellation',
-    'shopOrderListGetOrderStatusOrderDeletion' => 'Order deletion',
-    'shopOrderListGetOrderStatusOrderDeletionOrderRefund' => 'Order refund',
-    'shopOrderListGetOrderStatusPaymentFailed' => 'Payment failed',
-    'balanceAuditListGetBalanceAuditType' => 'Member bonus account',
-    'balanceAuditListCash' => 'Member Ecoin account',
-    'balanceAuditListGaragePoints' => 'Car points',
-    'balanceAuditListVillaPoints' => 'Villa points',
-    'financeRechargeListStatusTobeReviewed' => 'To be reviewed',
-    'financeRechargeListStatusApproved' => 'Approved',
-    'financeRechargeListStatusVoucherUploaded' => 'Voucher uploaded',
-    'financeRechargeListStatusRejected' => 'Rejected',
-    'rechargeStatusTitle:0' => 'To be reviewed',
-    'rechargeStatusTitle:1' => 'Voucher uploaded',
-    'rechargeStatusTitle:2' => 'Approved',
-    'rechargeStatusTitle:3' => 'Rejected',
-    'rechargeStatus:0' => 'NEW',
-    'rechargeStatus:1' => 'PROCESSING',
-    'rechargeStatus:2' => 'SUCCESS',
-    'rechargeStatus:3' => 'FAILED',
-
-    'memberEcoinAdjustmentListFileName'=> 'Member_Ecoin_adjustment_list',
-    'applicationChangeBalanceSucceeded'=> 'Application for change of member balance succeeded',
-    'applicationCannotReviewedAgain'=> 'The application has been reviewed and cannot be reviewed again',
-    'idNotMatchName'=>'Member code does not match member name',
-    'incorrectBalanceType'=>'Incorrect balance type',
-    'incorrectTransactionType'=>'Incorrect transaction type',
-    'adjustmentAmountCannotZero'=>'The adjustment amount cannot be 0',
-    'pointsEnoughAdjustmentNotAllowed' => "Insufficient balance of member's repurchase points, adjustment is not allowed",
-    'cannotSetPendingReview' => 'Cannot be set to pending review',
-    'auditCannotRepeated' => 'The audit has been approved and cannot be repeated',
-    'rejectedAuditCannotRepeated'=> 'It has been reviewed and rejected and cannot be reviewed again',
-    'statusParameterError' => 'Wrong state parameter',
-    'adjustmentBalanceCodeFailed' => 'Balance adjustment verification code failed',
-    'aPieceMustBeSelected' => 'A piece of data must be selected',
-    'noEligibleData' => 'No matching data',
-    'modificationAdjustmentMemberBalanceCompleted'=>'Modification and adjustment of member balance entry data completed',
-    'reviewThroughMemberBalance'=>'The review is done through the member balance',
-    'batchAuditMemberBalanceCompleted'=>'Batch audit/audit reject member balance completed',
-    'addedMemberSuccessfullyWithdrewCash' => 'The newly added member successfully withdrew cash',
-    'withdrawalInformationModifiedSuccessfully'=>'The withdrawal information is modified successfully',
-    'withdrawalApplyDoesNotExist'=>'Withdrawal request does not exist',
-    'memberNameOrNumberInconsistentSystem' => 'Withdrawal member code does not match member ID',
-    'memberRegisterTypeInconsistentWithSystem'=>'The selected member registration type is inconsistent with the system',
-    'withdrawalMustGreaterThanZero'=>'Withdrawal amount must be greater than 0',
-    'withdrawalAmountMustInteger' => 'Withdrawal amount must be an integer',
-    'withdrawalAmountCannotLessThan' => 'The withdrawal amount cannot be less than',
-    'WithdrawalAmountCannotHigherThan' => 'Withdrawal amount cannot be higher than',
-    'withdrawalAmountMustLessThanAvailableBalance' => 'The withdrawal amount must be less than the available balance',
-    'paymentPasswordIncorrect' => 'The payment password is incorrect',
-    'failedApplyWithdrawalVerify' => 'Application for cash withdrawal verification failed',
-    'withdrawalAuditVerificationFailed' => 'Withdrawal audit verification failed',
-    'cannotSelectDateInThePast'=>'Cannot select a date in the past',
-    'statusSettingSucceeded' => 'Status setting succeeded',
-    'exportWithdrawApplyExcelName' => 'Withdraw_Apply',
-    'invoiceEnteredSuccessfully' => 'Invoice entered successfully',
-    'modifyInvoiceEntryCompleted' => 'Modify invoice entry data completion',
-    'reviewInvoiceDataCompleted' => 'Review invoice data completed',
-    'memberPerformanceAdjustmentList' => 'Member Performance Adjustment List',
-    'applicationAdjustMemberPerfSuccess' => 'The application to adjust the member performance was successful',
-    'nextPeriodConnectedNetCannotAdjusted' => 'The next period [ {periodNum} ] has been connected to the net, and this period cannot be adjusted',
-    'passReviewAdjustPerfSuccess' => "Auditing success by adjusting member performance",
-    'batchReviewMemberPerfCompletion' => 'Batch review/rejection of member performance completion',
-    'transactionTypeAddSuccess'=> 'Transaction type added successfully',
-    'modifyTransactionTypeCompleted' => 'Modify the transaction type to complete',
-    'unableDelete' => 'Cannot be deleted',
-    'pendingRecordAfterThePendingReviewed' => 'If there is a pending record in the member review list, it shall be submitted after the pending record has been reviewed',
-    'periodNotNetCannotAdjusted' => 'This period [ {periodNum} ] is not connected to the net and cannot be adjusted',
-    'adjustmentTypeIncorrect' => 'The adjustment type is incorrect',
-    'incorrectLocation' => 'Incorrect location',
-    'amountChangeCannotZero' => 'The amount of change cannot be 0',
-    'memberUnderrepresentedRegion' => 'The member is underrepresented in that region',
-    'memberSurplusRegionLess' => 'The member has insufficient surplus in the region for the current period',
-    'withdrawFormNoSn' => "There is no paid record of withdrawals serial number {sn}",
-    'withdrawFormUserNameInconsistent'=>'The serial number of the withdrawal in Excel. {excelName} is inconsistent with information in the system {userName}',
-    'withdrawFormRealNameInconsistent' => "The serial number of the withdrawal in Excel. {sn}, member's name  {excelName}, is inconsistent with information in the system {realName}",
-    'withdrawFormPeriodsInconsistent' => "Excel withdrawal serial number {sn} withdrawal periods {withdrawPeriodNum}, is inconsistent with the information in the system【 {systemWithdrawPeriodNum} 】",
-    'withdrawFormPaidAtInconsistent' => "Payment date of the withdrawal serial number in Excel {sn} {paidAt} is inconsistent with system information {systemPaidAt}",
-    'withdrawFormAmountInconsistent' => "Withdrawal amount of the withdrawal serial number in Excel {sn} {execlAmount} is inconsistent with the information in the system {systemAmount}",
-    'withdrawFormBankRealNameInconsistent' => "Real-time account name of the withdrawal serial number in Excel {sn} {execlBankRealName}, is inconsistent with the information in the system  {systemName}  Inconsistent ",
-    'withdrawFormBankNoInconsistent' => "Real-time bank account of the withdrawal serial number in Excel {excelBankNo} {sn}  is inconsistent with information in system {systemBankNo}",
-    'withdrawFormNoExistsUser'=>'This user does not exist',
-    'withdrawChkAuditStatus' => "The current status of the withdrawal  {sn}  is 【 {statusName} 】, cannot be set to【 {newStatusName}】",
-
-    # Internet function
-    'numberOfLayers' => 'Number Of Layers',
-    'recommendedMemberNo'=>'Sponsor Member No',
-    'nameRecommendedMember'=>'Name Of Sponsor Member',
-    'recommendedMemberLevel' => 'Sponsor Member Level',
-    'highestDirector' => 'Highest Director',
-    'highestCrown' => 'Highest Crown',
-    "joiningPeriod" => 'Joining Period',
-    'modelListAtlasUserName' => 'Member Code',
-    'modelListAtlasDepth' => 'Depth',
-    'numberOfPeriods' => 'Number Of Periods',
-    'atlasViewLimitNotice'=>'Top 23 sub members of members can be viewed at most',
-    'atlasNetworkViewLimitNotice'=>'View the top 20 sub members of the member at most',
-    'placementMemberNumber'=>'Placement Member Number',
-    'placementMemberName' => 'Placement Member Name',
-
-    #Products management
-    'shopListProductName' => 'Product Name',
-    'shopListProductsCode' => 'Products Code',
-    'shopListDiscountRate' => 'Discount Rate',
-    'shopListProductsType' => 'Products Type',
-    'shopListProductCategory' => 'Product Category',
-    'shopListPaymentMode' => 'Payment Mode',
-    'shopListPriceStandard' => 'US Price($)',
-    'shopListSellPrice' => 'Sales Price(₦)',
-    'shopListProductsBv' => 'Products BV',
-    'shopListTaxRate' => 'Tax Rate(%)',
-    'shopListTax' => 'Tax(₦)',
-    'shopListInventory' => 'Inventory',
-    'shopListStatus' => 'Status',
-    'shopListOnSale' => 'On sale',
-    'shopListSoldOut' => 'Sold out',
-    'shopListUpdatedAt' => 'Update Time',
-    'shopListEntryArea' => 'Office Entry area',
-    'shopListResellingArea' => 'Office Reselling area',
-    'shopList1stPurchase' => '1st Purchase',
-    'shopListRepeatPurchase' => 'Repeat Purchase',
-
-    'shopListStandardProducts' => 'Standard Products',
-    'shopListCarFundProducts' => 'Car Fund Products',
-    'shopListVillaFundProducts' => 'Villa Fund Products',
-    'shopListAccountBalance' => 'Account Balance',
-    'shopListPayTravelBonus' => 'Travel Bonus',
-    'shopListPayCarFund' => 'Car Fund',
-    'shopListPayVillaFund' => 'Villa Fund',
-    'shopListPayStack' => 'PayStack',
-    'shopGoodTypeDomestic' => '国内商品',
-    'shopGoodTypeImport' => '国内商品',
-    'beforeAdjustmentPcNo' => 'Before adjust Pc No.',
-    'afterAdjustmentPcNo' => 'After adjust Pc No.',
-
-    'shopExportListName' => 'Goods_List',
-    'shopProductAddSucceededNotice' => 'Product add succeeded',
-    'shopProductEditSucceed'=>'Product editing succeeded',
-    'shopStatusSetSucceedNotice' => 'Status setting succeeded',
-    'shopDelOrderSuccedNotice'=>'The order is deleted successfully, please regenerate the performance sheet and calculate the bonus',
-    'shopDecOrderListExport' => 'First purchase order list',
-    'shopOrderListExport' => 'Order_List',
-    'shopStatusUpdateErrorNotice'=>'Status update error',
-    'shopOrderListExportPdf'=>'Order list',
-    'shopadminRefund'=>'Refund successfully',
-    'shopBaOrderListExport' => 'Ba_Order_List',
-    'shopBrandAmbassadorOrderExport'=>'Brand Ambassador Order',
-    'shopSetProductStatusErrorNotice'=>'The current product status is【{nowStatus}】,cannot be set to【{newStatus}】',
-    'shopPayTypeCash' => 'Ecoin',
-    'shopPayTypeGaragePoints' => 'Car Fund',
-    'shopPayTypeVillaFund' => 'Villa Fund',
-    'shopBuyActionErrorNotice'=>'The wrong way to buy the product',
-    'shopSortMoreThanOne'=>'Please fill in numbers greater than or equal to 1 for sorting',
-    'shopDiscountZeroBetweenOne'=>'Please fill in the number between 0-1 for the discount',
-    'shopDeleteDecOrderAndOrderFailedNotice'=>'Failed to delete first purchase order, failed to delete order',
-    'shopBackOrderFailedNotice'=>'Failed to roll back membership level, failed to delete order',
-    'shopLockFailedDeleteOrderFailed'=>'Failed to lock member, failed to delete order',
-    'shopDeleteOrderFailed' => 'Failed to delete order',
-    'shopBackAmountFailedDeleteOrderFailed'=>'Failed to refund the order amount, failed to delete the order',
-    'shopNotFindOrder' => 'Order information not found, the order number is:',
-    'shopOrderAlreadyDeleted'=> 'The order has been deleted, the order number is:',
-    'shopOrderPeriodNumNotExist'=>'The performance period corresponding to the order does not exist, and the order number is {sn} Performance period is:{periodNum}',
-    'shopOrderPeriodNumIsSented'=>'The order corresponding to the performance period has been posted online, and the order number is {sn} Performance period is:{periodNum}',
-    'shopOrderPeriodNumSenting'=>'The performance period corresponding to the order is being linked online,the order number is{sn} Performance period is:{periodNum}',
-    'shopNotFindDecOrder' => 'The corresponding order information has not been obtained,the order number is:',
-    'shopDecAlreadyDeleted'=>'The corresponding order information has been deleted,the order number is:',
-    'shopHasLaterOrder' => 'There is a later order, this order cannot be deleted,the order number is:',
-    'shopRegisterHasUpgradeOrder' => 'There is an upgrade order for this registration form, which cannot be deleted,the order number is:',
-    'shopRegisterHasFxOrder'=>'There is a cancellation order for this registration form, which cannot be deleted,the order number is:',
-    'shopOrderListMemberCode' => 'Member Code',
-    'shopOrderListStockist'=>'Stockist',
-    'shopOrderListCreatorNo'=>'Creator No',
-    'shopOrderListCreatorName'=>'Creator Name',
-    'shopOrderListOrderCode'=>'Order Code',
-    'shopOrderListOrderStatus'=>'Status',
-    'shopOrderListProductCode' => 'Product Code',
-    'shopOrderListProductName'=>'Product Name',
-    'shopOrderListRecipient' => 'Recipient',
-    'shopOrderListContactOne' => 'Contact 1',
-    'shopOrderListContactTwo' => 'Contact 2',
-    'shopOrderListState'=>'State',
-    'shopOrderListLocalGovernmentArea' => 'Local Government Area',
-    'shopOrderListCity'=>'City',
-    'shopOrderListDetailedAddress'=>'Detailed Address',
-    'shopOrderDeliveryWarehouse' => 'Delivery Warehouse',
-    'shopOrderListPeriod' => 'Period',
-    'shopOrderListOrderType' => 'Order Type',
-    'shopOrderListOrderTypeRepeatPurchase'=>'Repeat Purchase',
-    'shopOrderListOrderTypePoints'=>'Points',
-    'shopOrderListOrderTypeRepeatPurchaseOrder' => 'Repurchase order',
-    'shopOrderListOrderTypePointsOrder' => 'Point order',
-    'shopOrderListOrderTypeZc'=>'Welcome Pack',
-    'shopOrderListOrderTypeFx'=>'Repeat Purchase',
-    'shopOrderListCreationTime' => 'Creation Time',
-    'shopOrderListPayType' => 'Pay Type',
-    'shopOrderListPaymentTime'=>'Payment Time',
-    'shopOrderListDeliveryTime'=>'Delivery Time',
-    'shopOrderListQty' => 'Qty',
-    'shopOrderListItemPricing'=>'Item Pricing',
-    'shopOrderListTotalPrice' => 'Total Price',
-    'shopOrderListBVAmount'=>'BV Amount',
-    'shopOrderListUsTotalPrice'=>'Total Price($)',
-    'shopOrderListFreight' => 'Freight',
-    'shopOrderListTaxRate'=>'Tax Rate',
-    'shopOrderListTax' => 'Tax',
-    'shopOrderListCourierCompany' => 'Courier Services Company',
-    'shopOrderListCourierNumber' => 'Courier Number',
-    'shopOrderListShippingMethod' => 'Shipping Method',
-    'shopOrderListShippingMethodMailing' => 'Mailing',
-    'shopOrderListShippingMethodAutoPick' => 'Auto pick',
-    'shopOrderListMemberNotes' => 'Member Notes',
-    'shopOrderListShipmentStatus' => 'Shipment Status',
-    'shopOrderListIsAuto' => 'Is Auto',
-    'shopOrderListIsAutoYes' => 'Yes',
-    'shopOrderListIsAutoNo' => 'No',
-    'shopOrderListOrderNo' => 'Order No',
-    'shopOrderPaymentAmount' => 'Payment Amount',
-    'shopOrderPayBV' => 'Pay BV',
-    'total' => 'Total',
-    'date' => 'Date',
-    'orderCode' => 'Order Code',
-    'orderDetail' => 'Order Detail',
-    'productCode' => 'Product Code',
-    'productName' => 'Product Name',
-    'productPrice' => 'Product Price',
-    'qty' => 'Qty',
-    'taxRate' => 'Tax Rate',
-    'totalTax' => 'Total Tax',
-    'totalAmount' => 'Total Amount',
-    'signature' => 'Signature',
-    'orderNotExist' => 'order does not exist',
-    'orderHasBeenConnected' => 'The order has been connected to the net, and this period cannot be adjusted',
-    'invalidPcNo' => 'Invalid Pc No.',
-
-    #Log
-    'adminUserDoesNotExist'  => 'Administrator does not exist',
-    'adminUserGroupDoesNotExist'  => 'Management group does not exist',
-    'columnArrayMustExistHeader'  => 'The header must exist in the column array',
-    'operatingType'  => 'Operation Type',
-    'operatingObject'  => 'Operation object',
-    'objectNumber'  => 'Object number',
-    'requestContent'  => 'Request content',
-    'returnContent'  => 'Return content',
-    'operator'  => 'Operator',
-    'operatingTime'  => 'Operation Time',
-    'numberOfPhases'  => 'Number Of Periods',
-    'IPAddress'  => 'IP Address',
-    'client'  => 'Client',
-    'operatingSystem'  => 'Operating System',
-    'requestPath'  => 'Request Path',
-    'operationObjectNumber'  => 'Operation Object No',
-    'remarks'  => 'Remark',
-    'returnResult'  => 'Return content',
-    'successTimes'  => 'Successful login times',
-    'failTimes'  => 'Failed logins times',
-    'loginSuccess'  => 'login successfully',
-    'loginFail'  => 'Login failed',
-    'adminLoginLog'  => 'Admin login log',
-    'userLoginLog'  => 'Member login log',
-    'version'  => 'Version number',
-    'adminOperatingLog'  => 'Administrator operation log',
-    'updateNumberOfPhasesConfig'  => 'Update period configuration',
-    'updateLevelBonusConfig'  => 'Update level bonus configuration',
-    'updateBonusConfig'  => 'Update bonus configuration',
-    'updateRankBonusConfig'  => 'Update rank bonus configuration',
-    'updateTransferConfig'  => 'Update transfer configuration',
-    'requestChangeUserBalance'  => 'Apply for change of membership balance',
-    'checkUserBalance'  => 'Review member balance',
-    'batchRequestChangeUserBalance'  => 'Batch application to change member balance',
-    'blankEntry'  => 'Empty order entry',
-    'delBlankUser'  => 'Delete empty order member',
-    'changeUserLevel'  => 'Modify Member Level',
-    'applyAdjustmentUserPerformance'  => 'Apply for Adjustment of Member Performance',
-    'applyModifyUserStatus'  => 'Apply to modify member status',
-    'setTeamLeaders'  => 'Set up team leaders',
-    'checkUserStatus'  => 'Review member status',
-    'displayMap'  => 'Show map',
-    'hiddenMap'  => 'Hide map',
-    'setDeclarationCenter'  => 'Set up stockist',
-    'cancelDeclarationCenter'  => 'Cancel stockist',
-    'userActivation'  => 'Member activation',
-    'userLocking'  => 'Member lock',
-    'modifyUserInfo'  => 'Modify member information',
-    'editAdmin'  => 'Edit administrator',
-    'applyRemoveNetwork'  => 'Apply for mobile network',
-    'approveRemoveNetwork'  => 'Approved by mobile network',
-    'resetPasswords'  => 'Reset password',
-    'cancellationSystem'  => 'Revocation system',
-    'addSystem'  => 'Add system',
-    'editSystem'  => 'Edit system',
-    'recoverySystem'  => 'Recovery system',
-    'systemLog'  => 'System log',
-    'shopOrderPeriodAdjust' => 'Order Period Adjust',
-    'memberHighestEmpLvAdjust' => 'Member Highest Director Adjustment',
-    'call'  => 'Transfer',
-    'beCcalled'  => 'called',
-    'userOperatingLog'  => 'Member operation log',
-    'enableDisableAutomaticWithdrawal'  => 'Enable / Disable Automatic Withdrawal',
-    'enableDisableReSalesSMSReminder'  => 'Enable / Disable Re Sales SMS Reminder',
-    'memberTransfer'  => 'Member Transfer',
-    'memberWithdrawalApplication'  => 'Member Withdrawal Application',
-    'memberModificationInformation'  => 'Member Modification Information',
-    'modifyMasterPoint'  => 'Modify Master Point',
-    'periodNumber' => 'Period Number',
-    'serialNumber' => 'Serial Number',
-    'rank'  => 'Rank',
-    'adjustMemberHighestDirector' => 'Adjust Highest Director',
-
-    #Ad
-    'AdAddedSuccessfully' => 'Ad added successfully',
-    'EditAdSuccessfully' => 'Ad edited successfully',
-
-    #Article
-    'articleNotExists'  => 'Article does not exist',
-
-    #File
-    'mallManagement'    => 'Mall Management',
-    'memberManagement'  => 'Member Management',
-    'networkChart' => 'Network Chart',
-    'resaleManagement' => 'Resale management',
-    'bonusManagement' => 'Bonus management',
-    'financialManagement' => 'financial management',
-
-    # Public
-    'amountUnit' => '₦',
-    'sceneDoesNotExist' => 'Scene does not exist',
-    'memberDoesNotExist' => 'Member does not exist',
-    'countryDoesNotExist' => 'Country does not exist',
-    'mustSelectOneItemToDelete' => 'must select one item to delete',
-    'dataNotExists' => 'Data not exists',
-    'startExporting'=> 'Starting exporting, please go to File Management - Export Files to view.',
-    'incorrectDateFormat' => 'Incorrect date format',
-    'notConnection' => 'Connection not operated for too long',
-    'deleteFailed' => 'failed to delete',
-    'deleteSuccessfully' => 'delete successfully',
-    'quickLoginCanNotOperate' => 'Members who log in quickly cannot perform any operations',
-    'selectAtLeastOne' => 'A data must be selected',
-    'failed' => 'Failed',
-    'successfully' => 'Successfully',
-    'createAt' => 'Creation Time',
-    'status' => 'Status',
-    'state' => 'State',
-    'sort' => 'Sort',
-    'illegalRequest' => 'Illegal request',
-    'invalidParameter' => 'Invalid Parameter',
-    'dataDoesNotExists' => 'The data does not exist',
-    'operationAdministrator' => 'Operation Administrator',
-    'typeError' => 'Type error',
-    'contentError' => 'Content error',
-    'hideSuccessfully' => 'hide successfully',
-    'UnhideSuccessfully' => 'Unhide successfully',
-
-    # Member
-    'memberCode' => 'Member Code',
-    'memberName' => 'Member Name',
-    'memberAddress' => 'Member Address',
-    'memberPhone' => 'Member Phone',
-    'loginStatus' => 'Login Status',
-    'allowLogin' => 'Allow Login',
-    'prohibitLogin' => 'Prohibit Login',
-    'activate' => 'Activate',
-    'lock' => 'Lock',
-    'filterAllowLogin' => 'Filter Allow Login',
-    'bankName' => 'Bank Name',
-    'bankCode' => 'Bank Code',
-    'bankAccountNumber' => 'Bank Account Number',
-    'admin' => 'Admin',
-    'minCharge' => 'Min Charge',
-    'maxCharge' => 'Max Charge',
-    'chargeRate' => 'Charge Rate',
-    'updater' => 'Updater',
-    'userName' => 'USER_NAME',
-    'passwordHash' => 'PASSWORD_HASH',
-    'payPassword' => 'PAY_PASSWORD',
-    'nation' => 'NATION',
-    'realName' => 'REAL_NAME',
-    'IDCard' => 'ID_CARD',
-    'IDType' => 'ID_TYPE',
-    'mobile' => 'MOBILE',
-    'address' => 'ADDRESS',
-    'IDImage' => 'ID_IMAGE',
-    'openBank' => 'OPEN_BANK',
-    'bankAddress' => 'BANK_ADDRESS',
-    'bankNo' => 'BANK_NO',
-    'bankProvince' => 'BANK_PROVINCE',
-    'bankCity' => 'BANK_CITY',
-    'bankCounty' => 'BANK_COUNTY',
-    'spouseName' => 'SPOUSE_NAME',
-    'spouseIDCard' => 'SPOUSE_IDCARD',
-    'decClosed' => 'DEC_CLOSED',
-    'decClosedAt' => 'DEC_CLOSED_AT',
-    'decLv' => 'DEC_LV',
-    'empLv' => 'EMP_LV',
-    'crownLv' => 'CROWN_LV',
-    'province' => 'PROVINCE',
-    'city' => 'CITY',
-    'county' => 'COUNTY',
-    'tel' => 'TEL',
-    'subComID' => 'SUB_COM_ID',
-    'avatar' => 'AVATAR',
-    'isDec' => 'IS_DEC',
-    'isAtlas' => 'IS_ATLAS',
-    'isRecharge' => 'IS_RECHARGE',
-    'DEC_ID' => 'DEC_ID',
-    'birthday' => 'BIRTHDAY',
-    'decRoleID' => 'DEC_ROLE_ID',
-    'periodAt' => 'PERIOD_AT',
-    'decProvince' => 'DEC_PROVINCE',
-    'decCity' => 'DEC_CITY',
-    'decCounty' => 'DEC_COUNTY',
-    'isUnion' => 'IS_UNION',
-    'statusAt' => 'STATUS_AT',
-    'verified' => 'VERIFIED',
-    'verifiedAt' => 'VERIFIED_AT',
-    'notOperating' => 'NOT_OPERATING',
-    'regFrom' => 'REG_FROM',
-    'IDCardPrefix' => 'ID_CARD_PREFIX',
-    'sex' => 'SEX',
-    'decAccountOld' => 'DEC_ACCOUNT_OLD',
-    'bankUpdatedAt' => 'BANK_UPDATED_AT',
-    'isDirectSeller' => 'IS_DIRECT_SELLER',
-    'decLvUpdatedAt' => 'DEC_LV_UPDATED_AT',
-    'decLvUpdatedPeriod' => 'DEC_LV_UPDATED_PERIOD',
-    'decAddress' => 'DEC_ADDRESS',
-    'decPhone' => 'DEC_PHONE',
-    'guarantor' => 'GUARANTOR',
-    'guarantorName' => 'GUARANTOR_NAME',
-    'partFuncClosed' => 'PART_FUNC_CLOSED',
-    'lastDecLvUpdatedPeriod' => 'LAST_DEC_LV_UPDATED_PERIOD',
-    'userCreator' => 'USER_CREATOR',
-    'userUpdater' => 'USER_UPDATER',
-    'lastDecLvUpdatedAt' => 'LAST_DEC_LV_UPDATED_AT',
-    'decCreatedAt' => 'DEC_CREATED_AT',
-    'partFuncClosedRemark' => 'PART_FUNC_CLOSED_REMARK',
-    'decCreatedPeriod' => 'DEC_CREATED_PERIOD',
-    'passwordChanged' => 'PASSWORD_CHANGED',
-    'subComLeader' => 'SUB_COM_LEADER',
-    'zgUpgradePv' => 'ZG_UPGRADE_PV',
-    'appClientID' => 'APP_CLIENT_ID',
-    'readAgreement' => 'READ_AGREEMENT',
-    'lastDecLv' => 'LAST_DEC_LV',
-    'bonusAppClientID' => 'BONUS_APP_CLIENT_ID',
-    'isFirstOpen' => 'IS_FIRST_OPEN',
-    'isModifyPassword' => 'IS_MODIFY_PASSWORD',
-    'isStudio' => 'IS_STUDIO',
-    'email' => 'EMAIL',
-    'levelBeforeModification' => 'Level Before Modification',
-    'modifiedLevel' => 'Modified Level',
-    'country' => 'Country',
-    'beforeCountry' => '修改前国家',
-    'afterCountry' => '修改前国家',
-
-    'moveMember' => 'Move Member',
-    'moveMemberName' => 'Move Member Name',
-    'uperCodeBeforeMoving' => 'Uper Code Before Moving',
-    'uperCodeAfterMoving' => 'Uper Code After Moving',
-    'typeOfMoving' => 'Type Of Moving',
-    'position' => 'Position',
-    'periodOfMoving' => 'Period Of Moving',
-    'whetherToMove' => 'Whether To Move',
-    'percentage' => 'Percentage',
-    'AdministratorOfMoving' => 'Administrator Of Moving',
-    'joiningDate' => 'Joining Date',
-    'currentMemberLevel' => 'Current Member Level',
-    'currentAdjustmentDate' => 'Current Adjustment Date',
-    'PCMemberLevel' => 'PC Member Level',
-    'latestDirector' => 'Latest Director',
-    'latestCrown' => 'Highest Crown',
-    'recommendationNo' => 'Sponsor Code',
-    'recommendedName' => 'Sponsor Name',
-    'placementNo' => 'Placement No',
-    'placementName' => 'Placement Name',
-    'resettlementArea' => 'Resettlement Area',
-    'phoneNumber' => 'Phone Number',
-    'alternatePhoneNumber' => 'Alternate Phone Number',
-    'stockistCode' => 'Stockist Code',
-    'whetherStockist' => 'Whether Stockist',
-    'stockistOrNot' => 'Stockist or not',
-    'whetherChartDisplay' => 'Whether Chart Display',
-    'whetherRechargeDisplay' => 'Whether Recharge Display',
-    'stockistLevel' => 'Stockist Level',
-    'commonAddress' => 'Common Address',
-    'enableTransfer' => 'Enable Transfer',
-    'activeStatus' => 'Active Status',
-    'locking' => 'Locking',
-    'activation' => 'Activation',
-    'on' => 'On',
-    'off' => 'Off',
-    'administratorOfReviewing' => 'Administrator Of Reviewing',
-    'reviewTime' => 'Review Time',
-    'I.Market' => 'I. Market',
-    'II.Market' => 'II. Market',
-    'userMoveAuditStatus:0' => 'To be reviewed',
-    'userMoveAuditStatus:1' => 'Approved',
-    'userMoveAuditStatus:2' => 'Failed',
-    'userMoveAuditStatus:3' => 'Audit reject',
-    'levelNoChange' => '级别没有变化无需调整',
-    'studioOrNot' => 'Studio or not',
-
-    # Network
-    'placementNetwork' => 'Placement Network',
-    'sponsorNetwork' => 'Sponsor Network',
-
-
-    # Bonus
-    'memberBonus' => 'Member Bonus',
-    'memberEcoin' => 'Member Ecoin',
-    'travelIncentive' => 'Travel Incentive',
-    'carIncentive' => 'Car Incentive',
-    'villaIncentive' => 'Villa Incentive',
-    'requirePeriods' => 'Please enter Period No.',
-    'requireMemberNumber' => 'Please enter member code',
-    'payCycle' => 'Pay Cycle(PC)',
-    'sponsorNo' => 'Sponsor No',
-    'sponsorName' => 'Sponsor Name',
-    'superiorCode' => 'Superior Code',
-    'superiorName' => 'Superior Name',
-    'superiorNumber' => 'Superior Number',
-    'welcomeBonus' => 'Welcome Bonus',
-    'teamBonus' => 'Team Bonus',
-    'uncappedTeamBonus' => 'Uncapped Team Bonus',
-    'directorBonus' => 'Director Bonus',
-    'stockistCommission' => 'Stockist Commission',
-    'quarterlyBonus' => 'Quarterly Bonus',
-    'actualBonus' => 'Actual Bonus',
-    'totalBonus' => 'Total Bonus',
-    'totalRevenue' => 'Total Revenue',
-    'bonusMonth' => 'Bonus Month',
-    'oneNewMarketPerformance' => 'I. new market performance',
-    'twoNewMarketPerformance' => 'II. new market performance',
-    'oneMarketBalancePerformance' => 'I. market balance performance',
-    'twoMarketBalancePerformance' => 'II. market balance performance',
-    'managementAward' => 'Management Award',
-    'bonusDate' => 'Settlement Date',
-    'transactionType' => 'Transaction Type',
-    'memberLevel' => 'Member Level',
-    'balanceBeforeTransaction' => 'Balance Before Transaction',
-    'debitCredit' => 'Debit/Credit',
-    'newBalance' => 'New Balance',
-    'personalPerformance' => 'Personal Performance',
-    'remainderLeftLeg' => 'Remainder@Left Leg',
-    'remainderRightLeg' => 'Remainder@Right Leg',
-    'cumulativeTeamPerformance' => 'Cumulative Team Performance',
-    'salesNo' => 'Sales No',
-    'saleType' => 'Type',
-    'saleStatus' => 'Status',
-    'sponsorNoAtSettlement' => 'Sponsor No. At Settlement',
-    'sponsorNameAtSettlement' => 'Sponsor Name At Settlement',
-    'entryBV' => 'Entry BV',
-    'entryAmount' => 'Entry Amount',
-    'entryNo' => 'Entry No',
-    'orderSource' => 'Order Source',
-    'reviewed' => 'Reviewed',
-    'wastedisposal' => 'Waste disposal',
-    'whetherActive' => 'Whether Active',
-    'yes' => 'Yes',
-    'no' => 'No',
-    'declarationPerformance' => 'Declaration Performance',
-    'cancellationPerformance' => 'Cancellation Performance',
-    'LNewMarketPerformance' => 'L. New Market Performance',
-    'LNewPerformanceOfMarketEntry' => 'L. New Performance Of Market Entry',
-    'LNewPerformanceOfMarketReCancellation' => 'L. New Performance Of Market Re Cancellation',
-    'RNewMarketPerformance' => 'R. New Market Performance',
-    'RNewPerformanceOfMarketEntry' => 'R. New Performance Of Market Entry',
-    'RNewPerformanceOfMarketReCancellation' => 'R. New Performance Of Market Re Cancellation',
-    'LMarketBalancePerformance' => 'L. Market Balance Performance',
-    'RMarketBalancePerformance'=> 'R. Market Balance Performance',
-    'LMarketEntryBalancePerformance' => 'L. Market Entry Balance Performance',
-    'RMarketEntryBalancePerformance' => 'R. Market Entry Balance Performance',
-    'LMarketReconditioningBalancePerformance' => 'L. Market Reconditioning Balance Performance',
-    'RMarketReCancellationBalancePerformance' => 'R. Market Re Cancellation Balance Performance',
-    'teamPerformance' => 'Team Performance',
-    'recommenderNo' => 'Recommender No',
-    'recommenderName' => 'Recommender Name',
-    'directorRank' => 'Director Rank',
-    'directorPGSPerformance' => 'Director PGS Performance',
-    'LNewMarketEntryPerformance' => 'L. New Market Entry Performance',
-    'RNewMarketEntryPerformance' => 'R. New Market Entry Performance',
-    'LMarketMonthlyRemainingDeclarationPerformance' => 'L. Market Monthly Remaining Declaration Performance',
-    'RMarketMonthlyRemainingDeclarationPerformance' => 'R. Market Monthly Remaining Declaration Performance',
-    'monthlyNewTeamPerformance' => 'Monthly New Team Performance',
-    'monthlyCumulativeTeamPerformance' => 'Monthly Cumulative Team Performance',
-
-    # 【数据表】
-    # 会员等级
-    'dbDeclarationLevelBA' => 'BA',
-    'dbDeclarationLevelElite' => 'Elite',
-    'dbDeclarationLevelPro' => 'Pro',
-    'dbDeclarationLevelVip' => 'Vip',
-    # 管理星级
-    'dbEmployLevelNoRank' => 'No Rank',
-    'dbEmployLevel1StarDirector'  => '1-Star Director',
-    'dbEmployLevel2StarDirector'  => '2-Star Director',
-    'dbEmployLevel3StarDirector'  => '3-Star Director',
-    'dbEmployLevel4StarDirector'  => '4-Star Director',
-    'dbEmployLevel5StarDirector'  => '5-Star Director',
-    'dbEmployLevel6StarDirector'  => '6-Star Director',
-    'dbEmployLevel7StarDirector'  => '7-Star Director',
-    # 皇冠星级
-    'dbCrownLevel0StarCrown' => '0-Star Crown',
-    'dbCrownLevel1StarCrown' => '1-Star Crown',
-    'dbCrownLevel2StarCrown' => '2-Star Crown',
-    'dbCrownLevel3StarCrown' => '3-Star Crown',
-    'dbCrownLevel4StarCrown' => '4-Star Crown',
-    'dbCrownLevel5StarCrown' => '5-Star Crown',
-    'dbCrownLevel6StarCrown' => '6-Star Crown',
-    'dbCrownLevel7StarCrown' => '7-Star Crown',
-    # 报单中心级别
-    'dbDecRole1stLevelStockist'	=> '1st Level Stockist',
-    'dbDecRole2ndLevelStockist'	=> '2nd Level Stockist',
-    'dbDecRole3rdLevelStockist'	=> '3rd Level Stockist',
-    'dbDecRole4thLevelStockist'	=> '4th Level Stockist',
-    'dbDecRole5thLevelStockist'	=> '5th Level Stockist',
-    # 注册类型
-    'dbRegTypePersonal' => '个人',
-    'dbRegTypeBusiness' => '个体工商户',
-    'dbRegTypeCompany' => '公司',
-    # 交易类型
-    'dbConfigAllowWallet' => '转出转入配置',
-    'dbConfigAutoCalcPeriod' => '自动结算',
-    'dbConfigAutoClosePeriod' => '自动封期',
-    'dbConfigBackupTime' => '备份时间',
-    'dbConfigBackupWeekDate' => '备份星期',
-    'dbConfigBaseScore' => '基础分数配置',
-    'dbConfigBsNoPvPointsPercent' => '没有业绩的时候,蓝星奖金给多少业绩比例的兑换积分',
-    'dbConfigCalcYear' => '期数计算至年份',
-    'dbConfigCashReconsumeBonusPercent' => '现金购物PV算奖比例',
-    'dbConfigCloseDays' => '自动封期天数',
-    'dbConfigCloseTime' => '自动封期时间',
-    'dbConfigCloseWeekDate' => '自动封期星期',
-    'dbConfigDealSwitch' => '查看交易记录',
-    'dbConfigDecRoleBonusFrom' => '服务奖来源',
-    'dbConfigExchangeRate' => '汇率配置',
-    'dbConfigFlowBonusSwitch' => '奖金明细',
-    'dbConfigFreeShipping' => '商品免运费阈值',
-    'dbConfigInstalmentQty' => '分期商品期数',
-    'dbConfigFreight' => '商品运费',
-    'dbConfigFwCoefficientFromFxCash' => '服务奖现金复消系数',
-    'dbConfigFwCoefficientFromFxPoint' => '服务奖积分复消系数',
-    'dbConfigFwCoefficientFromZc' => '服务奖首购报单系数',
-    'dbConfigHistoryBonusLimit' => '奖金余额备份近几周',
-    'dbConfigIsCanTransferProp' => '是否开启单笔转账比例',
-    'dbConfigIsCanWithdrawBack' => '是否开启前台提现退回功能',
-    'dbConfigIsDecReg' => '只允许报单中心报单',
-    'dbConfigIsOpenUpgrade' => '是否开启会员升级单功能',
-    'dbConfigIsResaleUmbrella' => '是否只允许为伞下会员报复消单',
-    'dbConfigManageTaxPercent' => '管理费比例',
-    'dbConfigManualWithdrawMinAmount' => '手动提现最低金额',
-    'dbConfigMonthPcsPvFxCondition' => '每月个人总消费PV条件',
-    'dbConfigNewBonusSwitch' => '最新奖金',
-    'dbConfigObservePeriodLimit' => '观察期月份限制',
-    'dbConfigOpenFW' => '是否开启服务奖',
-    'dbConfigOpenGL' => '是否开启管理奖',
-    'dbConfigOpenGarage' => '车奖积分比例',
-    'dbConfigOpenGarageCap' => '车奖个人封顶值',
-    'dbConfigOpenQY' => '是否开启团队奖',
-    'dbConfigOpenQuarter' => '季度奖金',
-    'dbConfigOpenTG' => '是否开启推广奖',
-    'dbConfigOpenTourism' => '旅游积分比例',
-    'dbConfigOpenVilla' => '房奖积分比例',
-    'dbConfigOpenVillaCap' => '房奖个人封顶值',
-    'dbConfigPasswordRule' => '密码规则',
-    'dbConfigPastBonusSwitch' => '往期奖金',
-    'dbConfigPayPasswordRule' => '支付密码规则',
-    'dbConfigPvRatio' => 'PV比例',
-    'dbConfigReConsumePointsMonthCap' => '重复消费积分每月上限',
-    'dbConfigReConsumePointsPercent' => '重复消费积分比例',
-    'dbConfigRecPercent' => '推广奖比例',
-    'dbConfigShowBonusPeriodNum' => '前台可见往期奖金期数',
-    'dbConfigShowFlowPeriodNum' => '前台可见交易记录期数',
-    'dbConfigShowTransferPeriodNum' => '前台可见转账记录期数',
-    'dbConfigShowWithdrawPeriodNum' => '前台可见提现记录期数',
-    'dbConfigSiteClose' => '是否关闭网站',
-    'dbConfigSiteCloseInfo' => '关闭提示信息',
-    'dbConfigSiteTitle' => '网站标题',
-    'dbConfigTransferOpen' => '是否开启转账功能',
-    'dbConfigTransferRecordSwitch' => '前台转账记录开关',
-    'dbConfigTransferSwitch' => '前台我要转账开关',
-    'dbConfigWithdrawFee' => '提现手续费',
-    'dbConfigWithdrawFreezeDays' => '提现预付款天数',
-    'dbConfigReportAlarmOpen' => '是否开启预警信息推送',
-
-    # 【参数】
-    # 钱包类型
-    'cashWallet' => 'Cash wallet',
-    # 用户状态
-    'userStatusInactive' => 'Inactive',
-    'userStatusNormal' => 'Normal',
-    'userStatusLogout' => 'Logout',
-    'userStatusBlacklist' => 'Blacklist',
-    'userStatusSuspended' => 'Suspended',
-    'userStatusPermanentShutDown' => 'Permanent shut down',
-    # 奖金类型
-    'bonusWalletTypeAccountBonus' => 'Account bonus',
-    'bonusWalletTypeResellingPointsBalance' => 'Reselling points balance',
-    'bonusWalletTypeAccountEcoin' => 'Account Ecoin',
-    'bonusWalletTypeExchangePointsBalance' => 'Exchange points balance',
-    'bonusWalletTypeTravelPointsBalance' => 'Travel points balance',
-    'bonusWalletTypeCarPointsBalance' => 'Car points balance',
-    'bonusWalletTypeVillaPointsBalance' => 'Villa points balance',
-    # 审核状态
-    'auditStatusUnaudited' => 'Unaudited',
-    'auditStatusAudited' => 'Audited',
-    'auditStatusAuditFailure' => 'Audit failure',
-    'auditStatusRefused' => 'Refused',
-    # 发货状态
-    'deliveryStatusUndelivered' => 'Undelivered',
-    'deliveryStatusDelivered' => 'Delivered',
-    'deliveryStatusConfirmReceipt' => 'Confirm receipt',
-    # 导出模块
-    'exportModuleShop' => 'Mall Management',
-    'exportModuleMember' => 'Member Management',
-    'exportModuleNetwork' => 'Network Chart',
-    'exportModuleResale' => 'Resale Management',
-    'exportModuleBonus' => 'Bonus Management',
-    'exportModuleShopFinancial' => 'Financial Management',
-    # 订单状态
-    'orderStatusUnpaid' => 'Unpaid',
-    'orderStatusPaid' => 'Paid',
-    'orderStatusLogisticsStatus' => 'Logistics status',
-    'orderStatusOrderCompletion' => 'Order completion',
-    'orderStatusOrderCancellation' => 'Order cancellation',
-    'orderStatusOrderDeletion' => 'Order deletion',
-    'orderStatusOrderRefund' => 'Order refund',
-    'orderStatusPaymentFailed' => 'Payment failed',
-    # 流水类型
-    'shopFlowTypeRemittanceRecharge' => 'Remittance recharge',
-    'shopFlowTypeThirdPartyRecharge' => 'Rhird-party recharge',
-    'shopFlowTypeTransferOut' => 'Transfer out',
-    'shopFlowTypeTransferInto' => 'Transfer into',
-    'shopFlowTypePay' => 'Pay',
-    'shopFlowTypeWelcomePackRecharge' => 'Welcome pack recharge',
-    'shopFlowTypeOrderRecharge' => 'Order recharge',
-    'shopFlowTypeFreightPayment' => 'Freight payment',
-    'shopFlowTypeAdjustedRecharge' => 'Adjusted recharge',
-    'shopFlowTypeAdjustedDeduct' => 'Adjusted deduct',
-    'shopFlowTypeAdjustedTransferOut' => 'Adjusted transfer out',
-    'shopFlowTypeAdjustedTransferIn' => 'Adjusted transfer in',
-    'shopFlowTypeExchangeRecharge' => 'Exchange recharge',
-    'shopFlowTypeExchangeDeduct' => 'Exchange deduct',
-    'shopFlowTypeDeleteOrderDeduct' => 'Delete order deduct',
-    'shopFlowTypeDeleteOrderRecharge' => 'Delete order recharge',
-    'shopFlowTypeDeleteOrderReturn' => 'Delete order return',
-    'shopFlowTypeRepairPayment' => 'Repair payment',
-    'shopFlowTypeAfterSaleExchangeRecharge' => 'After-sale exchange recharge',
-    'shopFlowTypeAfterSaleExchangeDeduct' => 'After-sale exchange deduct',
-    'shopFlowTypeOMSDeduct' => 'OMS deduct',
-    'shopFlowTypeDeduct' => 'Deduct',
-    'shopFlowTypeIncrease' => 'Increase',
-    'shopFlowTypeOther' => 'Other',
-    'shopFlowTypeAdministratorManualAdjustment' => 'Administrator manual adjustment',
-    # 国家
-    'dbCountriesdz' => "COTE D'IVOIRE",
-    'dbCountriesao' => 'ALGERIA',
-    'dbCountriesbj' => 'BOTSWANA',
-    'dbCountriesbw' => 'BURKINA FASO',
-    'dbCountriesbf' => 'ANGOLA',
-    'dbCountriesbi' => 'BENIN',
-    'dbCountriescm' => 'CHAD',
-    'dbCountriescv' => 'COMOROS',
-    'dbCountriescf' => 'CAMEROON',
-    'dbCountriestd' => 'SOUTH SUDAN',
-    'dbCountrieskm' => 'GUINEA',
-    'dbCountriescg' => 'CAPE VERDE',
-    'dbCountriesci' => 'CENTRAL AFRICA REPUBLIC',
-    'dbCountriesdj' => 'CONGO',
-    'dbCountriescd' => 'BURUNDI',
-    'dbCountrieseg' => 'DJIBOUTI',
-    'dbCountriesgq' => 'GABON',
-    'dbCountrieser' => 'DR CONGO',
-    'dbCountriessz' => 'SOUTH AFRICA',
-    'dbCountrieset' => 'EGYPT',
-    'dbCountriesga' => 'EQUATORIAL GUINEA',
-    'dbCountriesgm' => 'ESWATINI',
-    'dbCountriesgh' => 'ERITREA',
-    'dbCountriesgn' => 'ETHIOPIA',
-    'dbCountriesgw' => 'GAMBIA',
-    'dbCountrieske' => 'GHANA',
-    'dbCountriesls' => 'KENYA',
-    'dbCountrieslr' => 'GUINEA - BISSAU',
-    'dbCountriesly' => 'LESOTHO',
-    'dbCountriesmg' => 'LIBYA',
-    'dbCountriesmw' => 'MAURITANIA',
-    'dbCountriesml' => 'MADAGASCAR',
-    'dbCountriesmr' => 'MALAWI',
-    'dbCountriesmu' => 'MALI',
-    'dbCountriesma' => 'LIBERIA',
-    'dbCountriesmz' => 'MAURITIUS',
-    'dbCountriesna' => 'MOROCCO',
-    'dbCountriesne' => 'MOZAMBIQUE',
-    'dbCountriesng' => 'NAMIBIA',
-    'dbCountriesrw' => 'NIGER ',
-    'dbCountriesst' => 'SOMALIA',
-    'dbCountriessn' => 'SENEGAL',
-    'dbCountriessc' => 'NIGERIA',
-    'dbCountriessl' => 'SAO TOME & PRINCIPE',
-    'dbCountriesso' => 'SEYCHELLES',
-    'dbCountriesza' => 'UGANDA',
-    'dbCountriesss' => 'SIERRA LEONE',
-    'dbCountriessd' => 'RWANDA',
-    'dbCountriestz' => 'TOGO',
-    'dbCountriestg' => 'SUDAN',
-    'dbCountriestn' => 'TANZANIA',
-    'dbCountriesug' => 'TUNISIA',
-    'dbCountrieszm' => 'ZAMBIA',
-    'dbCountrieszw' => 'ZIMBABWE',
-];

+ 0 - 316
common/messages/pt-PT/app.php

@@ -1,316 +0,0 @@
-<?php
-return [
-    # 商城
-    'addressId' => 'Address',
-    'reconsume' => 'Reconsume',
-    'orderCode' => 'Order Code',
-    'orderDetail' => 'Order Detail',
-    'productCode' => 'Product Code',
-    'productName' => 'Product Name',
-    'productPrice' => 'Product Price',
-    'qty' => 'Qty',
-    'taxRate' => 'Tax Rate',
-    'totalTax' => 'Total Tax',
-    'totalAmount' => 'Total Amount',
-    'total' => 'Total',
-    'signature' => 'Signature',
-    'date' => 'Date',
-    'accountBalance' => 'Account Balance',
-    'travelBonus' => 'Travel Bonus',
-    'carFund' => 'Car Fund',
-    'villaFund' => 'Villa Fund',
-    'reconsumeSuccessfully' => '帮会员复消成功',
-    'reconsumeRemark' => '复销备注',
-    'standardProducts' => 'Standard Products',
-    'carFundProducts' => 'Car Fund Products',
-    'villaFundProducts' => 'Villa Fund Products',
-    'travelFundProducts' => 'Travel Fund Products',
-    'insufficientInventory' => 'Insufficient inventory',
-    'soldOut' => 'Sold out',
-    'productsDoesNotExists' => 'Products does not exists!',
-    'allowOnlyOne' => 'Only 1 can be purchased at a time',
-    'canNotBuy' => 'Please pay in EPP order',
-    'instalmentGoodsNoError' => 'Products No. error',
-    'instalmentOrderInProcess' => '分期商品订单未完成',
-    'productsDoesSoldOut' => 'Products has sold out!',
-    'cashDoesNotAdequate' => '余额不足,无法购买商品',
-    'exchangePointDoesNotAdequate' => '兑换积分不足,无法购买商品',
-    'travelPointDoesNotAdequate' => '旅游积分不足,无法购买商品',
-    'carFundPointDoesNotAdequate' => '车奖积分不足,无法购买商品',
-    'villaPointDoesNotAdequate' => '房奖积分不足,无法购买商品',
-    'paymentInfoDoesNotExists' => '支付信息不存在',
-    'payAmountNotEqualOrderAmount' => '支付金额与订单金额不符',
-    'orderSn' => 'Order Code',
-    'expressCompany' => 'Express Company',
-    'orderTrackNo' => 'Track Code',
-    'remark' => 'Remark',
-    'orderType' => 'Order Type',
-    'payType' => 'Pay Type',
-    'productID' => 'Product ID',
-    'quantity' => 'Quantity',
-    'repeatSalesMemberNo' => 'UserName',
-    'consigneeNo' => 'Consignee',
-    'acceptMobile' => 'Accept Mobile',
-    'lgaName' => 'Lga Name',
-    'cityName' => 'City Name',
-    'detailAddress' => 'Address',
-    'shippingAddress' => 'shipping Address',
-
-    'orderDoesNotExist' => 'the order does not exist',
-    'orderHasBeenCancelCanNotDeliver ' => '订单已取消不能发货',
-    'orderHasBeenDeleteCanNotDeliver' => '订单已删除不能发货',
-    'orderPayStatusDoesNotSupportRefund' => '订单状态支付状态不支持退款',
-    'orderLogisticsStatusDoesNotSupportRefund' => '订单物流状态不支持退款',
-    'orderPayTypeDoesNotSupportRefund' => '订单支付方式不支持退款',
-    'paymentPasswordError' => 'The payment password is incorrect',
-    'shippingDoesNotExist' => 'the shipping address does not exist',
-    'payTypeError' => '支付方式错误',
-    'orderCanNotHasMoreClassification' => '订单不能包含多种商品分类',
-    'shopGoodClassificationError' => '商品分类错误',
-    'orderStatusTypeError' => '订单状态类型错误',
-    'orderStatusDoesNotChange' => '订单状态没有改变',
-    'orderHasBeenLogisticsStatusDoesNotChangedUnpaid' => '订单已经进入物流状态不能改为未支付',
-    'orderHasBeenInvalidCanNotProcess' => '订单已失效不能处理',
-    'orderCanNotBeenChangedLogistics' => '订单不能单独处理为物流状态',
-    'orderHasBeenFinishedCanNotCancel' => '订单已完成不能取消',
-    'orderHasBeenDeletedCanNotCancel' => '订单已删除不能取消',
-    'orderHasBeenFinishedCanNotDelete' => '订单已完成不能删除',
-    'flowTypeError' => '流水类型错误',
-    'flowCreateError' => '流水产生错误',
-    'doesNotYourSubMemberCanNotReconsume' => '不是您的伞下会员,不能为其复消',
-    'membersResellingBalancePayment' => 'Members reselling balance payment',
-    'membersExchangePointPayment' => '会员复销积分兑换',
-    'orderCanNotContainMultipleProductCategories' => 'Order cannot contain multiple product categories',
-
-
-    # 会员
-    'memberCode' => 'Member Code',
-    'memberName' => 'Member Name',
-    'memberAddress' => 'Member Address',
-    'memberPhone' => 'Member Phone',
-    'bankName' => 'Bank Name',
-    'bankCode' => 'Bank Code',
-    'admin' => 'Admin',
-    'minCharge' => 'Min Charge',
-    'maxCharge' => 'Max Charge',
-    'chargeRate' => 'Charge Rate',
-    'updater' => 'Updater',
-    'userName' => 'USER_NAME',
-    'passwordHash' => 'PASSWORD_HASH',
-    'payPassword' => 'PAY_PASSWORD',
-    'nation' => 'NATION',
-    'realName' => 'REAL_NAME',
-    'IDCard' => 'ID_CARD',
-    'IDType' => 'ID_TYPE',
-    'mobile' => 'MOBILE',
-    'address' => 'ADDRESS',
-    'IDImage' => 'ID_IMAGE',
-    'openBank' => 'OPEN_BANK',
-    'bankAddress' => 'BANK_ADDRESS',
-    'bankNo' => 'BANK_NO',
-    'bankProvince' => 'BANK_PROVINCE',
-    'bankCity' => 'BANK_CITY',
-    'bankCounty' => 'BANK_COUNTY',
-    'spouseName' => 'SPOUSE_NAME',
-    'spouseIDCard' => 'SPOUSE_IDCARD',
-    'decClosed' => 'DEC_CLOSED',
-    'decClosedAt' => 'DEC_CLOSED_AT',
-    'decLv' => 'DEC_LV',
-    'empLv' => 'EMP_LV',
-    'crownLv' => 'CROWN_LV',
-    'province' => 'PROVINCE',
-    'city' => 'CITY',
-    'county' => 'COUNTY',
-    'tel' => 'TEL',
-    'subComID' => 'SUB_COM_ID',
-    'avatar' => 'AVATAR',
-    'isDec' => 'IS_DEC',
-    'isAtlas' => 'IS_ATLAS',
-    'isRecharge' => 'IS_RECHARGE',
-    'DEC_ID' => 'DEC_ID',
-    'birthday' => 'BIRTHDAY',
-    'decRoleID' => 'DEC_ROLE_ID',
-    'periodAt' => 'PERIOD_AT',
-    'decProvince' => 'DEC_PROVINCE',
-    'decCity' => 'DEC_CITY',
-    'decCounty' => 'DEC_COUNTY',
-    'isUnion' => 'IS_UNION',
-    'statusAt' => 'STATUS_AT',
-    'verified' => 'VERIFIED',
-    'verifiedAt' => 'VERIFIED_AT',
-    'allowLogin' => 'ALLOW_LOGIN',
-    'notOperating' => 'NOT_OPERATING',
-    'regFrom' => 'REG_FROM',
-    'IDCardPrefix' => 'ID_CARD_PREFIX',
-    'sex' => 'SEX',
-    'decAccountOld' => 'DEC_ACCOUNT_OLD',
-    'bankUpdatedAt' => 'BANK_UPDATED_AT',
-    'isDirectSeller' => 'IS_DIRECT_SELLER',
-    'decLvUpdatedAt' => 'DEC_LV_UPDATED_AT',
-    'decLvUpdatedPeriod' => 'DEC_LV_UPDATED_PERIOD',
-    'decAddress' => 'DEC_ADDRESS',
-    'decPhone' => 'DEC_PHONE',
-    'guarantor' => 'GUARANTOR',
-    'guarantorName' => 'GUARANTOR_NAME',
-    'partFuncClosed' => 'PART_FUNC_CLOSED',
-    'lastDecLvUpdatedPeriod' => 'LAST_DEC_LV_UPDATED_PERIOD',
-    'userCreator' => 'USER_CREATOR',
-    'userUpdater' => 'USER_UPDATER',
-    'lastDecLvUpdatedAt' => 'LAST_DEC_LV_UPDATED_AT',
-    'decCreatedAt' => 'DEC_CREATED_AT',
-    'partFuncClosedRemark' => 'PART_FUNC_CLOSED_REMARK',
-    'decCreatedPeriod' => 'DEC_CREATED_PERIOD',
-    'passwordChanged' => 'PASSWORD_CHANGED',
-    'subComLeader' => 'SUB_COM_LEADER',
-    'zgUpgradePv' => 'ZG_UPGRADE_PV',
-    'appClientID' => 'APP_CLIENT_ID',
-    'readAgreement' => 'READ_AGREEMENT',
-    'lastDecLv' => 'LAST_DEC_LV',
-    'bonusAppClientID' => 'BONUS_APP_CLIENT_ID',
-    'isFirstOpen' => 'IS_FIRST_OPEN',
-    'isModifyPassword' => 'IS_MODIFY_PASSWORD',
-    'isStudio' => 'IS_STUDIO',
-    'email' => 'EMAIL',
-
-    'fillingUpOfADeficit' => 'filling up of a deficit',
-    'fullPayment' => 'full payment',
-
-    'personalDataModifiedSuccessfully' => 'Personal data modified successfully',
-    'passwordModifiedSuccessfully' => 'Password modified successfully',
-    'theFunctionIsNotAvailable' => 'The function is not available',
-    'inactiveUser' => 'Inactive user. Please contact customer service.',
-    'checkPerformance' => 'Please contact customer service to check performance.',
-    'checkPerformanceOfUpgradedMember' => 'Please contact the customer service personnel to check the performance of upgraded members',
-    'memberNumberExpired' => 'Member number expired',
-    'memberNumberDoesNotConformTo' => 'Member number does not conform to',
-    'failedToGenerateMemberNumber' => 'Failed to generate member number',
-    'memberNumberDoesNotExist' => 'Member number does not exist',
-    'repeatSalesMemberNoDoesNotExist' => 'Repeat sales Member No. does not exist',
-    'memberDoesNotExist' => 'Member does not exist',
-    'memberDoesNotInSamePlacementNetwork' => 'The member is not in the same placement network as the current user',
-    'viewSubMembersMost' => 'View the top 20 sub members of the member at most',
-    'upgradeMethodIncorrect' => 'The upgrade method is incorrect. Please contact the customer service personnel',
-
-    'originalLoginPasswordError' => 'Original login password error',
-    'originalPaymentPasswordError' => 'Original payment password error',
-    'userNameNotExists' => 'Nonexistent user name',
-    'pleaseSelectUpgradeLevel' => 'Please select upgrade level',
-    'totalPVLessThan' => 'Total PV cannot be less than the selected level PV',
-    'totalPvExceedPv' => 'The total PV cannot exceed the PV value of the next level under the selected level',
-    'deliveryTemporarilyNotSupported' => 'Delivery is temporarily not supported in the region. Contact customer service for details',
-    'applicantCashShort' => 'The applicant is short of cash and cannot complete the declaration',
-    'failedToUpgrade' => 'Failed to upgrade for member',
-    'bulkDeclarationNotSames' => 'Bulk declaration member must be the same member',
-    'reportFormatIncorrect' => 'The format of the report data is incorrect',
-    'memberNumberCanNotContainChineseCharacters' => 'Member number cannot contain Chinese characters',
-    'pleaseSelectTheEntryLevel' => 'Please select the entry level',
-    'totalBVCanNotLessThanSelectedBV' => 'Please choose the correct Entry Level.',
-    'totalBVCanNotLessThanNextSelectedLevelBV' => 'Please choose the correct Entry Level.',
-    'incorrectEntryType' => 'Incorrect entry type',
-    'MembershipNumberFilledInitialPurchase' => 'Membership number must be filled in for initial purchase',
-    'fillTheInstructorNumberTheMember' => 'For the first purchase, you must fill in the instructor number of the member',
-    'sponsorNumberMustBeFilled' => 'For the first purchase, the Sponsor number of the member must be filled in',
-    'beFilledTheMarketMember' => 'The first purchase must be filled in the market of the member',
-    'pleaseSelectMarket' => 'Please select a market',
-    'stockistDoesNotExist' => 'Stockist does not exist',
-    'newMemberDoesNotExist' => 'New member does not exist',
-    'brandAmbassadorUpgradeError' => 'Brand Ambassador upgrade error',
-    'changeUserStatusError' => 'change user status error',
-    'dataFormatError' => 'Data format error',
-    'decUserNameDoesNotExist' => '请输入报单中心编号',
-    'decUserNameIsWrong' => '报单中心编号输入错误',
-
-
-
-    # 奖金
-    'memberBonus' => 'Member Bonus',
-    'memberEcoin' => 'Member Ecoin',
-    'carPoints' => 'Car Points',
-    'villaPoints' => 'Villa Points',
-    'increase' => 'increase',
-    'reduce' => 'reduce',
-    'cannotViewThisPeriod' => 'Cannot view this period',
-    'bonusRecordDoesNotExists' => 'The bonus record does not exists of this period',
-    'pleaseSelectThePeriod' => 'Please select the period',
-    'withdrawalApplicationHasBeenSubmitted' => 'Withdrawal application has been submitted, please wait for review.',
-    'withdrawHasBeenBacked' => 'Withdraw has been backed',
-    'withdrawDoesNotAllowedOfAuthentication' => '未实名验证无法提现',
-    'withdrawDoesNotAllowedOfSubsidiaryMember' => '附属会员无法提现',
-    'autoWithdrawHasBeenOpened' => '已开启自动提现,如需手动提现请关闭自动提现',
-    'withdrawNotAllowOfDate' => '未到提现日期,请在每月挂网后第一周申请提现',
-    'withdrawAllowOnceOfMonth' => '提现失败,每月只可以提现一次',
-    'withdrawRecordHasNotVerify' => '提现失败,您存在未审核的提现记录',
-    'notionalPoolingAmountFinished' => '归集完成,归集金额',
-    'withdrawDoesNotUploadInvoice' => '该提现记录无法上传发票',
-    'transferDoesNotAllowedOfAuthentication' => '未实名验证无法转账',
-    'transferDoesNotAllowed' => '不允许转账',
-    'transferDoesNotOpen' => '转账功能未启用',
-    'transferTypeDoesNotExists' => '没有可用的转账类型',
-    'rechargeApplicationHasBeenSubmitted' => 'Recharge application has been submitted, please wait for review.',
-
-    # 设置
-    'autoWithdrawHasBeenClosed' => '开启关闭自动提现成功',
-    'closeMessageSendSuccessfully' => '开启关闭复销短信提醒成功',
-    'changeDefaultAddressFailed' => '更新默认地址失败',
-    'addShippingAddressSuccessfully' => '添加收货地址成功',
-    'updateUserConfigFailed' => '更新个人设置失败',
-    'isAutoWithdraw' => '是否自动提现',
-    'allowReconsumeSms' => '开启复销短信通知',
-    'pleaseAuthentication' => '请先实名认证',
-    'systemCloseAutoWithdraw' => '系统关闭了自动提现',
-    'systemCloseReconsumeSMSNotification' => '系统关闭了开启复销短信通知',
-    'openAutoWithdraw' => '开启关闭自动提现',
-    'updateUserSMSExpiredFailed' => '更新个人短信有效期失败',
-    'modeDoesNotExist' => '不存在此方式',
-    'currencyDoesNotExist' => '未设置汇率',
-    'countryDoesNotSelect' => '未选择国家',
-    'transferMemberDoesNotSame' => '转账会员非本国会员',
-
-    # 首页
-    'pcOf' => 'PC of ',
-
-    # 财务
-    'statueError' => 'Status error',
-    'notAllowedToTransferToYourself' => 'Not allowed to transfer to yourself',
-    'wrongTransactionType' => 'Wrong transaction type',
-    'isCanWithdrawBack' => '提现退回已关闭',
-    'withdrawRecordDoesNotExist' => '符合退回的提现记录不存在',
-
-
-    # 登录
-    'refreshTokenFailed' => 'refresh token failed',
-    'passwordChangeSucceeded' => 'Password change succeeded',
-    'accountDoesNotExist' => 'The account does not exist',
-    'memberNameOrPasswordIncorrect' => 'The member name or password is incorrect',
-    'abnormalMemberCode' => 'Abnormal member code',
-    'memberNotActivated' => 'Member not activated',
-    'memberHasBeenCancelled' => 'The member has been cancelled',
-    'memberHasBeenBlacklisted' => 'The member has been blacklisted',
-    'memberHasBeenPermanentlySuspended' => 'The member has been permanently suspended',
-    'memberPartOfFunctionClosed' => 'Member part of the function is closed, unable to log in.',
-    'memberAppDeviceInformationUpdateFailed' => 'Member APP device information update failed',
-
-    # 文章
-    'category' => 'Category',
-    'title' => 'Title',
-    'content' => 'Content',
-    'articleDoesNotExist' => 'The article does not exist',
-
-    # 公用
-    'notConnection' => 'Connection not operated for too long',
-    'deleteFailed' => 'failed to delete',
-    'deleteSuccessfully' => 'delete successfully',
-    'quickLoginCanNotOperate' => '快速登录的会员无法进行任何操作',
-    'selectAtLeastOne' => '必须选择一条数据',
-    'failed' => 'Failed',
-    'successfully' => 'Successfully',
-    'createAt' => 'Creation Time',
-    'status' => 'Status',
-    'state' => 'State',
-    'sort' => 'Sort',
-    'illegalRequest' => 'Illegal request',
-    'invalidParameter' => 'Invalid Parameter',
-    'dataDoesNotExists' => 'The data does not exist',
-
-
-];

+ 0 - 904
common/messages/pt-PT/ctx.php

@@ -1,904 +0,0 @@
-<?php
-return [
-    #Admin
-    'AdminAddedSuccessfully' => 'Administrator added successfully',
-    'AdminEditedSuccessfully' => 'Administrator edited successfully',
-    'passwordChangeSucceeded' => 'Password change succeeded',
-    'successAddAdminRole' => 'Admin role added successfully',
-    'editAdminRoleSuccess' => 'Edit admin role successfully',
-    'roleDoesNotExist' => 'Role does not exist',
-    'successSetAdminRolePermissions' => 'Set administrator role permissions successfully',
-    'successSetAdminRoleListFieldPermissions' => 'Set administrator role list field permissions successfully',
-    'adminUnderSelectedRoleCannotDeleted' => 'Administrators under the selected role cannot be deleted',
-    'twoPasswordsMustSame' => 'The two passwords must be the same',
-    'memberNameDoesNotExist' => 'The member name does not exist',
-    'loginPasswordHasNotChanged' => 'The login password has not changed',
-    'oldLoginPasswordIncorrect' => 'The old login password is incorrect',
-    'submissionDoesNotExist' => 'The submission does not exist',
-    'passwordLeastEightCharacters' => 'The password must contain at least eight characters',
-    'passwordRule' => 'The password must contain at least two types of digits, capital letters, small letters and special characters',
-    'unableToDeleteOneSelf' => "Can't delete yourself",
-    'resetPwdSucessNotice' => 'Password reset successfully',
-
-    #Finance
-    'commonModelsWithdrawStatusNameStatusApplied' => 'Applied',
-    'commonModelsWithdrawStatusNameStatusAudited' => 'Withdrawal has been reviewed',
-    'commonModelsWithdrawStatusNameStatusWaitPaid' => 'Unpaid',
-    'commonModelsWithdrawStatusNameStatusPaidFalse' => 'Failed',
-    'commonModelsWithdrawStatusNameStatusRefused' => 'Refused',
-    'commonModelsWithdrawStatusNameStatusPaid' => 'Withdrawal has been paid',
-    'commonModelsWithdrawStatusNameStatusReturned' => 'Returned',
-    'backendApiControllersFinaceRechargeStatusApprove' => 'Approve',
-    'backendApiControllersFinaceRechargeStatusReject' => 'Reject',
-    'modelListFinanceBalanceAuditListUserName' => 'Member Code',
-    'modelListFinanceBalanceAuditListRealName'=>'Member Name',
-    'modelListFinanceBalanceAuditListMemberLevel'=> 'Member level',
-    'modelListFinanceBalanceAuditListStockistLevel'=> 'Stockist level',
-    'modelListFinanceBalanceAuditListEmpLevel'=>'Rank',
-    'modelListFinanceBalanceAuditListTypeName'=>'Account type',
-    'modelListFinanceBalanceAuditListDealType'=>'Transaction type',
-    'modelListFinanceBalanceAuditListAmount'=>'Adjustment amount',
-    'modelListFinanceBalanceAuditListRemark'=>'Remark',
-    'modelListFinanceBalanceAuditListRemarkIsShow'=>'Whether The Front Desk Displays Comments',
-    'modelListFinanceBalanceAuditListAuditStatusName'=>'Audit status',
-    'modelListFinanceBalanceAuditListApplicant'=>'applicant',
-    'modelListFinanceBalanceAuditListCreatedAt'=>'Application time',
-    'modelListFinanceBalanceAuditListAuditName'=>'Reviewed by',
-    'modelListFinanceBalanceAuditListAuditTime'=>'Audit time',
-    'modelListFinanceTranserListTransferSn'=>'Transfer record serial number',
-    'modelListFinanceTranserListLastOutUserName'=>'Transfer out Member No',
-    'modelListFinanceTranserListLastOutRealName'=>'Name of transfer out member',
-    'modelListFinanceTranserListLastOutDecLvName'=>'Transfer out of member level',
-    'modelListFinanceTranserListOutWallet'=>'Transfer out account',
-    'modelListFinanceTranserListLastInUserName'=>'Transfer to member code',
-    'modelListFinanceTranserListLastInRealName'=> 'Transfer to member name',
-    'modelListFinanceTranserListLastInDecLvName'=>'Transfer to member level',
-    'modelListFinanceTranserListInWallet'=>'Transfer account',
-    'modelListFinanceTranserListOriAmount'=>'Transfer amount',
-    'modelListFinanceTranserListFee'=>'Service charge',
-    'modelListFinanceTranserListAmount'=>'Actual transfer amount',
-    'modelListFinanceTranserListCreatedAt'=>'Transfer time',
-    'modelListFinanceTranserListPeriodNum'=>'Transfer PC',
-    'financeControllerTransferListExport'=>'Transfer_List',
-    'modelListFinanceWithdrawSn'=>'Withdrawal serial number',
-    'modelListFinanceWithdrawPeriod'=>'Period',
-    'modelListFinanceWithdrawAt'=>'Withdrawal time',
-    'modelListFinanceWithdrawState'=>'State',
-    'modelListFinanceWithdrawAmount'=>'Withdrawal amount',
-    'modelListFinanceWithdrawFees' => 'Bank charge',
-    'modelListFinanceWithdrawRealAmount' => 'Actual amount',
-    'modelListFinanceWithdrawBank' => 'Bank info',
-    'modelListFinanceWithdrawBankNo' => 'Bank account',
-    'modelListFinanceWithdrawMobile' => 'Phone Number',
-    'modelListFinanceWithdrawUpdateAdminName' => 'Operations administrator',
-    'modelListFinanceWithdrawBackRemark' => 'Return note',
-    'modelListFinanceWithdrawWithdrawalTime'=>'Withdrawal time',
-    'modelsListsFinanceRechargeListgetColumnSn' => 'SN',
-    'modelsListsFinanceRechargeListgetColumnBank' => 'Bank',
-    'modelsListsFinanceRechargeListgetColumnBankNo' => 'Bank account',
-    'modelsListsFinanceRechargeListgetColumnAuditStatus' => 'Audit Status',
-    'modelsListsFinanceRechargeListgetColumnAmount' => 'Recharge amount',
-    'modelsListsFinanceRechargeListgetColumnCreatedAt' => 'Apply time',
-    'modelsListsFinanceRechargeListgetColumnRemark' => 'Remark',
-    'rechargeRecordSerialNumber'=>'Recharge record serial number',
-    'rechargeAuditStatusToBeReviewed'=>'To be reviewed',
-    'rechargeAuditStatusVoucherUploaded'=>'Voucher uploaded',
-    'rechargeAuditStatusAudited'=>'Audited',
-    'rechargeRechargeState'=>'Recharge State',
-    'rechargeRechargeStateNew'=>'New',
-    'rechargeRechargeStateProcessing'=>'Processing',
-    'rechargeRechargeStateSuccess'=>'Success',
-    'shopOrderListUndelivered' => 'Undelivered',
-    'shopOrderListDelivered'=>'Delivered',
-    'shopOrderListConfirmReceipt' => 'Confirm receipt',
-    'shopOrderListGetOrderStatusUnpaid' => 'Unpaid',
-    'shopOrderListGetOrderStatusPaid' => 'Paid',
-    'shopOrderListGetOrderStatusLogisticsStatus' => 'Logistics status',
-    'shopOrderListGetOrderStatusOrderCompletion' => 'Order completion',
-    'shopOrderListGetOrderStatusOrderCancellation' => 'Order cancellation',
-    'shopOrderListGetOrderStatusOrderDeletion' => 'Order deletion',
-    'shopOrderListGetOrderStatusOrderDeletionOrderRefund' => 'Order refund',
-    'shopOrderListGetOrderStatusPaymentFailed' => 'Payment failed',
-    'balanceAuditListGetBalanceAuditType' => 'Member bonus account',
-    'balanceAuditListCash' => 'Member Ecoin account',
-    'balanceAuditListGaragePoints' => 'Car points',
-    'balanceAuditListVillaPoints' => 'Villa points',
-    'financeRechargeListStatusTobeReviewed' => 'To be reviewed',
-    'financeRechargeListStatusApproved' => 'Approved',
-    'financeRechargeListStatusVoucherUploaded' => 'Voucher uploaded',
-    'financeRechargeListStatusRejected' => 'Rejected',
-    'rechargeStatusTitle:0' => 'To be reviewed',
-    'rechargeStatusTitle:1' => 'Voucher uploaded',
-    'rechargeStatusTitle:2' => 'Approved',
-    'rechargeStatusTitle:3' => 'Rejected',
-    'rechargeStatus:0' => 'NEW',
-    'rechargeStatus:1' => 'PROCESSING',
-    'rechargeStatus:2' => 'SUCCESS',
-    'rechargeStatus:3' => 'FAILED',
-
-    'memberEcoinAdjustmentListFileName'=> 'Member_Ecoin_adjustment_list',
-    'applicationChangeBalanceSucceeded'=> 'Application for change of member balance succeeded',
-    'applicationCannotReviewedAgain'=> 'The application has been reviewed and cannot be reviewed again',
-    'idNotMatchName'=>'Member code does not match member name',
-    'incorrectBalanceType'=>'Incorrect balance type',
-    'incorrectTransactionType'=>'Incorrect transaction type',
-    'adjustmentAmountCannotZero'=>'The adjustment amount cannot be 0',
-    'pointsEnoughAdjustmentNotAllowed' => "Insufficient balance of member's repurchase points, adjustment is not allowed",
-    'cannotSetPendingReview' => 'Cannot be set to pending review',
-    'auditCannotRepeated' => 'The audit has been approved and cannot be repeated',
-    'rejectedAuditCannotRepeated'=> 'It has been reviewed and rejected and cannot be reviewed again',
-    'statusParameterError' => 'Wrong state parameter',
-    'adjustmentBalanceCodeFailed' => 'Balance adjustment verification code failed',
-    'aPieceMustBeSelected' => 'A piece of data must be selected',
-    'noEligibleData' => 'No matching data',
-    'modificationAdjustmentMemberBalanceCompleted'=>'Modification and adjustment of member balance entry data completed',
-    'reviewThroughMemberBalance'=>'The review is done through the member balance',
-    'batchAuditMemberBalanceCompleted'=>'Batch audit/audit reject member balance completed',
-    'addedMemberSuccessfullyWithdrewCash' => 'The newly added member successfully withdrew cash',
-    'withdrawalInformationModifiedSuccessfully'=>'The withdrawal information is modified successfully',
-    'withdrawalApplyDoesNotExist'=>'Withdrawal request does not exist',
-    'memberNameOrNumberInconsistentSystem' => 'Withdrawal member code does not match member ID',
-    'memberRegisterTypeInconsistentWithSystem'=>'The selected member registration type is inconsistent with the system',
-    'withdrawalMustGreaterThanZero'=>'Withdrawal amount must be greater than 0',
-    'withdrawalAmountMustInteger' => 'Withdrawal amount must be an integer',
-    'withdrawalAmountCannotLessThan' => 'The withdrawal amount cannot be less than',
-    'WithdrawalAmountCannotHigherThan' => 'Withdrawal amount cannot be higher than',
-    'withdrawalAmountMustLessThanAvailableBalance' => 'The withdrawal amount must be less than the available balance',
-    'paymentPasswordIncorrect' => 'The payment password is incorrect',
-    'failedApplyWithdrawalVerify' => 'Application for cash withdrawal verification failed',
-    'withdrawalAuditVerificationFailed' => 'Withdrawal audit verification failed',
-    'cannotSelectDateInThePast'=>'Cannot select a date in the past',
-    'statusSettingSucceeded' => 'Status setting succeeded',
-    'exportWithdrawApplyExcelName' => 'Withdraw_Apply',
-    'invoiceEnteredSuccessfully' => 'Invoice entered successfully',
-    'modifyInvoiceEntryCompleted' => 'Modify invoice entry data completion',
-    'reviewInvoiceDataCompleted' => 'Review invoice data completed',
-    'memberPerformanceAdjustmentList' => 'Member Performance Adjustment List',
-    'applicationAdjustMemberPerfSuccess' => 'The application to adjust the member performance was successful',
-    'nextPeriodConnectedNetCannotAdjusted' => 'The next period [ {periodNum} ] has been connected to the net, and this period cannot be adjusted',
-    'passReviewAdjustPerfSuccess' => "Auditing success by adjusting member performance",
-    'batchReviewMemberPerfCompletion' => 'Batch review/rejection of member performance completion',
-    'transactionTypeAddSuccess'=> 'Transaction type added successfully',
-    'modifyTransactionTypeCompleted' => 'Modify the transaction type to complete',
-    'unableDelete' => 'Cannot be deleted',
-    'pendingRecordAfterThePendingReviewed' => 'If there is a pending record in the member review list, it shall be submitted after the pending record has been reviewed',
-    'periodNotNetCannotAdjusted' => 'This period [ {periodNum} ] is not connected to the net and cannot be adjusted',
-    'adjustmentTypeIncorrect' => 'The adjustment type is incorrect',
-    'incorrectLocation' => 'Incorrect location',
-    'amountChangeCannotZero' => 'The amount of change cannot be 0',
-    'memberUnderrepresentedRegion' => 'The member is underrepresented in that region',
-    'memberSurplusRegionLess' => 'The member has insufficient surplus in the region for the current period',
-    'withdrawFormNoSn' => "There is no paid record of withdrawals serial number {sn}",
-    'withdrawFormUserNameInconsistent'=>'The serial number of the withdrawal in Excel. {excelName} is inconsistent with information in the system {userName}',
-    'withdrawFormRealNameInconsistent' => "The serial number of the withdrawal in Excel. {sn}, member's name  {excelName}, is inconsistent with information in the system {realName}",
-    'withdrawFormPeriodsInconsistent' => "Excel withdrawal serial number {sn} withdrawal periods {withdrawPeriodNum}, is inconsistent with the information in the system【 {systemWithdrawPeriodNum} 】",
-    'withdrawFormPaidAtInconsistent' => "Payment date of the withdrawal serial number in Excel {sn} {paidAt} is inconsistent with system information {systemPaidAt}",
-    'withdrawFormAmountInconsistent' => "Withdrawal amount of the withdrawal serial number in Excel {sn} {execlAmount} is inconsistent with the information in the system {systemAmount}",
-    'withdrawFormBankRealNameInconsistent' => "Real-time account name of the withdrawal serial number in Excel {sn} {execlBankRealName}, is inconsistent with the information in the system  {systemName}  Inconsistent ",
-    'withdrawFormBankNoInconsistent' => "Real-time bank account of the withdrawal serial number in Excel {excelBankNo} {sn}  is inconsistent with information in system {systemBankNo}",
-    'withdrawFormNoExistsUser'=>'This user does not exist',
-    'withdrawChkAuditStatus' => "The current status of the withdrawal  {sn}  is 【 {statusName} 】, cannot be set to【 {newStatusName}】",
-
-    # Internet function
-    'numberOfLayers' => 'Number Of Layers',
-    'recommendedMemberNo'=>'Sponsor Member No',
-    'nameRecommendedMember'=>'Name Of Sponsor Member',
-    'recommendedMemberLevel' => 'Sponsor Member Level',
-    'highestDirector' => 'Highest Director',
-    'highestCrown' => 'Highest Crown',
-    "joiningPeriod" => 'Joining Period',
-    'modelListAtlasUserName' => 'Member Code',
-    'modelListAtlasDepth' => 'Depth',
-    'numberOfPeriods' => 'Number Of Periods',
-    'atlasViewLimitNotice'=>'Top 23 sub members of members can be viewed at most',
-    'atlasNetworkViewLimitNotice'=>'View the top 20 sub members of the member at most',
-    'placementMemberNumber'=>'Placement Member Number',
-    'placementMemberName' => 'Placement Member Name',
-
-    #Products management
-    'shopListProductName' => 'Product Name',
-    'shopListProductsCode' => 'Products Code',
-    'shopListDiscountRate' => 'Discount Rate',
-    'shopListProductsType' => 'Products Type',
-    'shopListProductCategory' => 'Product Category',
-    'shopListPaymentMode' => 'Payment Mode',
-    'shopListPriceStandard' => 'US Price($)',
-    'shopListSellPrice' => 'Sales Price(₦)',
-    'shopListProductsBv' => 'Products BV',
-    'shopListTaxRate' => 'Tax Rate(%)',
-    'shopListTax' => 'Tax(₦)',
-    'shopListInventory' => 'Inventory',
-    'shopListStatus' => 'Status',
-    'shopListOnSale' => 'On sale',
-    'shopListSoldOut' => 'Sold out',
-    'shopListUpdatedAt' => 'Update Time',
-    'shopListEntryArea' => 'Office Entry area',
-    'shopListResellingArea' => 'Office Reselling area',
-    'shopList1stPurchase' => '1st Purchase',
-    'shopListRepeatPurchase' => 'Repeat Purchase',
-
-    'shopListStandardProducts' => 'Standard Products',
-    'shopListCarFundProducts' => 'Car Fund Products',
-    'shopListVillaFundProducts' => 'Villa Fund Products',
-    'shopListAccountBalance' => 'Account Balance',
-    'shopListPayTravelBonus' => 'Travel Bonus',
-    'shopListPayCarFund' => 'Car Fund',
-    'shopListPayVillaFund' => 'Villa Fund',
-    'shopListPayStack' => 'PayStack',
-    'shopGoodTypeDomestic' => '国内商品',
-    'shopGoodTypeImport' => '国内商品',
-    'beforeAdjustmentPcNo' => 'Before adjust Pc No.',
-    'afterAdjustmentPcNo' => 'After adjust Pc No.',
-
-    'shopExportListName' => 'Goods_List',
-    'shopProductAddSucceededNotice' => 'Product add succeeded',
-    'shopProductEditSucceed'=>'Product editing succeeded',
-    'shopStatusSetSucceedNotice' => 'Status setting succeeded',
-    'shopDelOrderSuccedNotice'=>'The order is deleted successfully, please regenerate the performance sheet and calculate the bonus',
-    'shopDecOrderListExport' => 'First purchase order list',
-    'shopOrderListExport' => 'Order_List',
-    'shopStatusUpdateErrorNotice'=>'Status update error',
-    'shopOrderListExportPdf'=>'Order list',
-    'shopadminRefund'=>'Refund successfully',
-    'shopBaOrderListExport' => 'Ba_Order_List',
-    'shopBrandAmbassadorOrderExport'=>'Brand Ambassador Order',
-    'shopSetProductStatusErrorNotice'=>'The current product status is【{nowStatus}】,cannot be set to【{newStatus}】',
-    'shopPayTypeCash' => 'Ecoin',
-    'shopPayTypeGaragePoints' => 'Car Fund',
-    'shopPayTypeVillaFund' => 'Villa Fund',
-    'shopBuyActionErrorNotice'=>'The wrong way to buy the product',
-    'shopSortMoreThanOne'=>'Please fill in numbers greater than or equal to 1 for sorting',
-    'shopDiscountZeroBetweenOne'=>'Please fill in the number between 0-1 for the discount',
-    'shopDeleteDecOrderAndOrderFailedNotice'=>'Failed to delete first purchase order, failed to delete order',
-    'shopBackOrderFailedNotice'=>'Failed to roll back membership level, failed to delete order',
-    'shopLockFailedDeleteOrderFailed'=>'Failed to lock member, failed to delete order',
-    'shopDeleteOrderFailed' => 'Failed to delete order',
-    'shopBackAmountFailedDeleteOrderFailed'=>'Failed to refund the order amount, failed to delete the order',
-    'shopNotFindOrder' => 'Order information not found, the order number is:',
-    'shopOrderAlreadyDeleted'=> 'The order has been deleted, the order number is:',
-    'shopOrderPeriodNumNotExist'=>'The performance period corresponding to the order does not exist, and the order number is {sn} Performance period is:{periodNum}',
-    'shopOrderPeriodNumIsSented'=>'The order corresponding to the performance period has been posted online, and the order number is {sn} Performance period is:{periodNum}',
-    'shopOrderPeriodNumSenting'=>'The performance period corresponding to the order is being linked online,the order number is{sn} Performance period is:{periodNum}',
-    'shopNotFindDecOrder' => 'The corresponding order information has not been obtained,the order number is:',
-    'shopDecAlreadyDeleted'=>'The corresponding order information has been deleted,the order number is:',
-    'shopHasLaterOrder' => 'There is a later order, this order cannot be deleted,the order number is:',
-    'shopRegisterHasUpgradeOrder' => 'There is an upgrade order for this registration form, which cannot be deleted,the order number is:',
-    'shopRegisterHasFxOrder'=>'There is a cancellation order for this registration form, which cannot be deleted,the order number is:',
-    'shopOrderListMemberCode' => 'Member Code',
-    'shopOrderListStockist'=>'Stockist',
-    'shopOrderListCreatorNo'=>'Creator No',
-    'shopOrderListCreatorName'=>'Creator Name',
-    'shopOrderListOrderCode'=>'Order Code',
-    'shopOrderListOrderStatus'=>'Status',
-    'shopOrderListProductCode' => 'Product Code',
-    'shopOrderListProductName'=>'Product Name',
-    'shopOrderListRecipient' => 'Recipient',
-    'shopOrderListContactOne' => 'Contact 1',
-    'shopOrderListContactTwo' => 'Contact 2',
-    'shopOrderListState'=>'State',
-    'shopOrderListLocalGovernmentArea' => 'Local Government Area',
-    'shopOrderListCity'=>'City',
-    'shopOrderListDetailedAddress'=>'Detailed Address',
-    'shopOrderDeliveryWarehouse' => 'Delivery Warehouse',
-    'shopOrderListPeriod' => 'Period',
-    'shopOrderListOrderType' => 'Order Type',
-    'shopOrderListOrderTypeRepeatPurchase'=>'Repeat Purchase',
-    'shopOrderListOrderTypePoints'=>'Points',
-    'shopOrderListOrderTypeRepeatPurchaseOrder' => 'Repurchase order',
-    'shopOrderListOrderTypePointsOrder' => 'Point order',
-    'shopOrderListOrderTypeZc'=>'Welcome Pack',
-    'shopOrderListOrderTypeFx'=>'Repeat Purchase',
-    'shopOrderListCreationTime' => 'Creation Time',
-    'shopOrderListPayType' => 'Pay Type',
-    'shopOrderListPaymentTime'=>'Payment Time',
-    'shopOrderListDeliveryTime'=>'Delivery Time',
-    'shopOrderListQty' => 'Qty',
-    'shopOrderListItemPricing'=>'Item Pricing',
-    'shopOrderListTotalPrice' => 'Total Price',
-    'shopOrderListBVAmount'=>'BV Amount',
-    'shopOrderListUsTotalPrice'=>'Total Price($)',
-    'shopOrderListFreight' => 'Freight',
-    'shopOrderListTaxRate'=>'Tax Rate',
-    'shopOrderListTax' => 'Tax',
-    'shopOrderListCourierCompany' => 'Courier Services Company',
-    'shopOrderListCourierNumber' => 'Courier Number',
-    'shopOrderListShippingMethod' => 'Shipping Method',
-    'shopOrderListShippingMethodMailing' => 'Mailing',
-    'shopOrderListShippingMethodAutoPick' => 'Auto pick',
-    'shopOrderListMemberNotes' => 'Member Notes',
-    'shopOrderListShipmentStatus' => 'Shipment Status',
-    'shopOrderListIsAuto' => 'Is Auto',
-    'shopOrderListIsAutoYes' => 'Yes',
-    'shopOrderListIsAutoNo' => 'No',
-    'shopOrderListOrderNo' => 'Order No',
-    'shopOrderPaymentAmount' => 'Payment Amount',
-    'shopOrderPayBV' => 'Pay BV',
-    'total' => 'Total',
-    'date' => 'Date',
-    'orderCode' => 'Order Code',
-    'orderDetail' => 'Order Detail',
-    'productCode' => 'Product Code',
-    'productName' => 'Product Name',
-    'productPrice' => 'Product Price',
-    'qty' => 'Qty',
-    'taxRate' => 'Tax Rate',
-    'totalTax' => 'Total Tax',
-    'totalAmount' => 'Total Amount',
-    'signature' => 'Signature',
-    'orderNotExist' => 'order does not exist',
-    'orderHasBeenConnected' => 'The order has been connected to the net, and this period cannot be adjusted',
-    'invalidPcNo' => 'Invalid Pc No.',
-
-    #Log
-    'adminUserDoesNotExist'  => 'Administrator does not exist',
-    'adminUserGroupDoesNotExist'  => 'Management group does not exist',
-    'columnArrayMustExistHeader'  => 'The header must exist in the column array',
-    'operatingType'  => 'Operation Type',
-    'operatingObject'  => 'Operation object',
-    'objectNumber'  => 'Object number',
-    'requestContent'  => 'Request content',
-    'returnContent'  => 'Return content',
-    'operator'  => 'Operator',
-    'operatingTime'  => 'Operation Time',
-    'numberOfPhases'  => 'Number Of Periods',
-    'IPAddress'  => 'IP Address',
-    'client'  => 'Client',
-    'operatingSystem'  => 'Operating System',
-    'requestPath'  => 'Request Path',
-    'operationObjectNumber'  => 'Operation Object No',
-    'remarks'  => 'Remark',
-    'returnResult'  => 'Return content',
-    'successTimes'  => 'Successful login times',
-    'failTimes'  => 'Failed logins times',
-    'loginSuccess'  => 'login successfully',
-    'loginFail'  => 'Login failed',
-    'adminLoginLog'  => 'Admin login log',
-    'userLoginLog'  => 'Member login log',
-    'version'  => 'Version number',
-    'adminOperatingLog'  => 'Administrator operation log',
-    'updateNumberOfPhasesConfig'  => 'Update period configuration',
-    'updateLevelBonusConfig'  => 'Update level bonus configuration',
-    'updateBonusConfig'  => 'Update bonus configuration',
-    'updateRankBonusConfig'  => 'Update rank bonus configuration',
-    'updateTransferConfig'  => 'Update transfer configuration',
-    'requestChangeUserBalance'  => 'Apply for change of membership balance',
-    'checkUserBalance'  => 'Review member balance',
-    'batchRequestChangeUserBalance'  => 'Batch application to change member balance',
-    'blankEntry'  => 'Empty order entry',
-    'delBlankUser'  => 'Delete empty order member',
-    'changeUserLevel'  => 'Modify Member Level',
-    'applyAdjustmentUserPerformance'  => 'Apply for Adjustment of Member Performance',
-    'applyModifyUserStatus'  => 'Apply to modify member status',
-    'setTeamLeaders'  => 'Set up team leaders',
-    'checkUserStatus'  => 'Review member status',
-    'displayMap'  => 'Show map',
-    'hiddenMap'  => 'Hide map',
-    'setDeclarationCenter'  => 'Set up stockist',
-    'cancelDeclarationCenter'  => 'Cancel stockist',
-    'userActivation'  => 'Member activation',
-    'userLocking'  => 'Member lock',
-    'modifyUserInfo'  => 'Modify member information',
-    'editAdmin'  => 'Edit administrator',
-    'applyRemoveNetwork'  => 'Apply for mobile network',
-    'approveRemoveNetwork'  => 'Approved by mobile network',
-    'resetPasswords'  => 'Reset password',
-    'cancellationSystem'  => 'Revocation system',
-    'addSystem'  => 'Add system',
-    'editSystem'  => 'Edit system',
-    'recoverySystem'  => 'Recovery system',
-    'systemLog'  => 'System log',
-    'shopOrderPeriodAdjust' => 'Order Period Adjust',
-    'memberHighestEmpLvAdjust' => 'Member Highest Director Adjustment',
-    'call'  => 'Transfer',
-    'beCcalled'  => 'called',
-    'userOperatingLog'  => 'Member operation log',
-    'enableDisableAutomaticWithdrawal'  => 'Enable / Disable Automatic Withdrawal',
-    'enableDisableReSalesSMSReminder'  => 'Enable / Disable Re Sales SMS Reminder',
-    'memberTransfer'  => 'Member Transfer',
-    'memberWithdrawalApplication'  => 'Member Withdrawal Application',
-    'memberModificationInformation'  => 'Member Modification Information',
-    'modifyMasterPoint'  => 'Modify Master Point',
-    'periodNumber' => 'Period Number',
-    'serialNumber' => 'Serial Number',
-    'rank'  => 'Rank',
-    'adjustMemberHighestDirector' => 'Adjust Highest Director',
-
-    #Ad
-    'AdAddedSuccessfully' => 'Ad added successfully',
-    'EditAdSuccessfully' => 'Ad edited successfully',
-
-    #Article
-    'articleNotExists'  => 'Article does not exist',
-
-    #File
-    'mallManagement'    => 'Mall Management',
-    'memberManagement'  => 'Member Management',
-    'networkChart' => 'Network Chart',
-    'resaleManagement' => 'Resale management',
-    'bonusManagement' => 'Bonus management',
-    'financialManagement' => 'financial management',
-
-    # Public
-    'amountUnit' => '₦',
-    'sceneDoesNotExist' => 'Scene does not exist',
-    'memberDoesNotExist' => 'Member does not exist',
-    'countryDoesNotExist' => 'Country does not exist',
-    'mustSelectOneItemToDelete' => 'must select one item to delete',
-    'dataNotExists' => 'Data not exists',
-    'startExporting'=> 'Starting exporting, please go to File Management - Export Files to view.',
-    'incorrectDateFormat' => 'Incorrect date format',
-    'notConnection' => 'Connection not operated for too long',
-    'deleteFailed' => 'failed to delete',
-    'deleteSuccessfully' => 'delete successfully',
-    'quickLoginCanNotOperate' => 'Members who log in quickly cannot perform any operations',
-    'selectAtLeastOne' => 'A data must be selected',
-    'failed' => 'Failed',
-    'successfully' => 'Successfully',
-    'createAt' => 'Creation Time',
-    'status' => 'Status',
-    'state' => 'State',
-    'sort' => 'Sort',
-    'illegalRequest' => 'Illegal request',
-    'invalidParameter' => 'Invalid Parameter',
-    'dataDoesNotExists' => 'The data does not exist',
-    'operationAdministrator' => 'Operation Administrator',
-    'typeError' => 'Type error',
-    'contentError' => 'Content error',
-    'hideSuccessfully' => 'hide successfully',
-    'UnhideSuccessfully' => 'Unhide successfully',
-
-    # Member
-    'memberCode' => 'Member Code',
-    'memberName' => 'Member Name',
-    'memberAddress' => 'Member Address',
-    'memberPhone' => 'Member Phone',
-    'loginStatus' => 'Login Status',
-    'allowLogin' => 'Allow Login',
-    'prohibitLogin' => 'Prohibit Login',
-    'activate' => 'Activate',
-    'lock' => 'Lock',
-    'filterAllowLogin' => 'Filter Allow Login',
-    'bankName' => 'Bank Name',
-    'bankCode' => 'Bank Code',
-    'bankAccountNumber' => 'Bank Account Number',
-    'admin' => 'Admin',
-    'minCharge' => 'Min Charge',
-    'maxCharge' => 'Max Charge',
-    'chargeRate' => 'Charge Rate',
-    'updater' => 'Updater',
-    'userName' => 'USER_NAME',
-    'passwordHash' => 'PASSWORD_HASH',
-    'payPassword' => 'PAY_PASSWORD',
-    'nation' => 'NATION',
-    'realName' => 'REAL_NAME',
-    'IDCard' => 'ID_CARD',
-    'IDType' => 'ID_TYPE',
-    'mobile' => 'MOBILE',
-    'address' => 'ADDRESS',
-    'IDImage' => 'ID_IMAGE',
-    'openBank' => 'OPEN_BANK',
-    'bankAddress' => 'BANK_ADDRESS',
-    'bankNo' => 'BANK_NO',
-    'bankProvince' => 'BANK_PROVINCE',
-    'bankCity' => 'BANK_CITY',
-    'bankCounty' => 'BANK_COUNTY',
-    'spouseName' => 'SPOUSE_NAME',
-    'spouseIDCard' => 'SPOUSE_IDCARD',
-    'decClosed' => 'DEC_CLOSED',
-    'decClosedAt' => 'DEC_CLOSED_AT',
-    'decLv' => 'DEC_LV',
-    'empLv' => 'EMP_LV',
-    'crownLv' => 'CROWN_LV',
-    'province' => 'PROVINCE',
-    'city' => 'CITY',
-    'county' => 'COUNTY',
-    'tel' => 'TEL',
-    'subComID' => 'SUB_COM_ID',
-    'avatar' => 'AVATAR',
-    'isDec' => 'IS_DEC',
-    'isAtlas' => 'IS_ATLAS',
-    'isRecharge' => 'IS_RECHARGE',
-    'DEC_ID' => 'DEC_ID',
-    'birthday' => 'BIRTHDAY',
-    'decRoleID' => 'DEC_ROLE_ID',
-    'periodAt' => 'PERIOD_AT',
-    'decProvince' => 'DEC_PROVINCE',
-    'decCity' => 'DEC_CITY',
-    'decCounty' => 'DEC_COUNTY',
-    'isUnion' => 'IS_UNION',
-    'statusAt' => 'STATUS_AT',
-    'verified' => 'VERIFIED',
-    'verifiedAt' => 'VERIFIED_AT',
-    'notOperating' => 'NOT_OPERATING',
-    'regFrom' => 'REG_FROM',
-    'IDCardPrefix' => 'ID_CARD_PREFIX',
-    'sex' => 'SEX',
-    'decAccountOld' => 'DEC_ACCOUNT_OLD',
-    'bankUpdatedAt' => 'BANK_UPDATED_AT',
-    'isDirectSeller' => 'IS_DIRECT_SELLER',
-    'decLvUpdatedAt' => 'DEC_LV_UPDATED_AT',
-    'decLvUpdatedPeriod' => 'DEC_LV_UPDATED_PERIOD',
-    'decAddress' => 'DEC_ADDRESS',
-    'decPhone' => 'DEC_PHONE',
-    'guarantor' => 'GUARANTOR',
-    'guarantorName' => 'GUARANTOR_NAME',
-    'partFuncClosed' => 'PART_FUNC_CLOSED',
-    'lastDecLvUpdatedPeriod' => 'LAST_DEC_LV_UPDATED_PERIOD',
-    'userCreator' => 'USER_CREATOR',
-    'userUpdater' => 'USER_UPDATER',
-    'lastDecLvUpdatedAt' => 'LAST_DEC_LV_UPDATED_AT',
-    'decCreatedAt' => 'DEC_CREATED_AT',
-    'partFuncClosedRemark' => 'PART_FUNC_CLOSED_REMARK',
-    'decCreatedPeriod' => 'DEC_CREATED_PERIOD',
-    'passwordChanged' => 'PASSWORD_CHANGED',
-    'subComLeader' => 'SUB_COM_LEADER',
-    'zgUpgradePv' => 'ZG_UPGRADE_PV',
-    'appClientID' => 'APP_CLIENT_ID',
-    'readAgreement' => 'READ_AGREEMENT',
-    'lastDecLv' => 'LAST_DEC_LV',
-    'bonusAppClientID' => 'BONUS_APP_CLIENT_ID',
-    'isFirstOpen' => 'IS_FIRST_OPEN',
-    'isModifyPassword' => 'IS_MODIFY_PASSWORD',
-    'isStudio' => 'IS_STUDIO',
-    'email' => 'EMAIL',
-    'levelBeforeModification' => 'Level Before Modification',
-    'modifiedLevel' => 'Modified Level',
-    'country' => 'Country',
-    'beforeCountry' => '修改前国家',
-    'afterCountry' => '修改前国家',
-
-    'moveMember' => 'Move Member',
-    'moveMemberName' => 'Move Member Name',
-    'uperCodeBeforeMoving' => 'Uper Code Before Moving',
-    'uperCodeAfterMoving' => 'Uper Code After Moving',
-    'typeOfMoving' => 'Type Of Moving',
-    'position' => 'Position',
-    'periodOfMoving' => 'Period Of Moving',
-    'whetherToMove' => 'Whether To Move',
-    'percentage' => 'Percentage',
-    'AdministratorOfMoving' => 'Administrator Of Moving',
-    'joiningDate' => 'Joining Date',
-    'currentMemberLevel' => 'Current Member Level',
-    'currentAdjustmentDate' => 'Current Adjustment Date',
-    'PCMemberLevel' => 'PC Member Level',
-    'latestDirector' => 'Latest Director',
-    'latestCrown' => 'Highest Crown',
-    'recommendationNo' => 'Sponsor Code',
-    'recommendedName' => 'Sponsor Name',
-    'placementNo' => 'Placement No',
-    'placementName' => 'Placement Name',
-    'resettlementArea' => 'Resettlement Area',
-    'phoneNumber' => 'Phone Number',
-    'alternatePhoneNumber' => 'Alternate Phone Number',
-    'stockistCode' => 'Stockist Code',
-    'whetherStockist' => 'Whether Stockist',
-    'stockistOrNot' => 'Stockist or not',
-    'whetherChartDisplay' => 'Whether Chart Display',
-    'whetherRechargeDisplay' => 'Whether Recharge Display',
-    'stockistLevel' => 'Stockist Level',
-    'commonAddress' => 'Common Address',
-    'enableTransfer' => 'Enable Transfer',
-    'activeStatus' => 'Active Status',
-    'locking' => 'Locking',
-    'activation' => 'Activation',
-    'on' => 'On',
-    'off' => 'Off',
-    'administratorOfReviewing' => 'Administrator Of Reviewing',
-    'reviewTime' => 'Review Time',
-    'I.Market' => 'I. Market',
-    'II.Market' => 'II. Market',
-    'userMoveAuditStatus:0' => 'To be reviewed',
-    'userMoveAuditStatus:1' => 'Approved',
-    'userMoveAuditStatus:2' => 'Failed',
-    'userMoveAuditStatus:3' => 'Audit reject',
-    'levelNoChange' => '级别没有变化无需调整',
-    'studioOrNot' => 'Studio or not',
-
-    # Network
-    'placementNetwork' => 'Placement Network',
-    'sponsorNetwork' => 'Sponsor Network',
-
-
-    # Bonus
-    'memberBonus' => 'Member Bonus',
-    'memberEcoin' => 'Member Ecoin',
-    'travelIncentive' => 'Travel Incentive',
-    'carIncentive' => 'Car Incentive',
-    'villaIncentive' => 'Villa Incentive',
-    'requirePeriods' => 'Please enter Period No.',
-    'requireMemberNumber' => 'Please enter member code',
-    'payCycle' => 'Pay Cycle(PC)',
-    'sponsorNo' => 'Sponsor No',
-    'sponsorName' => 'Sponsor Name',
-    'superiorCode' => 'Superior Code',
-    'superiorName' => 'Superior Name',
-    'superiorNumber' => 'Superior Number',
-    'welcomeBonus' => 'Welcome Bonus',
-    'teamBonus' => 'Team Bonus',
-    'uncappedTeamBonus' => 'Uncapped Team Bonus',
-    'directorBonus' => 'Director Bonus',
-    'stockistCommission' => 'Stockist Commission',
-    'quarterlyBonus' => 'Quarterly Bonus',
-    'actualBonus' => 'Actual Bonus',
-    'totalBonus' => 'Total Bonus',
-    'totalRevenue' => 'Total Revenue',
-    'bonusMonth' => 'Bonus Month',
-    'oneNewMarketPerformance' => 'I. new market performance',
-    'twoNewMarketPerformance' => 'II. new market performance',
-    'oneMarketBalancePerformance' => 'I. market balance performance',
-    'twoMarketBalancePerformance' => 'II. market balance performance',
-    'managementAward' => 'Management Award',
-    'bonusDate' => 'Settlement Date',
-    'transactionType' => 'Transaction Type',
-    'memberLevel' => 'Member Level',
-    'balanceBeforeTransaction' => 'Balance Before Transaction',
-    'debitCredit' => 'Debit/Credit',
-    'newBalance' => 'New Balance',
-    'personalPerformance' => 'Personal Performance',
-    'remainderLeftLeg' => 'Remainder@Left Leg',
-    'remainderRightLeg' => 'Remainder@Right Leg',
-    'cumulativeTeamPerformance' => 'Cumulative Team Performance',
-    'salesNo' => 'Sales No',
-    'saleType' => 'Type',
-    'saleStatus' => 'Status',
-    'sponsorNoAtSettlement' => 'Sponsor No. At Settlement',
-    'sponsorNameAtSettlement' => 'Sponsor Name At Settlement',
-    'entryBV' => 'Entry BV',
-    'entryAmount' => 'Entry Amount',
-    'entryNo' => 'Entry No',
-    'orderSource' => 'Order Source',
-    'reviewed' => 'Reviewed',
-    'wastedisposal' => 'Waste disposal',
-    'whetherActive' => 'Whether Active',
-    'yes' => 'Yes',
-    'no' => 'No',
-    'declarationPerformance' => 'Declaration Performance',
-    'cancellationPerformance' => 'Cancellation Performance',
-    'LNewMarketPerformance' => 'L. New Market Performance',
-    'LNewPerformanceOfMarketEntry' => 'L. New Performance Of Market Entry',
-    'LNewPerformanceOfMarketReCancellation' => 'L. New Performance Of Market Re Cancellation',
-    'RNewMarketPerformance' => 'R. New Market Performance',
-    'RNewPerformanceOfMarketEntry' => 'R. New Performance Of Market Entry',
-    'RNewPerformanceOfMarketReCancellation' => 'R. New Performance Of Market Re Cancellation',
-    'LMarketBalancePerformance' => 'L. Market Balance Performance',
-    'RMarketBalancePerformance'=> 'R. Market Balance Performance',
-    'LMarketEntryBalancePerformance' => 'L. Market Entry Balance Performance',
-    'RMarketEntryBalancePerformance' => 'R. Market Entry Balance Performance',
-    'LMarketReconditioningBalancePerformance' => 'L. Market Reconditioning Balance Performance',
-    'RMarketReCancellationBalancePerformance' => 'R. Market Re Cancellation Balance Performance',
-    'teamPerformance' => 'Team Performance',
-    'recommenderNo' => 'Recommender No',
-    'recommenderName' => 'Recommender Name',
-    'directorRank' => 'Director Rank',
-    'directorPGSPerformance' => 'Director PGS Performance',
-    'LNewMarketEntryPerformance' => 'L. New Market Entry Performance',
-    'RNewMarketEntryPerformance' => 'R. New Market Entry Performance',
-    'LMarketMonthlyRemainingDeclarationPerformance' => 'L. Market Monthly Remaining Declaration Performance',
-    'RMarketMonthlyRemainingDeclarationPerformance' => 'R. Market Monthly Remaining Declaration Performance',
-    'monthlyNewTeamPerformance' => 'Monthly New Team Performance',
-    'monthlyCumulativeTeamPerformance' => 'Monthly Cumulative Team Performance',
-
-    # 【数据表】
-    # 会员等级
-    'dbDeclarationLevelBA' => 'BA',
-    'dbDeclarationLevelElite' => 'Elite',
-    'dbDeclarationLevelPro' => 'Pro',
-    'dbDeclarationLevelVip' => 'Vip',
-    # 管理星级
-    'dbEmployLevelNoRank' => 'No Rank',
-    'dbEmployLevel1StarDirector'  => '1-Star Director',
-    'dbEmployLevel2StarDirector'  => '2-Star Director',
-    'dbEmployLevel3StarDirector'  => '3-Star Director',
-    'dbEmployLevel4StarDirector'  => '4-Star Director',
-    'dbEmployLevel5StarDirector'  => '5-Star Director',
-    'dbEmployLevel6StarDirector'  => '6-Star Director',
-    'dbEmployLevel7StarDirector'  => '7-Star Director',
-    # 皇冠星级
-    'dbCrownLevel0StarCrown' => '0-Star Crown',
-    'dbCrownLevel1StarCrown' => '1-Star Crown',
-    'dbCrownLevel2StarCrown' => '2-Star Crown',
-    'dbCrownLevel3StarCrown' => '3-Star Crown',
-    'dbCrownLevel4StarCrown' => '4-Star Crown',
-    'dbCrownLevel5StarCrown' => '5-Star Crown',
-    'dbCrownLevel6StarCrown' => '6-Star Crown',
-    'dbCrownLevel7StarCrown' => '7-Star Crown',
-    # 报单中心级别
-    'dbDecRole1stLevelStockist'	=> '1st Level Stockist',
-    'dbDecRole2ndLevelStockist'	=> '2nd Level Stockist',
-    'dbDecRole3rdLevelStockist'	=> '3rd Level Stockist',
-    'dbDecRole4thLevelStockist'	=> '4th Level Stockist',
-    'dbDecRole5thLevelStockist'	=> '5th Level Stockist',
-    # 注册类型
-    'dbRegTypePersonal' => '个人',
-    'dbRegTypeBusiness' => '个体工商户',
-    'dbRegTypeCompany' => '公司',
-    # 交易类型
-    'dbConfigAllowWallet' => '转出转入配置',
-    'dbConfigAutoCalcPeriod' => '自动结算',
-    'dbConfigAutoClosePeriod' => '自动封期',
-    'dbConfigBackupTime' => '备份时间',
-    'dbConfigBackupWeekDate' => '备份星期',
-    'dbConfigBaseScore' => '基础分数配置',
-    'dbConfigBsNoPvPointsPercent' => '没有业绩的时候,蓝星奖金给多少业绩比例的兑换积分',
-    'dbConfigCalcYear' => '期数计算至年份',
-    'dbConfigCashReconsumeBonusPercent' => '现金购物PV算奖比例',
-    'dbConfigCloseDays' => '自动封期天数',
-    'dbConfigCloseTime' => '自动封期时间',
-    'dbConfigCloseWeekDate' => '自动封期星期',
-    'dbConfigDealSwitch' => '查看交易记录',
-    'dbConfigDecRoleBonusFrom' => '服务奖来源',
-    'dbConfigExchangeRate' => '汇率配置',
-    'dbConfigFlowBonusSwitch' => '奖金明细',
-    'dbConfigFreeShipping' => '商品免运费阈值',
-    'dbConfigInstalmentQty' => '分期商品期数',
-    'dbConfigFreight' => '商品运费',
-    'dbConfigFwCoefficientFromFxCash' => '服务奖现金复消系数',
-    'dbConfigFwCoefficientFromFxPoint' => '服务奖积分复消系数',
-    'dbConfigFwCoefficientFromZc' => '服务奖首购报单系数',
-    'dbConfigHistoryBonusLimit' => '奖金余额备份近几周',
-    'dbConfigIsCanTransferProp' => '是否开启单笔转账比例',
-    'dbConfigIsCanWithdrawBack' => '是否开启前台提现退回功能',
-    'dbConfigIsDecReg' => '只允许报单中心报单',
-    'dbConfigIsOpenUpgrade' => '是否开启会员升级单功能',
-    'dbConfigIsResaleUmbrella' => '是否只允许为伞下会员报复消单',
-    'dbConfigManageTaxPercent' => '管理费比例',
-    'dbConfigManualWithdrawMinAmount' => '手动提现最低金额',
-    'dbConfigMonthPcsPvFxCondition' => '每月个人总消费PV条件',
-    'dbConfigNewBonusSwitch' => '最新奖金',
-    'dbConfigObservePeriodLimit' => '观察期月份限制',
-    'dbConfigOpenFW' => '是否开启服务奖',
-    'dbConfigOpenGL' => '是否开启管理奖',
-    'dbConfigOpenGarage' => '车奖积分比例',
-    'dbConfigOpenGarageCap' => '车奖个人封顶值',
-    'dbConfigOpenQY' => '是否开启团队奖',
-    'dbConfigOpenQuarter' => '季度奖金',
-    'dbConfigOpenTG' => '是否开启推广奖',
-    'dbConfigOpenTourism' => '旅游积分比例',
-    'dbConfigOpenVilla' => '房奖积分比例',
-    'dbConfigOpenVillaCap' => '房奖个人封顶值',
-    'dbConfigPasswordRule' => '密码规则',
-    'dbConfigPastBonusSwitch' => '往期奖金',
-    'dbConfigPayPasswordRule' => '支付密码规则',
-    'dbConfigPvRatio' => 'PV比例',
-    'dbConfigReConsumePointsMonthCap' => '重复消费积分每月上限',
-    'dbConfigReConsumePointsPercent' => '重复消费积分比例',
-    'dbConfigRecPercent' => '推广奖比例',
-    'dbConfigShowBonusPeriodNum' => '前台可见往期奖金期数',
-    'dbConfigShowFlowPeriodNum' => '前台可见交易记录期数',
-    'dbConfigShowTransferPeriodNum' => '前台可见转账记录期数',
-    'dbConfigShowWithdrawPeriodNum' => '前台可见提现记录期数',
-    'dbConfigSiteClose' => '是否关闭网站',
-    'dbConfigSiteCloseInfo' => '关闭提示信息',
-    'dbConfigSiteTitle' => '网站标题',
-    'dbConfigTransferOpen' => '是否开启转账功能',
-    'dbConfigTransferRecordSwitch' => '前台转账记录开关',
-    'dbConfigTransferSwitch' => '前台我要转账开关',
-    'dbConfigWithdrawFee' => '提现手续费',
-    'dbConfigWithdrawFreezeDays' => '提现预付款天数',
-    'dbConfigReportAlarmOpen' => '是否开启预警信息推送',
-
-    # 【参数】
-    # 钱包类型
-    'cashWallet' => 'Cash wallet',
-    # 用户状态
-    'userStatusInactive' => 'Inactive',
-    'userStatusNormal' => 'Normal',
-    'userStatusLogout' => 'Logout',
-    'userStatusBlacklist' => 'Blacklist',
-    'userStatusSuspended' => 'Suspended',
-    'userStatusPermanentShutDown' => 'Permanent shut down',
-    # 奖金类型
-    'bonusWalletTypeAccountBonus' => 'Account bonus',
-    'bonusWalletTypeResellingPointsBalance' => 'Reselling points balance',
-    'bonusWalletTypeAccountEcoin' => 'Account Ecoin',
-    'bonusWalletTypeExchangePointsBalance' => 'Exchange points balance',
-    'bonusWalletTypeTravelPointsBalance' => 'Travel points balance',
-    'bonusWalletTypeCarPointsBalance' => 'Car points balance',
-    'bonusWalletTypeVillaPointsBalance' => 'Villa points balance',
-    # 审核状态
-    'auditStatusUnaudited' => 'Unaudited',
-    'auditStatusAudited' => 'Audited',
-    'auditStatusAuditFailure' => 'Audit failure',
-    'auditStatusRefused' => 'Refused',
-    # 发货状态
-    'deliveryStatusUndelivered' => 'Undelivered',
-    'deliveryStatusDelivered' => 'Delivered',
-    'deliveryStatusConfirmReceipt' => 'Confirm receipt',
-    # 导出模块
-    'exportModuleShop' => 'Mall Management',
-    'exportModuleMember' => 'Member Management',
-    'exportModuleNetwork' => 'Network Chart',
-    'exportModuleResale' => 'Resale Management',
-    'exportModuleBonus' => 'Bonus Management',
-    'exportModuleShopFinancial' => 'Financial Management',
-    # 订单状态
-    'orderStatusUnpaid' => 'Unpaid',
-    'orderStatusPaid' => 'Paid',
-    'orderStatusLogisticsStatus' => 'Logistics status',
-    'orderStatusOrderCompletion' => 'Order completion',
-    'orderStatusOrderCancellation' => 'Order cancellation',
-    'orderStatusOrderDeletion' => 'Order deletion',
-    'orderStatusOrderRefund' => 'Order refund',
-    'orderStatusPaymentFailed' => 'Payment failed',
-    # 流水类型
-    'shopFlowTypeRemittanceRecharge' => 'Remittance recharge',
-    'shopFlowTypeThirdPartyRecharge' => 'Rhird-party recharge',
-    'shopFlowTypeTransferOut' => 'Transfer out',
-    'shopFlowTypeTransferInto' => 'Transfer into',
-    'shopFlowTypePay' => 'Pay',
-    'shopFlowTypeWelcomePackRecharge' => 'Welcome pack recharge',
-    'shopFlowTypeOrderRecharge' => 'Order recharge',
-    'shopFlowTypeFreightPayment' => 'Freight payment',
-    'shopFlowTypeAdjustedRecharge' => 'Adjusted recharge',
-    'shopFlowTypeAdjustedDeduct' => 'Adjusted deduct',
-    'shopFlowTypeAdjustedTransferOut' => 'Adjusted transfer out',
-    'shopFlowTypeAdjustedTransferIn' => 'Adjusted transfer in',
-    'shopFlowTypeExchangeRecharge' => 'Exchange recharge',
-    'shopFlowTypeExchangeDeduct' => 'Exchange deduct',
-    'shopFlowTypeDeleteOrderDeduct' => 'Delete order deduct',
-    'shopFlowTypeDeleteOrderRecharge' => 'Delete order recharge',
-    'shopFlowTypeDeleteOrderReturn' => 'Delete order return',
-    'shopFlowTypeRepairPayment' => 'Repair payment',
-    'shopFlowTypeAfterSaleExchangeRecharge' => 'After-sale exchange recharge',
-    'shopFlowTypeAfterSaleExchangeDeduct' => 'After-sale exchange deduct',
-    'shopFlowTypeOMSDeduct' => 'OMS deduct',
-    'shopFlowTypeDeduct' => 'Deduct',
-    'shopFlowTypeIncrease' => 'Increase',
-    'shopFlowTypeOther' => 'Other',
-    'shopFlowTypeAdministratorManualAdjustment' => 'Administrator manual adjustment',
-    # 国家
-    'dbCountriesdz' => "COTE D'IVOIRE",
-    'dbCountriesao' => 'ALGERIA',
-    'dbCountriesbj' => 'BOTSWANA',
-    'dbCountriesbw' => 'BURKINA FASO',
-    'dbCountriesbf' => 'ANGOLA',
-    'dbCountriesbi' => 'BENIN',
-    'dbCountriescm' => 'CHAD',
-    'dbCountriescv' => 'COMOROS',
-    'dbCountriescf' => 'CAMEROON',
-    'dbCountriestd' => 'SOUTH SUDAN',
-    'dbCountrieskm' => 'GUINEA',
-    'dbCountriescg' => 'CAPE VERDE',
-    'dbCountriesci' => 'CENTRAL AFRICA REPUBLIC',
-    'dbCountriesdj' => 'CONGO',
-    'dbCountriescd' => 'BURUNDI',
-    'dbCountrieseg' => 'DJIBOUTI',
-    'dbCountriesgq' => 'GABON',
-    'dbCountrieser' => 'DR CONGO',
-    'dbCountriessz' => 'SOUTH AFRICA',
-    'dbCountrieset' => 'EGYPT',
-    'dbCountriesga' => 'EQUATORIAL GUINEA',
-    'dbCountriesgm' => 'ESWATINI',
-    'dbCountriesgh' => 'ERITREA',
-    'dbCountriesgn' => 'ETHIOPIA',
-    'dbCountriesgw' => 'GAMBIA',
-    'dbCountrieske' => 'GHANA',
-    'dbCountriesls' => 'KENYA',
-    'dbCountrieslr' => 'GUINEA - BISSAU',
-    'dbCountriesly' => 'LESOTHO',
-    'dbCountriesmg' => 'LIBYA',
-    'dbCountriesmw' => 'MAURITANIA',
-    'dbCountriesml' => 'MADAGASCAR',
-    'dbCountriesmr' => 'MALAWI',
-    'dbCountriesmu' => 'MALI',
-    'dbCountriesma' => 'LIBERIA',
-    'dbCountriesmz' => 'MAURITIUS',
-    'dbCountriesna' => 'MOROCCO',
-    'dbCountriesne' => 'MOZAMBIQUE',
-    'dbCountriesng' => 'NAMIBIA',
-    'dbCountriesrw' => 'NIGER ',
-    'dbCountriesst' => 'SOMALIA',
-    'dbCountriessn' => 'SENEGAL',
-    'dbCountriessc' => 'NIGERIA',
-    'dbCountriessl' => 'SAO TOME & PRINCIPE',
-    'dbCountriesso' => 'SEYCHELLES',
-    'dbCountriesza' => 'UGANDA',
-    'dbCountriesss' => 'SIERRA LEONE',
-    'dbCountriessd' => 'RWANDA',
-    'dbCountriestz' => 'TOGO',
-    'dbCountriestg' => 'SUDAN',
-    'dbCountriestn' => 'TANZANIA',
-    'dbCountriesug' => 'TUNISIA',
-    'dbCountrieszm' => 'ZAMBIA',
-    'dbCountrieszw' => 'ZIMBABWE',
-];

+ 0 - 316
common/messages/sw-KE/app.php

@@ -1,316 +0,0 @@
-<?php
-return [
-    # 商城
-    'addressId' => 'Address',
-    'reconsume' => 'Reconsume',
-    'orderCode' => 'Order Code',
-    'orderDetail' => 'Order Detail',
-    'productCode' => 'Product Code',
-    'productName' => 'Product Name',
-    'productPrice' => 'Product Price',
-    'qty' => 'Qty',
-    'taxRate' => 'Tax Rate',
-    'totalTax' => 'Total Tax',
-    'totalAmount' => 'Total Amount',
-    'total' => 'Total',
-    'signature' => 'Signature',
-    'date' => 'Date',
-    'accountBalance' => 'Account Balance',
-    'travelBonus' => 'Travel Bonus',
-    'carFund' => 'Car Fund',
-    'villaFund' => 'Villa Fund',
-    'reconsumeSuccessfully' => '帮会员复消成功',
-    'reconsumeRemark' => '复销备注',
-    'standardProducts' => 'Standard Products',
-    'carFundProducts' => 'Car Fund Products',
-    'villaFundProducts' => 'Villa Fund Products',
-    'travelFundProducts' => 'Travel Fund Products',
-    'insufficientInventory' => 'Insufficient inventory',
-    'soldOut' => 'Sold out',
-    'productsDoesNotExists' => 'Products does not exists!',
-    'allowOnlyOne' => 'Only 1 can be purchased at a time',
-    'canNotBuy' => 'Please pay in EPP order',
-    'instalmentGoodsNoError' => 'Products No. error',
-    'instalmentOrderInProcess' => '分期商品订单未完成',
-    'productsDoesSoldOut' => 'Products has sold out!',
-    'cashDoesNotAdequate' => '余额不足,无法购买商品',
-    'exchangePointDoesNotAdequate' => '兑换积分不足,无法购买商品',
-    'travelPointDoesNotAdequate' => '旅游积分不足,无法购买商品',
-    'carFundPointDoesNotAdequate' => '车奖积分不足,无法购买商品',
-    'villaPointDoesNotAdequate' => '房奖积分不足,无法购买商品',
-    'paymentInfoDoesNotExists' => '支付信息不存在',
-    'payAmountNotEqualOrderAmount' => '支付金额与订单金额不符',
-    'orderSn' => 'Order Code',
-    'expressCompany' => 'Express Company',
-    'orderTrackNo' => 'Track Code',
-    'remark' => 'Remark',
-    'orderType' => 'Order Type',
-    'payType' => 'Pay Type',
-    'productID' => 'Product ID',
-    'quantity' => 'Quantity',
-    'repeatSalesMemberNo' => 'UserName',
-    'consigneeNo' => 'Consignee',
-    'acceptMobile' => 'Accept Mobile',
-    'lgaName' => 'Lga Name',
-    'cityName' => 'City Name',
-    'detailAddress' => 'Address',
-    'shippingAddress' => 'shipping Address',
-
-    'orderDoesNotExist' => 'the order does not exist',
-    'orderHasBeenCancelCanNotDeliver ' => '订单已取消不能发货',
-    'orderHasBeenDeleteCanNotDeliver' => '订单已删除不能发货',
-    'orderPayStatusDoesNotSupportRefund' => '订单状态支付状态不支持退款',
-    'orderLogisticsStatusDoesNotSupportRefund' => '订单物流状态不支持退款',
-    'orderPayTypeDoesNotSupportRefund' => '订单支付方式不支持退款',
-    'paymentPasswordError' => 'The payment password is incorrect',
-    'shippingDoesNotExist' => 'the shipping address does not exist',
-    'payTypeError' => '支付方式错误',
-    'orderCanNotHasMoreClassification' => '订单不能包含多种商品分类',
-    'shopGoodClassificationError' => '商品分类错误',
-    'orderStatusTypeError' => '订单状态类型错误',
-    'orderStatusDoesNotChange' => '订单状态没有改变',
-    'orderHasBeenLogisticsStatusDoesNotChangedUnpaid' => '订单已经进入物流状态不能改为未支付',
-    'orderHasBeenInvalidCanNotProcess' => '订单已失效不能处理',
-    'orderCanNotBeenChangedLogistics' => '订单不能单独处理为物流状态',
-    'orderHasBeenFinishedCanNotCancel' => '订单已完成不能取消',
-    'orderHasBeenDeletedCanNotCancel' => '订单已删除不能取消',
-    'orderHasBeenFinishedCanNotDelete' => '订单已完成不能删除',
-    'flowTypeError' => '流水类型错误',
-    'flowCreateError' => '流水产生错误',
-    'doesNotYourSubMemberCanNotReconsume' => '不是您的伞下会员,不能为其复消',
-    'membersResellingBalancePayment' => 'Members reselling balance payment',
-    'membersExchangePointPayment' => '会员复销积分兑换',
-    'orderCanNotContainMultipleProductCategories' => 'Order cannot contain multiple product categories',
-
-
-    # 会员
-    'memberCode' => 'Member Code',
-    'memberName' => 'Member Name',
-    'memberAddress' => 'Member Address',
-    'memberPhone' => 'Member Phone',
-    'bankName' => 'Bank Name',
-    'bankCode' => 'Bank Code',
-    'admin' => 'Admin',
-    'minCharge' => 'Min Charge',
-    'maxCharge' => 'Max Charge',
-    'chargeRate' => 'Charge Rate',
-    'updater' => 'Updater',
-    'userName' => 'USER_NAME',
-    'passwordHash' => 'PASSWORD_HASH',
-    'payPassword' => 'PAY_PASSWORD',
-    'nation' => 'NATION',
-    'realName' => 'REAL_NAME',
-    'IDCard' => 'ID_CARD',
-    'IDType' => 'ID_TYPE',
-    'mobile' => 'MOBILE',
-    'address' => 'ADDRESS',
-    'IDImage' => 'ID_IMAGE',
-    'openBank' => 'OPEN_BANK',
-    'bankAddress' => 'BANK_ADDRESS',
-    'bankNo' => 'BANK_NO',
-    'bankProvince' => 'BANK_PROVINCE',
-    'bankCity' => 'BANK_CITY',
-    'bankCounty' => 'BANK_COUNTY',
-    'spouseName' => 'SPOUSE_NAME',
-    'spouseIDCard' => 'SPOUSE_IDCARD',
-    'decClosed' => 'DEC_CLOSED',
-    'decClosedAt' => 'DEC_CLOSED_AT',
-    'decLv' => 'DEC_LV',
-    'empLv' => 'EMP_LV',
-    'crownLv' => 'CROWN_LV',
-    'province' => 'PROVINCE',
-    'city' => 'CITY',
-    'county' => 'COUNTY',
-    'tel' => 'TEL',
-    'subComID' => 'SUB_COM_ID',
-    'avatar' => 'AVATAR',
-    'isDec' => 'IS_DEC',
-    'isAtlas' => 'IS_ATLAS',
-    'isRecharge' => 'IS_RECHARGE',
-    'DEC_ID' => 'DEC_ID',
-    'birthday' => 'BIRTHDAY',
-    'decRoleID' => 'DEC_ROLE_ID',
-    'periodAt' => 'PERIOD_AT',
-    'decProvince' => 'DEC_PROVINCE',
-    'decCity' => 'DEC_CITY',
-    'decCounty' => 'DEC_COUNTY',
-    'isUnion' => 'IS_UNION',
-    'statusAt' => 'STATUS_AT',
-    'verified' => 'VERIFIED',
-    'verifiedAt' => 'VERIFIED_AT',
-    'allowLogin' => 'ALLOW_LOGIN',
-    'notOperating' => 'NOT_OPERATING',
-    'regFrom' => 'REG_FROM',
-    'IDCardPrefix' => 'ID_CARD_PREFIX',
-    'sex' => 'SEX',
-    'decAccountOld' => 'DEC_ACCOUNT_OLD',
-    'bankUpdatedAt' => 'BANK_UPDATED_AT',
-    'isDirectSeller' => 'IS_DIRECT_SELLER',
-    'decLvUpdatedAt' => 'DEC_LV_UPDATED_AT',
-    'decLvUpdatedPeriod' => 'DEC_LV_UPDATED_PERIOD',
-    'decAddress' => 'DEC_ADDRESS',
-    'decPhone' => 'DEC_PHONE',
-    'guarantor' => 'GUARANTOR',
-    'guarantorName' => 'GUARANTOR_NAME',
-    'partFuncClosed' => 'PART_FUNC_CLOSED',
-    'lastDecLvUpdatedPeriod' => 'LAST_DEC_LV_UPDATED_PERIOD',
-    'userCreator' => 'USER_CREATOR',
-    'userUpdater' => 'USER_UPDATER',
-    'lastDecLvUpdatedAt' => 'LAST_DEC_LV_UPDATED_AT',
-    'decCreatedAt' => 'DEC_CREATED_AT',
-    'partFuncClosedRemark' => 'PART_FUNC_CLOSED_REMARK',
-    'decCreatedPeriod' => 'DEC_CREATED_PERIOD',
-    'passwordChanged' => 'PASSWORD_CHANGED',
-    'subComLeader' => 'SUB_COM_LEADER',
-    'zgUpgradePv' => 'ZG_UPGRADE_PV',
-    'appClientID' => 'APP_CLIENT_ID',
-    'readAgreement' => 'READ_AGREEMENT',
-    'lastDecLv' => 'LAST_DEC_LV',
-    'bonusAppClientID' => 'BONUS_APP_CLIENT_ID',
-    'isFirstOpen' => 'IS_FIRST_OPEN',
-    'isModifyPassword' => 'IS_MODIFY_PASSWORD',
-    'isStudio' => 'IS_STUDIO',
-    'email' => 'EMAIL',
-
-    'fillingUpOfADeficit' => 'filling up of a deficit',
-    'fullPayment' => 'full payment',
-
-    'personalDataModifiedSuccessfully' => 'Personal data modified successfully',
-    'passwordModifiedSuccessfully' => 'Password modified successfully',
-    'theFunctionIsNotAvailable' => 'The function is not available',
-    'inactiveUser' => 'Inactive user. Please contact customer service.',
-    'checkPerformance' => 'Please contact customer service to check performance.',
-    'checkPerformanceOfUpgradedMember' => 'Please contact the customer service personnel to check the performance of upgraded members',
-    'memberNumberExpired' => 'Member number expired',
-    'memberNumberDoesNotConformTo' => 'Member number does not conform to',
-    'failedToGenerateMemberNumber' => 'Failed to generate member number',
-    'memberNumberDoesNotExist' => 'Member number does not exist',
-    'repeatSalesMemberNoDoesNotExist' => 'Repeat sales Member No. does not exist',
-    'memberDoesNotExist' => 'Member does not exist',
-    'memberDoesNotInSamePlacementNetwork' => 'The member is not in the same placement network as the current user',
-    'viewSubMembersMost' => 'View the top 20 sub members of the member at most',
-    'upgradeMethodIncorrect' => 'The upgrade method is incorrect. Please contact the customer service personnel',
-
-    'originalLoginPasswordError' => 'Original login password error',
-    'originalPaymentPasswordError' => 'Original payment password error',
-    'userNameNotExists' => 'Nonexistent user name',
-    'pleaseSelectUpgradeLevel' => 'Please select upgrade level',
-    'totalPVLessThan' => 'Total PV cannot be less than the selected level PV',
-    'totalPvExceedPv' => 'The total PV cannot exceed the PV value of the next level under the selected level',
-    'deliveryTemporarilyNotSupported' => 'Delivery is temporarily not supported in the region. Contact customer service for details',
-    'applicantCashShort' => 'The applicant is short of cash and cannot complete the declaration',
-    'failedToUpgrade' => 'Failed to upgrade for member',
-    'bulkDeclarationNotSames' => 'Bulk declaration member must be the same member',
-    'reportFormatIncorrect' => 'The format of the report data is incorrect',
-    'memberNumberCanNotContainChineseCharacters' => 'Member number cannot contain Chinese characters',
-    'pleaseSelectTheEntryLevel' => 'Please select the entry level',
-    'totalBVCanNotLessThanSelectedBV' => 'Please choose the correct Entry Level.',
-    'totalBVCanNotLessThanNextSelectedLevelBV' => 'Please choose the correct Entry Level.',
-    'incorrectEntryType' => 'Incorrect entry type',
-    'MembershipNumberFilledInitialPurchase' => 'Membership number must be filled in for initial purchase',
-    'fillTheInstructorNumberTheMember' => 'For the first purchase, you must fill in the instructor number of the member',
-    'sponsorNumberMustBeFilled' => 'For the first purchase, the Sponsor number of the member must be filled in',
-    'beFilledTheMarketMember' => 'The first purchase must be filled in the market of the member',
-    'pleaseSelectMarket' => 'Please select a market',
-    'stockistDoesNotExist' => 'Stockist does not exist',
-    'newMemberDoesNotExist' => 'New member does not exist',
-    'brandAmbassadorUpgradeError' => 'Brand Ambassador upgrade error',
-    'changeUserStatusError' => 'change user status error',
-    'dataFormatError' => 'Data format error',
-    'decUserNameDoesNotExist' => '请输入报单中心编号',
-    'decUserNameIsWrong' => '报单中心编号输入错误',
-
-
-
-    # 奖金
-    'memberBonus' => 'Member Bonus',
-    'memberEcoin' => 'Member Ecoin',
-    'carPoints' => 'Car Points',
-    'villaPoints' => 'Villa Points',
-    'increase' => 'increase',
-    'reduce' => 'reduce',
-    'cannotViewThisPeriod' => 'Cannot view this period',
-    'bonusRecordDoesNotExists' => 'The bonus record does not exists of this period',
-    'pleaseSelectThePeriod' => 'Please select the period',
-    'withdrawalApplicationHasBeenSubmitted' => 'Withdrawal application has been submitted, please wait for review.',
-    'withdrawHasBeenBacked' => 'Withdraw has been backed',
-    'withdrawDoesNotAllowedOfAuthentication' => '未实名验证无法提现',
-    'withdrawDoesNotAllowedOfSubsidiaryMember' => '附属会员无法提现',
-    'autoWithdrawHasBeenOpened' => '已开启自动提现,如需手动提现请关闭自动提现',
-    'withdrawNotAllowOfDate' => '未到提现日期,请在每月挂网后第一周申请提现',
-    'withdrawAllowOnceOfMonth' => '提现失败,每月只可以提现一次',
-    'withdrawRecordHasNotVerify' => '提现失败,您存在未审核的提现记录',
-    'notionalPoolingAmountFinished' => '归集完成,归集金额',
-    'withdrawDoesNotUploadInvoice' => '该提现记录无法上传发票',
-    'transferDoesNotAllowedOfAuthentication' => '未实名验证无法转账',
-    'transferDoesNotAllowed' => '不允许转账',
-    'transferDoesNotOpen' => '转账功能未启用',
-    'transferTypeDoesNotExists' => '没有可用的转账类型',
-    'rechargeApplicationHasBeenSubmitted' => 'Recharge application has been submitted, please wait for review.',
-
-    # 设置
-    'autoWithdrawHasBeenClosed' => '开启关闭自动提现成功',
-    'closeMessageSendSuccessfully' => '开启关闭复销短信提醒成功',
-    'changeDefaultAddressFailed' => '更新默认地址失败',
-    'addShippingAddressSuccessfully' => '添加收货地址成功',
-    'updateUserConfigFailed' => '更新个人设置失败',
-    'isAutoWithdraw' => '是否自动提现',
-    'allowReconsumeSms' => '开启复销短信通知',
-    'pleaseAuthentication' => '请先实名认证',
-    'systemCloseAutoWithdraw' => '系统关闭了自动提现',
-    'systemCloseReconsumeSMSNotification' => '系统关闭了开启复销短信通知',
-    'openAutoWithdraw' => '开启关闭自动提现',
-    'updateUserSMSExpiredFailed' => '更新个人短信有效期失败',
-    'modeDoesNotExist' => '不存在此方式',
-    'currencyDoesNotExist' => '未设置汇率',
-    'countryDoesNotSelect' => '未选择国家',
-    'transferMemberDoesNotSame' => '转账会员非本国会员',
-
-    # 首页
-    'pcOf' => 'PC of ',
-
-    # 财务
-    'statueError' => 'Status error',
-    'notAllowedToTransferToYourself' => 'Not allowed to transfer to yourself',
-    'wrongTransactionType' => 'Wrong transaction type',
-    'isCanWithdrawBack' => '提现退回已关闭',
-    'withdrawRecordDoesNotExist' => '符合退回的提现记录不存在',
-
-
-    # 登录
-    'refreshTokenFailed' => 'refresh token failed',
-    'passwordChangeSucceeded' => 'Password change succeeded',
-    'accountDoesNotExist' => 'The account does not exist',
-    'memberNameOrPasswordIncorrect' => 'The member name or password is incorrect',
-    'abnormalMemberCode' => 'Abnormal member code',
-    'memberNotActivated' => 'Member not activated',
-    'memberHasBeenCancelled' => 'The member has been cancelled',
-    'memberHasBeenBlacklisted' => 'The member has been blacklisted',
-    'memberHasBeenPermanentlySuspended' => 'The member has been permanently suspended',
-    'memberPartOfFunctionClosed' => 'Member part of the function is closed, unable to log in.',
-    'memberAppDeviceInformationUpdateFailed' => 'Member APP device information update failed',
-
-    # 文章
-    'category' => 'Category',
-    'title' => 'Title',
-    'content' => 'Content',
-    'articleDoesNotExist' => 'The article does not exist',
-
-    # 公用
-    'notConnection' => 'Connection not operated for too long',
-    'deleteFailed' => 'failed to delete',
-    'deleteSuccessfully' => 'delete successfully',
-    'quickLoginCanNotOperate' => '快速登录的会员无法进行任何操作',
-    'selectAtLeastOne' => '必须选择一条数据',
-    'failed' => 'Failed',
-    'successfully' => 'Successfully',
-    'createAt' => 'Creation Time',
-    'status' => 'Status',
-    'state' => 'State',
-    'sort' => 'Sort',
-    'illegalRequest' => 'Illegal request',
-    'invalidParameter' => 'Invalid Parameter',
-    'dataDoesNotExists' => 'The data does not exist',
-
-
-];

+ 0 - 904
common/messages/sw-KE/ctx.php

@@ -1,904 +0,0 @@
-<?php
-return [
-    #Admin
-    'AdminAddedSuccessfully' => 'Administrator added successfully',
-    'AdminEditedSuccessfully' => 'Administrator edited successfully',
-    'passwordChangeSucceeded' => 'Password change succeeded',
-    'successAddAdminRole' => 'Admin role added successfully',
-    'editAdminRoleSuccess' => 'Edit admin role successfully',
-    'roleDoesNotExist' => 'Role does not exist',
-    'successSetAdminRolePermissions' => 'Set administrator role permissions successfully',
-    'successSetAdminRoleListFieldPermissions' => 'Set administrator role list field permissions successfully',
-    'adminUnderSelectedRoleCannotDeleted' => 'Administrators under the selected role cannot be deleted',
-    'twoPasswordsMustSame' => 'The two passwords must be the same',
-    'memberNameDoesNotExist' => 'The member name does not exist',
-    'loginPasswordHasNotChanged' => 'The login password has not changed',
-    'oldLoginPasswordIncorrect' => 'The old login password is incorrect',
-    'submissionDoesNotExist' => 'The submission does not exist',
-    'passwordLeastEightCharacters' => 'The password must contain at least eight characters',
-    'passwordRule' => 'The password must contain at least two types of digits, capital letters, small letters and special characters',
-    'unableToDeleteOneSelf' => "Can't delete yourself",
-    'resetPwdSucessNotice' => 'Password reset successfully',
-
-    #Finance
-    'commonModelsWithdrawStatusNameStatusApplied' => 'Applied',
-    'commonModelsWithdrawStatusNameStatusAudited' => 'Withdrawal has been reviewed',
-    'commonModelsWithdrawStatusNameStatusWaitPaid' => 'Unpaid',
-    'commonModelsWithdrawStatusNameStatusPaidFalse' => 'Failed',
-    'commonModelsWithdrawStatusNameStatusRefused' => 'Refused',
-    'commonModelsWithdrawStatusNameStatusPaid' => 'Withdrawal has been paid',
-    'commonModelsWithdrawStatusNameStatusReturned' => 'Returned',
-    'backendApiControllersFinaceRechargeStatusApprove' => 'Approve',
-    'backendApiControllersFinaceRechargeStatusReject' => 'Reject',
-    'modelListFinanceBalanceAuditListUserName' => 'Member Code',
-    'modelListFinanceBalanceAuditListRealName'=>'Member Name',
-    'modelListFinanceBalanceAuditListMemberLevel'=> 'Member level',
-    'modelListFinanceBalanceAuditListStockistLevel'=> 'Stockist level',
-    'modelListFinanceBalanceAuditListEmpLevel'=>'Rank',
-    'modelListFinanceBalanceAuditListTypeName'=>'Account type',
-    'modelListFinanceBalanceAuditListDealType'=>'Transaction type',
-    'modelListFinanceBalanceAuditListAmount'=>'Adjustment amount',
-    'modelListFinanceBalanceAuditListRemark'=>'Remark',
-    'modelListFinanceBalanceAuditListRemarkIsShow'=>'Whether The Front Desk Displays Comments',
-    'modelListFinanceBalanceAuditListAuditStatusName'=>'Audit status',
-    'modelListFinanceBalanceAuditListApplicant'=>'applicant',
-    'modelListFinanceBalanceAuditListCreatedAt'=>'Application time',
-    'modelListFinanceBalanceAuditListAuditName'=>'Reviewed by',
-    'modelListFinanceBalanceAuditListAuditTime'=>'Audit time',
-    'modelListFinanceTranserListTransferSn'=>'Transfer record serial number',
-    'modelListFinanceTranserListLastOutUserName'=>'Transfer out Member No',
-    'modelListFinanceTranserListLastOutRealName'=>'Name of transfer out member',
-    'modelListFinanceTranserListLastOutDecLvName'=>'Transfer out of member level',
-    'modelListFinanceTranserListOutWallet'=>'Transfer out account',
-    'modelListFinanceTranserListLastInUserName'=>'Transfer to member code',
-    'modelListFinanceTranserListLastInRealName'=> 'Transfer to member name',
-    'modelListFinanceTranserListLastInDecLvName'=>'Transfer to member level',
-    'modelListFinanceTranserListInWallet'=>'Transfer account',
-    'modelListFinanceTranserListOriAmount'=>'Transfer amount',
-    'modelListFinanceTranserListFee'=>'Service charge',
-    'modelListFinanceTranserListAmount'=>'Actual transfer amount',
-    'modelListFinanceTranserListCreatedAt'=>'Transfer time',
-    'modelListFinanceTranserListPeriodNum'=>'Transfer PC',
-    'financeControllerTransferListExport'=>'Transfer_List',
-    'modelListFinanceWithdrawSn'=>'Withdrawal serial number',
-    'modelListFinanceWithdrawPeriod'=>'Period',
-    'modelListFinanceWithdrawAt'=>'Withdrawal time',
-    'modelListFinanceWithdrawState'=>'State',
-    'modelListFinanceWithdrawAmount'=>'Withdrawal amount',
-    'modelListFinanceWithdrawFees' => 'Bank charge',
-    'modelListFinanceWithdrawRealAmount' => 'Actual amount',
-    'modelListFinanceWithdrawBank' => 'Bank info',
-    'modelListFinanceWithdrawBankNo' => 'Bank account',
-    'modelListFinanceWithdrawMobile' => 'Phone Number',
-    'modelListFinanceWithdrawUpdateAdminName' => 'Operations administrator',
-    'modelListFinanceWithdrawBackRemark' => 'Return note',
-    'modelListFinanceWithdrawWithdrawalTime'=>'Withdrawal time',
-    'modelsListsFinanceRechargeListgetColumnSn' => 'SN',
-    'modelsListsFinanceRechargeListgetColumnBank' => 'Bank',
-    'modelsListsFinanceRechargeListgetColumnBankNo' => 'Bank account',
-    'modelsListsFinanceRechargeListgetColumnAuditStatus' => 'Audit Status',
-    'modelsListsFinanceRechargeListgetColumnAmount' => 'Recharge amount',
-    'modelsListsFinanceRechargeListgetColumnCreatedAt' => 'Apply time',
-    'modelsListsFinanceRechargeListgetColumnRemark' => 'Remark',
-    'rechargeRecordSerialNumber'=>'Recharge record serial number',
-    'rechargeAuditStatusToBeReviewed'=>'To be reviewed',
-    'rechargeAuditStatusVoucherUploaded'=>'Voucher uploaded',
-    'rechargeAuditStatusAudited'=>'Audited',
-    'rechargeRechargeState'=>'Recharge State',
-    'rechargeRechargeStateNew'=>'New',
-    'rechargeRechargeStateProcessing'=>'Processing',
-    'rechargeRechargeStateSuccess'=>'Success',
-    'shopOrderListUndelivered' => 'Undelivered',
-    'shopOrderListDelivered'=>'Delivered',
-    'shopOrderListConfirmReceipt' => 'Confirm receipt',
-    'shopOrderListGetOrderStatusUnpaid' => 'Unpaid',
-    'shopOrderListGetOrderStatusPaid' => 'Paid',
-    'shopOrderListGetOrderStatusLogisticsStatus' => 'Logistics status',
-    'shopOrderListGetOrderStatusOrderCompletion' => 'Order completion',
-    'shopOrderListGetOrderStatusOrderCancellation' => 'Order cancellation',
-    'shopOrderListGetOrderStatusOrderDeletion' => 'Order deletion',
-    'shopOrderListGetOrderStatusOrderDeletionOrderRefund' => 'Order refund',
-    'shopOrderListGetOrderStatusPaymentFailed' => 'Payment failed',
-    'balanceAuditListGetBalanceAuditType' => 'Member bonus account',
-    'balanceAuditListCash' => 'Member Ecoin account',
-    'balanceAuditListGaragePoints' => 'Car points',
-    'balanceAuditListVillaPoints' => 'Villa points',
-    'financeRechargeListStatusTobeReviewed' => 'To be reviewed',
-    'financeRechargeListStatusApproved' => 'Approved',
-    'financeRechargeListStatusVoucherUploaded' => 'Voucher uploaded',
-    'financeRechargeListStatusRejected' => 'Rejected',
-    'rechargeStatusTitle:0' => 'To be reviewed',
-    'rechargeStatusTitle:1' => 'Voucher uploaded',
-    'rechargeStatusTitle:2' => 'Approved',
-    'rechargeStatusTitle:3' => 'Rejected',
-    'rechargeStatus:0' => 'NEW',
-    'rechargeStatus:1' => 'PROCESSING',
-    'rechargeStatus:2' => 'SUCCESS',
-    'rechargeStatus:3' => 'FAILED',
-
-    'memberEcoinAdjustmentListFileName'=> 'Member_Ecoin_adjustment_list',
-    'applicationChangeBalanceSucceeded'=> 'Application for change of member balance succeeded',
-    'applicationCannotReviewedAgain'=> 'The application has been reviewed and cannot be reviewed again',
-    'idNotMatchName'=>'Member code does not match member name',
-    'incorrectBalanceType'=>'Incorrect balance type',
-    'incorrectTransactionType'=>'Incorrect transaction type',
-    'adjustmentAmountCannotZero'=>'The adjustment amount cannot be 0',
-    'pointsEnoughAdjustmentNotAllowed' => "Insufficient balance of member's repurchase points, adjustment is not allowed",
-    'cannotSetPendingReview' => 'Cannot be set to pending review',
-    'auditCannotRepeated' => 'The audit has been approved and cannot be repeated',
-    'rejectedAuditCannotRepeated'=> 'It has been reviewed and rejected and cannot be reviewed again',
-    'statusParameterError' => 'Wrong state parameter',
-    'adjustmentBalanceCodeFailed' => 'Balance adjustment verification code failed',
-    'aPieceMustBeSelected' => 'A piece of data must be selected',
-    'noEligibleData' => 'No matching data',
-    'modificationAdjustmentMemberBalanceCompleted'=>'Modification and adjustment of member balance entry data completed',
-    'reviewThroughMemberBalance'=>'The review is done through the member balance',
-    'batchAuditMemberBalanceCompleted'=>'Batch audit/audit reject member balance completed',
-    'addedMemberSuccessfullyWithdrewCash' => 'The newly added member successfully withdrew cash',
-    'withdrawalInformationModifiedSuccessfully'=>'The withdrawal information is modified successfully',
-    'withdrawalApplyDoesNotExist'=>'Withdrawal request does not exist',
-    'memberNameOrNumberInconsistentSystem' => 'Withdrawal member code does not match member ID',
-    'memberRegisterTypeInconsistentWithSystem'=>'The selected member registration type is inconsistent with the system',
-    'withdrawalMustGreaterThanZero'=>'Withdrawal amount must be greater than 0',
-    'withdrawalAmountMustInteger' => 'Withdrawal amount must be an integer',
-    'withdrawalAmountCannotLessThan' => 'The withdrawal amount cannot be less than',
-    'WithdrawalAmountCannotHigherThan' => 'Withdrawal amount cannot be higher than',
-    'withdrawalAmountMustLessThanAvailableBalance' => 'The withdrawal amount must be less than the available balance',
-    'paymentPasswordIncorrect' => 'The payment password is incorrect',
-    'failedApplyWithdrawalVerify' => 'Application for cash withdrawal verification failed',
-    'withdrawalAuditVerificationFailed' => 'Withdrawal audit verification failed',
-    'cannotSelectDateInThePast'=>'Cannot select a date in the past',
-    'statusSettingSucceeded' => 'Status setting succeeded',
-    'exportWithdrawApplyExcelName' => 'Withdraw_Apply',
-    'invoiceEnteredSuccessfully' => 'Invoice entered successfully',
-    'modifyInvoiceEntryCompleted' => 'Modify invoice entry data completion',
-    'reviewInvoiceDataCompleted' => 'Review invoice data completed',
-    'memberPerformanceAdjustmentList' => 'Member Performance Adjustment List',
-    'applicationAdjustMemberPerfSuccess' => 'The application to adjust the member performance was successful',
-    'nextPeriodConnectedNetCannotAdjusted' => 'The next period [ {periodNum} ] has been connected to the net, and this period cannot be adjusted',
-    'passReviewAdjustPerfSuccess' => "Auditing success by adjusting member performance",
-    'batchReviewMemberPerfCompletion' => 'Batch review/rejection of member performance completion',
-    'transactionTypeAddSuccess'=> 'Transaction type added successfully',
-    'modifyTransactionTypeCompleted' => 'Modify the transaction type to complete',
-    'unableDelete' => 'Cannot be deleted',
-    'pendingRecordAfterThePendingReviewed' => 'If there is a pending record in the member review list, it shall be submitted after the pending record has been reviewed',
-    'periodNotNetCannotAdjusted' => 'This period [ {periodNum} ] is not connected to the net and cannot be adjusted',
-    'adjustmentTypeIncorrect' => 'The adjustment type is incorrect',
-    'incorrectLocation' => 'Incorrect location',
-    'amountChangeCannotZero' => 'The amount of change cannot be 0',
-    'memberUnderrepresentedRegion' => 'The member is underrepresented in that region',
-    'memberSurplusRegionLess' => 'The member has insufficient surplus in the region for the current period',
-    'withdrawFormNoSn' => "There is no paid record of withdrawals serial number {sn}",
-    'withdrawFormUserNameInconsistent'=>'The serial number of the withdrawal in Excel. {excelName} is inconsistent with information in the system {userName}',
-    'withdrawFormRealNameInconsistent' => "The serial number of the withdrawal in Excel. {sn}, member's name  {excelName}, is inconsistent with information in the system {realName}",
-    'withdrawFormPeriodsInconsistent' => "Excel withdrawal serial number {sn} withdrawal periods {withdrawPeriodNum}, is inconsistent with the information in the system【 {systemWithdrawPeriodNum} 】",
-    'withdrawFormPaidAtInconsistent' => "Payment date of the withdrawal serial number in Excel {sn} {paidAt} is inconsistent with system information {systemPaidAt}",
-    'withdrawFormAmountInconsistent' => "Withdrawal amount of the withdrawal serial number in Excel {sn} {execlAmount} is inconsistent with the information in the system {systemAmount}",
-    'withdrawFormBankRealNameInconsistent' => "Real-time account name of the withdrawal serial number in Excel {sn} {execlBankRealName}, is inconsistent with the information in the system  {systemName}  Inconsistent ",
-    'withdrawFormBankNoInconsistent' => "Real-time bank account of the withdrawal serial number in Excel {excelBankNo} {sn}  is inconsistent with information in system {systemBankNo}",
-    'withdrawFormNoExistsUser'=>'This user does not exist',
-    'withdrawChkAuditStatus' => "The current status of the withdrawal  {sn}  is 【 {statusName} 】, cannot be set to【 {newStatusName}】",
-
-    # Internet function
-    'numberOfLayers' => 'Number Of Layers',
-    'recommendedMemberNo'=>'Sponsor Member No',
-    'nameRecommendedMember'=>'Name Of Sponsor Member',
-    'recommendedMemberLevel' => 'Sponsor Member Level',
-    'highestDirector' => 'Highest Director',
-    'highestCrown' => 'Highest Crown',
-    "joiningPeriod" => 'Joining Period',
-    'modelListAtlasUserName' => 'Member Code',
-    'modelListAtlasDepth' => 'Depth',
-    'numberOfPeriods' => 'Number Of Periods',
-    'atlasViewLimitNotice'=>'Top 23 sub members of members can be viewed at most',
-    'atlasNetworkViewLimitNotice'=>'View the top 20 sub members of the member at most',
-    'placementMemberNumber'=>'Placement Member Number',
-    'placementMemberName' => 'Placement Member Name',
-
-    #Products management
-    'shopListProductName' => 'Product Name',
-    'shopListProductsCode' => 'Products Code',
-    'shopListDiscountRate' => 'Discount Rate',
-    'shopListProductsType' => 'Products Type',
-    'shopListProductCategory' => 'Product Category',
-    'shopListPaymentMode' => 'Payment Mode',
-    'shopListPriceStandard' => 'US Price($)',
-    'shopListSellPrice' => 'Sales Price(₦)',
-    'shopListProductsBv' => 'Products BV',
-    'shopListTaxRate' => 'Tax Rate(%)',
-    'shopListTax' => 'Tax(₦)',
-    'shopListInventory' => 'Inventory',
-    'shopListStatus' => 'Status',
-    'shopListOnSale' => 'On sale',
-    'shopListSoldOut' => 'Sold out',
-    'shopListUpdatedAt' => 'Update Time',
-    'shopListEntryArea' => 'Office Entry area',
-    'shopListResellingArea' => 'Office Reselling area',
-    'shopList1stPurchase' => '1st Purchase',
-    'shopListRepeatPurchase' => 'Repeat Purchase',
-
-    'shopListStandardProducts' => 'Standard Products',
-    'shopListCarFundProducts' => 'Car Fund Products',
-    'shopListVillaFundProducts' => 'Villa Fund Products',
-    'shopListAccountBalance' => 'Account Balance',
-    'shopListPayTravelBonus' => 'Travel Bonus',
-    'shopListPayCarFund' => 'Car Fund',
-    'shopListPayVillaFund' => 'Villa Fund',
-    'shopListPayStack' => 'PayStack',
-    'shopGoodTypeDomestic' => '国内商品',
-    'shopGoodTypeImport' => '国内商品',
-    'beforeAdjustmentPcNo' => 'Before adjust Pc No.',
-    'afterAdjustmentPcNo' => 'After adjust Pc No.',
-
-    'shopExportListName' => 'Goods_List',
-    'shopProductAddSucceededNotice' => 'Product add succeeded',
-    'shopProductEditSucceed'=>'Product editing succeeded',
-    'shopStatusSetSucceedNotice' => 'Status setting succeeded',
-    'shopDelOrderSuccedNotice'=>'The order is deleted successfully, please regenerate the performance sheet and calculate the bonus',
-    'shopDecOrderListExport' => 'First purchase order list',
-    'shopOrderListExport' => 'Order_List',
-    'shopStatusUpdateErrorNotice'=>'Status update error',
-    'shopOrderListExportPdf'=>'Order list',
-    'shopadminRefund'=>'Refund successfully',
-    'shopBaOrderListExport' => 'Ba_Order_List',
-    'shopBrandAmbassadorOrderExport'=>'Brand Ambassador Order',
-    'shopSetProductStatusErrorNotice'=>'The current product status is【{nowStatus}】,cannot be set to【{newStatus}】',
-    'shopPayTypeCash' => 'Ecoin',
-    'shopPayTypeGaragePoints' => 'Car Fund',
-    'shopPayTypeVillaFund' => 'Villa Fund',
-    'shopBuyActionErrorNotice'=>'The wrong way to buy the product',
-    'shopSortMoreThanOne'=>'Please fill in numbers greater than or equal to 1 for sorting',
-    'shopDiscountZeroBetweenOne'=>'Please fill in the number between 0-1 for the discount',
-    'shopDeleteDecOrderAndOrderFailedNotice'=>'Failed to delete first purchase order, failed to delete order',
-    'shopBackOrderFailedNotice'=>'Failed to roll back membership level, failed to delete order',
-    'shopLockFailedDeleteOrderFailed'=>'Failed to lock member, failed to delete order',
-    'shopDeleteOrderFailed' => 'Failed to delete order',
-    'shopBackAmountFailedDeleteOrderFailed'=>'Failed to refund the order amount, failed to delete the order',
-    'shopNotFindOrder' => 'Order information not found, the order number is:',
-    'shopOrderAlreadyDeleted'=> 'The order has been deleted, the order number is:',
-    'shopOrderPeriodNumNotExist'=>'The performance period corresponding to the order does not exist, and the order number is {sn} Performance period is:{periodNum}',
-    'shopOrderPeriodNumIsSented'=>'The order corresponding to the performance period has been posted online, and the order number is {sn} Performance period is:{periodNum}',
-    'shopOrderPeriodNumSenting'=>'The performance period corresponding to the order is being linked online,the order number is{sn} Performance period is:{periodNum}',
-    'shopNotFindDecOrder' => 'The corresponding order information has not been obtained,the order number is:',
-    'shopDecAlreadyDeleted'=>'The corresponding order information has been deleted,the order number is:',
-    'shopHasLaterOrder' => 'There is a later order, this order cannot be deleted,the order number is:',
-    'shopRegisterHasUpgradeOrder' => 'There is an upgrade order for this registration form, which cannot be deleted,the order number is:',
-    'shopRegisterHasFxOrder'=>'There is a cancellation order for this registration form, which cannot be deleted,the order number is:',
-    'shopOrderListMemberCode' => 'Member Code',
-    'shopOrderListStockist'=>'Stockist',
-    'shopOrderListCreatorNo'=>'Creator No',
-    'shopOrderListCreatorName'=>'Creator Name',
-    'shopOrderListOrderCode'=>'Order Code',
-    'shopOrderListOrderStatus'=>'Status',
-    'shopOrderListProductCode' => 'Product Code',
-    'shopOrderListProductName'=>'Product Name',
-    'shopOrderListRecipient' => 'Recipient',
-    'shopOrderListContactOne' => 'Contact 1',
-    'shopOrderListContactTwo' => 'Contact 2',
-    'shopOrderListState'=>'State',
-    'shopOrderListLocalGovernmentArea' => 'Local Government Area',
-    'shopOrderListCity'=>'City',
-    'shopOrderListDetailedAddress'=>'Detailed Address',
-    'shopOrderDeliveryWarehouse' => 'Delivery Warehouse',
-    'shopOrderListPeriod' => 'Period',
-    'shopOrderListOrderType' => 'Order Type',
-    'shopOrderListOrderTypeRepeatPurchase'=>'Repeat Purchase',
-    'shopOrderListOrderTypePoints'=>'Points',
-    'shopOrderListOrderTypeRepeatPurchaseOrder' => 'Repurchase order',
-    'shopOrderListOrderTypePointsOrder' => 'Point order',
-    'shopOrderListOrderTypeZc'=>'Welcome Pack',
-    'shopOrderListOrderTypeFx'=>'Repeat Purchase',
-    'shopOrderListCreationTime' => 'Creation Time',
-    'shopOrderListPayType' => 'Pay Type',
-    'shopOrderListPaymentTime'=>'Payment Time',
-    'shopOrderListDeliveryTime'=>'Delivery Time',
-    'shopOrderListQty' => 'Qty',
-    'shopOrderListItemPricing'=>'Item Pricing',
-    'shopOrderListTotalPrice' => 'Total Price',
-    'shopOrderListBVAmount'=>'BV Amount',
-    'shopOrderListUsTotalPrice'=>'Total Price($)',
-    'shopOrderListFreight' => 'Freight',
-    'shopOrderListTaxRate'=>'Tax Rate',
-    'shopOrderListTax' => 'Tax',
-    'shopOrderListCourierCompany' => 'Courier Services Company',
-    'shopOrderListCourierNumber' => 'Courier Number',
-    'shopOrderListShippingMethod' => 'Shipping Method',
-    'shopOrderListShippingMethodMailing' => 'Mailing',
-    'shopOrderListShippingMethodAutoPick' => 'Auto pick',
-    'shopOrderListMemberNotes' => 'Member Notes',
-    'shopOrderListShipmentStatus' => 'Shipment Status',
-    'shopOrderListIsAuto' => 'Is Auto',
-    'shopOrderListIsAutoYes' => 'Yes',
-    'shopOrderListIsAutoNo' => 'No',
-    'shopOrderListOrderNo' => 'Order No',
-    'shopOrderPaymentAmount' => 'Payment Amount',
-    'shopOrderPayBV' => 'Pay BV',
-    'total' => 'Total',
-    'date' => 'Date',
-    'orderCode' => 'Order Code',
-    'orderDetail' => 'Order Detail',
-    'productCode' => 'Product Code',
-    'productName' => 'Product Name',
-    'productPrice' => 'Product Price',
-    'qty' => 'Qty',
-    'taxRate' => 'Tax Rate',
-    'totalTax' => 'Total Tax',
-    'totalAmount' => 'Total Amount',
-    'signature' => 'Signature',
-    'orderNotExist' => 'order does not exist',
-    'orderHasBeenConnected' => 'The order has been connected to the net, and this period cannot be adjusted',
-    'invalidPcNo' => 'Invalid Pc No.',
-
-    #Log
-    'adminUserDoesNotExist'  => 'Administrator does not exist',
-    'adminUserGroupDoesNotExist'  => 'Management group does not exist',
-    'columnArrayMustExistHeader'  => 'The header must exist in the column array',
-    'operatingType'  => 'Operation Type',
-    'operatingObject'  => 'Operation object',
-    'objectNumber'  => 'Object number',
-    'requestContent'  => 'Request content',
-    'returnContent'  => 'Return content',
-    'operator'  => 'Operator',
-    'operatingTime'  => 'Operation Time',
-    'numberOfPhases'  => 'Number Of Periods',
-    'IPAddress'  => 'IP Address',
-    'client'  => 'Client',
-    'operatingSystem'  => 'Operating System',
-    'requestPath'  => 'Request Path',
-    'operationObjectNumber'  => 'Operation Object No',
-    'remarks'  => 'Remark',
-    'returnResult'  => 'Return content',
-    'successTimes'  => 'Successful login times',
-    'failTimes'  => 'Failed logins times',
-    'loginSuccess'  => 'login successfully',
-    'loginFail'  => 'Login failed',
-    'adminLoginLog'  => 'Admin login log',
-    'userLoginLog'  => 'Member login log',
-    'version'  => 'Version number',
-    'adminOperatingLog'  => 'Administrator operation log',
-    'updateNumberOfPhasesConfig'  => 'Update period configuration',
-    'updateLevelBonusConfig'  => 'Update level bonus configuration',
-    'updateBonusConfig'  => 'Update bonus configuration',
-    'updateRankBonusConfig'  => 'Update rank bonus configuration',
-    'updateTransferConfig'  => 'Update transfer configuration',
-    'requestChangeUserBalance'  => 'Apply for change of membership balance',
-    'checkUserBalance'  => 'Review member balance',
-    'batchRequestChangeUserBalance'  => 'Batch application to change member balance',
-    'blankEntry'  => 'Empty order entry',
-    'delBlankUser'  => 'Delete empty order member',
-    'changeUserLevel'  => 'Modify Member Level',
-    'applyAdjustmentUserPerformance'  => 'Apply for Adjustment of Member Performance',
-    'applyModifyUserStatus'  => 'Apply to modify member status',
-    'setTeamLeaders'  => 'Set up team leaders',
-    'checkUserStatus'  => 'Review member status',
-    'displayMap'  => 'Show map',
-    'hiddenMap'  => 'Hide map',
-    'setDeclarationCenter'  => 'Set up stockist',
-    'cancelDeclarationCenter'  => 'Cancel stockist',
-    'userActivation'  => 'Member activation',
-    'userLocking'  => 'Member lock',
-    'modifyUserInfo'  => 'Modify member information',
-    'editAdmin'  => 'Edit administrator',
-    'applyRemoveNetwork'  => 'Apply for mobile network',
-    'approveRemoveNetwork'  => 'Approved by mobile network',
-    'resetPasswords'  => 'Reset password',
-    'cancellationSystem'  => 'Revocation system',
-    'addSystem'  => 'Add system',
-    'editSystem'  => 'Edit system',
-    'recoverySystem'  => 'Recovery system',
-    'systemLog'  => 'System log',
-    'shopOrderPeriodAdjust' => 'Order Period Adjust',
-    'memberHighestEmpLvAdjust' => 'Member Highest Director Adjustment',
-    'call'  => 'Transfer',
-    'beCcalled'  => 'called',
-    'userOperatingLog'  => 'Member operation log',
-    'enableDisableAutomaticWithdrawal'  => 'Enable / Disable Automatic Withdrawal',
-    'enableDisableReSalesSMSReminder'  => 'Enable / Disable Re Sales SMS Reminder',
-    'memberTransfer'  => 'Member Transfer',
-    'memberWithdrawalApplication'  => 'Member Withdrawal Application',
-    'memberModificationInformation'  => 'Member Modification Information',
-    'modifyMasterPoint'  => 'Modify Master Point',
-    'periodNumber' => 'Period Number',
-    'serialNumber' => 'Serial Number',
-    'rank'  => 'Rank',
-    'adjustMemberHighestDirector' => 'Adjust Highest Director',
-
-    #Ad
-    'AdAddedSuccessfully' => 'Ad added successfully',
-    'EditAdSuccessfully' => 'Ad edited successfully',
-
-    #Article
-    'articleNotExists'  => 'Article does not exist',
-
-    #File
-    'mallManagement'    => 'Mall Management',
-    'memberManagement'  => 'Member Management',
-    'networkChart' => 'Network Chart',
-    'resaleManagement' => 'Resale management',
-    'bonusManagement' => 'Bonus management',
-    'financialManagement' => 'financial management',
-
-    # Public
-    'amountUnit' => '₦',
-    'sceneDoesNotExist' => 'Scene does not exist',
-    'memberDoesNotExist' => 'Member does not exist',
-    'countryDoesNotExist' => 'Country does not exist',
-    'mustSelectOneItemToDelete' => 'must select one item to delete',
-    'dataNotExists' => 'Data not exists',
-    'startExporting'=> 'Starting exporting, please go to File Management - Export Files to view.',
-    'incorrectDateFormat' => 'Incorrect date format',
-    'notConnection' => 'Connection not operated for too long',
-    'deleteFailed' => 'failed to delete',
-    'deleteSuccessfully' => 'delete successfully',
-    'quickLoginCanNotOperate' => 'Members who log in quickly cannot perform any operations',
-    'selectAtLeastOne' => 'A data must be selected',
-    'failed' => 'Failed',
-    'successfully' => 'Successfully',
-    'createAt' => 'Creation Time',
-    'status' => 'Status',
-    'state' => 'State',
-    'sort' => 'Sort',
-    'illegalRequest' => 'Illegal request',
-    'invalidParameter' => 'Invalid Parameter',
-    'dataDoesNotExists' => 'The data does not exist',
-    'operationAdministrator' => 'Operation Administrator',
-    'typeError' => 'Type error',
-    'contentError' => 'Content error',
-    'hideSuccessfully' => 'hide successfully',
-    'UnhideSuccessfully' => 'Unhide successfully',
-
-    # Member
-    'memberCode' => 'Member Code',
-    'memberName' => 'Member Name',
-    'memberAddress' => 'Member Address',
-    'memberPhone' => 'Member Phone',
-    'loginStatus' => 'Login Status',
-    'allowLogin' => 'Allow Login',
-    'prohibitLogin' => 'Prohibit Login',
-    'activate' => 'Activate',
-    'lock' => 'Lock',
-    'filterAllowLogin' => 'Filter Allow Login',
-    'bankName' => 'Bank Name',
-    'bankCode' => 'Bank Code',
-    'bankAccountNumber' => 'Bank Account Number',
-    'admin' => 'Admin',
-    'minCharge' => 'Min Charge',
-    'maxCharge' => 'Max Charge',
-    'chargeRate' => 'Charge Rate',
-    'updater' => 'Updater',
-    'userName' => 'USER_NAME',
-    'passwordHash' => 'PASSWORD_HASH',
-    'payPassword' => 'PAY_PASSWORD',
-    'nation' => 'NATION',
-    'realName' => 'REAL_NAME',
-    'IDCard' => 'ID_CARD',
-    'IDType' => 'ID_TYPE',
-    'mobile' => 'MOBILE',
-    'address' => 'ADDRESS',
-    'IDImage' => 'ID_IMAGE',
-    'openBank' => 'OPEN_BANK',
-    'bankAddress' => 'BANK_ADDRESS',
-    'bankNo' => 'BANK_NO',
-    'bankProvince' => 'BANK_PROVINCE',
-    'bankCity' => 'BANK_CITY',
-    'bankCounty' => 'BANK_COUNTY',
-    'spouseName' => 'SPOUSE_NAME',
-    'spouseIDCard' => 'SPOUSE_IDCARD',
-    'decClosed' => 'DEC_CLOSED',
-    'decClosedAt' => 'DEC_CLOSED_AT',
-    'decLv' => 'DEC_LV',
-    'empLv' => 'EMP_LV',
-    'crownLv' => 'CROWN_LV',
-    'province' => 'PROVINCE',
-    'city' => 'CITY',
-    'county' => 'COUNTY',
-    'tel' => 'TEL',
-    'subComID' => 'SUB_COM_ID',
-    'avatar' => 'AVATAR',
-    'isDec' => 'IS_DEC',
-    'isAtlas' => 'IS_ATLAS',
-    'isRecharge' => 'IS_RECHARGE',
-    'DEC_ID' => 'DEC_ID',
-    'birthday' => 'BIRTHDAY',
-    'decRoleID' => 'DEC_ROLE_ID',
-    'periodAt' => 'PERIOD_AT',
-    'decProvince' => 'DEC_PROVINCE',
-    'decCity' => 'DEC_CITY',
-    'decCounty' => 'DEC_COUNTY',
-    'isUnion' => 'IS_UNION',
-    'statusAt' => 'STATUS_AT',
-    'verified' => 'VERIFIED',
-    'verifiedAt' => 'VERIFIED_AT',
-    'notOperating' => 'NOT_OPERATING',
-    'regFrom' => 'REG_FROM',
-    'IDCardPrefix' => 'ID_CARD_PREFIX',
-    'sex' => 'SEX',
-    'decAccountOld' => 'DEC_ACCOUNT_OLD',
-    'bankUpdatedAt' => 'BANK_UPDATED_AT',
-    'isDirectSeller' => 'IS_DIRECT_SELLER',
-    'decLvUpdatedAt' => 'DEC_LV_UPDATED_AT',
-    'decLvUpdatedPeriod' => 'DEC_LV_UPDATED_PERIOD',
-    'decAddress' => 'DEC_ADDRESS',
-    'decPhone' => 'DEC_PHONE',
-    'guarantor' => 'GUARANTOR',
-    'guarantorName' => 'GUARANTOR_NAME',
-    'partFuncClosed' => 'PART_FUNC_CLOSED',
-    'lastDecLvUpdatedPeriod' => 'LAST_DEC_LV_UPDATED_PERIOD',
-    'userCreator' => 'USER_CREATOR',
-    'userUpdater' => 'USER_UPDATER',
-    'lastDecLvUpdatedAt' => 'LAST_DEC_LV_UPDATED_AT',
-    'decCreatedAt' => 'DEC_CREATED_AT',
-    'partFuncClosedRemark' => 'PART_FUNC_CLOSED_REMARK',
-    'decCreatedPeriod' => 'DEC_CREATED_PERIOD',
-    'passwordChanged' => 'PASSWORD_CHANGED',
-    'subComLeader' => 'SUB_COM_LEADER',
-    'zgUpgradePv' => 'ZG_UPGRADE_PV',
-    'appClientID' => 'APP_CLIENT_ID',
-    'readAgreement' => 'READ_AGREEMENT',
-    'lastDecLv' => 'LAST_DEC_LV',
-    'bonusAppClientID' => 'BONUS_APP_CLIENT_ID',
-    'isFirstOpen' => 'IS_FIRST_OPEN',
-    'isModifyPassword' => 'IS_MODIFY_PASSWORD',
-    'isStudio' => 'IS_STUDIO',
-    'email' => 'EMAIL',
-    'levelBeforeModification' => 'Level Before Modification',
-    'modifiedLevel' => 'Modified Level',
-    'country' => 'Country',
-    'beforeCountry' => '修改前国家',
-    'afterCountry' => '修改前国家',
-
-    'moveMember' => 'Move Member',
-    'moveMemberName' => 'Move Member Name',
-    'uperCodeBeforeMoving' => 'Uper Code Before Moving',
-    'uperCodeAfterMoving' => 'Uper Code After Moving',
-    'typeOfMoving' => 'Type Of Moving',
-    'position' => 'Position',
-    'periodOfMoving' => 'Period Of Moving',
-    'whetherToMove' => 'Whether To Move',
-    'percentage' => 'Percentage',
-    'AdministratorOfMoving' => 'Administrator Of Moving',
-    'joiningDate' => 'Joining Date',
-    'currentMemberLevel' => 'Current Member Level',
-    'currentAdjustmentDate' => 'Current Adjustment Date',
-    'PCMemberLevel' => 'PC Member Level',
-    'latestDirector' => 'Latest Director',
-    'latestCrown' => 'Highest Crown',
-    'recommendationNo' => 'Sponsor Code',
-    'recommendedName' => 'Sponsor Name',
-    'placementNo' => 'Placement No',
-    'placementName' => 'Placement Name',
-    'resettlementArea' => 'Resettlement Area',
-    'phoneNumber' => 'Phone Number',
-    'alternatePhoneNumber' => 'Alternate Phone Number',
-    'stockistCode' => 'Stockist Code',
-    'whetherStockist' => 'Whether Stockist',
-    'stockistOrNot' => 'Stockist or not',
-    'whetherChartDisplay' => 'Whether Chart Display',
-    'whetherRechargeDisplay' => 'Whether Recharge Display',
-    'stockistLevel' => 'Stockist Level',
-    'commonAddress' => 'Common Address',
-    'enableTransfer' => 'Enable Transfer',
-    'activeStatus' => 'Active Status',
-    'locking' => 'Locking',
-    'activation' => 'Activation',
-    'on' => 'On',
-    'off' => 'Off',
-    'administratorOfReviewing' => 'Administrator Of Reviewing',
-    'reviewTime' => 'Review Time',
-    'I.Market' => 'I. Market',
-    'II.Market' => 'II. Market',
-    'userMoveAuditStatus:0' => 'To be reviewed',
-    'userMoveAuditStatus:1' => 'Approved',
-    'userMoveAuditStatus:2' => 'Failed',
-    'userMoveAuditStatus:3' => 'Audit reject',
-    'levelNoChange' => '级别没有变化无需调整',
-    'studioOrNot' => 'Studio or not',
-
-    # Network
-    'placementNetwork' => 'Placement Network',
-    'sponsorNetwork' => 'Sponsor Network',
-
-
-    # Bonus
-    'memberBonus' => 'Member Bonus',
-    'memberEcoin' => 'Member Ecoin',
-    'travelIncentive' => 'Travel Incentive',
-    'carIncentive' => 'Car Incentive',
-    'villaIncentive' => 'Villa Incentive',
-    'requirePeriods' => 'Please enter Period No.',
-    'requireMemberNumber' => 'Please enter member code',
-    'payCycle' => 'Pay Cycle(PC)',
-    'sponsorNo' => 'Sponsor No',
-    'sponsorName' => 'Sponsor Name',
-    'superiorCode' => 'Superior Code',
-    'superiorName' => 'Superior Name',
-    'superiorNumber' => 'Superior Number',
-    'welcomeBonus' => 'Welcome Bonus',
-    'teamBonus' => 'Team Bonus',
-    'uncappedTeamBonus' => 'Uncapped Team Bonus',
-    'directorBonus' => 'Director Bonus',
-    'stockistCommission' => 'Stockist Commission',
-    'quarterlyBonus' => 'Quarterly Bonus',
-    'actualBonus' => 'Actual Bonus',
-    'totalBonus' => 'Total Bonus',
-    'totalRevenue' => 'Total Revenue',
-    'bonusMonth' => 'Bonus Month',
-    'oneNewMarketPerformance' => 'I. new market performance',
-    'twoNewMarketPerformance' => 'II. new market performance',
-    'oneMarketBalancePerformance' => 'I. market balance performance',
-    'twoMarketBalancePerformance' => 'II. market balance performance',
-    'managementAward' => 'Management Award',
-    'bonusDate' => 'Settlement Date',
-    'transactionType' => 'Transaction Type',
-    'memberLevel' => 'Member Level',
-    'balanceBeforeTransaction' => 'Balance Before Transaction',
-    'debitCredit' => 'Debit/Credit',
-    'newBalance' => 'New Balance',
-    'personalPerformance' => 'Personal Performance',
-    'remainderLeftLeg' => 'Remainder@Left Leg',
-    'remainderRightLeg' => 'Remainder@Right Leg',
-    'cumulativeTeamPerformance' => 'Cumulative Team Performance',
-    'salesNo' => 'Sales No',
-    'saleType' => 'Type',
-    'saleStatus' => 'Status',
-    'sponsorNoAtSettlement' => 'Sponsor No. At Settlement',
-    'sponsorNameAtSettlement' => 'Sponsor Name At Settlement',
-    'entryBV' => 'Entry BV',
-    'entryAmount' => 'Entry Amount',
-    'entryNo' => 'Entry No',
-    'orderSource' => 'Order Source',
-    'reviewed' => 'Reviewed',
-    'wastedisposal' => 'Waste disposal',
-    'whetherActive' => 'Whether Active',
-    'yes' => 'Yes',
-    'no' => 'No',
-    'declarationPerformance' => 'Declaration Performance',
-    'cancellationPerformance' => 'Cancellation Performance',
-    'LNewMarketPerformance' => 'L. New Market Performance',
-    'LNewPerformanceOfMarketEntry' => 'L. New Performance Of Market Entry',
-    'LNewPerformanceOfMarketReCancellation' => 'L. New Performance Of Market Re Cancellation',
-    'RNewMarketPerformance' => 'R. New Market Performance',
-    'RNewPerformanceOfMarketEntry' => 'R. New Performance Of Market Entry',
-    'RNewPerformanceOfMarketReCancellation' => 'R. New Performance Of Market Re Cancellation',
-    'LMarketBalancePerformance' => 'L. Market Balance Performance',
-    'RMarketBalancePerformance'=> 'R. Market Balance Performance',
-    'LMarketEntryBalancePerformance' => 'L. Market Entry Balance Performance',
-    'RMarketEntryBalancePerformance' => 'R. Market Entry Balance Performance',
-    'LMarketReconditioningBalancePerformance' => 'L. Market Reconditioning Balance Performance',
-    'RMarketReCancellationBalancePerformance' => 'R. Market Re Cancellation Balance Performance',
-    'teamPerformance' => 'Team Performance',
-    'recommenderNo' => 'Recommender No',
-    'recommenderName' => 'Recommender Name',
-    'directorRank' => 'Director Rank',
-    'directorPGSPerformance' => 'Director PGS Performance',
-    'LNewMarketEntryPerformance' => 'L. New Market Entry Performance',
-    'RNewMarketEntryPerformance' => 'R. New Market Entry Performance',
-    'LMarketMonthlyRemainingDeclarationPerformance' => 'L. Market Monthly Remaining Declaration Performance',
-    'RMarketMonthlyRemainingDeclarationPerformance' => 'R. Market Monthly Remaining Declaration Performance',
-    'monthlyNewTeamPerformance' => 'Monthly New Team Performance',
-    'monthlyCumulativeTeamPerformance' => 'Monthly Cumulative Team Performance',
-
-    # 【数据表】
-    # 会员等级
-    'dbDeclarationLevelBA' => 'BA',
-    'dbDeclarationLevelElite' => 'Elite',
-    'dbDeclarationLevelPro' => 'Pro',
-    'dbDeclarationLevelVip' => 'Vip',
-    # 管理星级
-    'dbEmployLevelNoRank' => 'No Rank',
-    'dbEmployLevel1StarDirector'  => '1-Star Director',
-    'dbEmployLevel2StarDirector'  => '2-Star Director',
-    'dbEmployLevel3StarDirector'  => '3-Star Director',
-    'dbEmployLevel4StarDirector'  => '4-Star Director',
-    'dbEmployLevel5StarDirector'  => '5-Star Director',
-    'dbEmployLevel6StarDirector'  => '6-Star Director',
-    'dbEmployLevel7StarDirector'  => '7-Star Director',
-    # 皇冠星级
-    'dbCrownLevel0StarCrown' => '0-Star Crown',
-    'dbCrownLevel1StarCrown' => '1-Star Crown',
-    'dbCrownLevel2StarCrown' => '2-Star Crown',
-    'dbCrownLevel3StarCrown' => '3-Star Crown',
-    'dbCrownLevel4StarCrown' => '4-Star Crown',
-    'dbCrownLevel5StarCrown' => '5-Star Crown',
-    'dbCrownLevel6StarCrown' => '6-Star Crown',
-    'dbCrownLevel7StarCrown' => '7-Star Crown',
-    # 报单中心级别
-    'dbDecRole1stLevelStockist'	=> '1st Level Stockist',
-    'dbDecRole2ndLevelStockist'	=> '2nd Level Stockist',
-    'dbDecRole3rdLevelStockist'	=> '3rd Level Stockist',
-    'dbDecRole4thLevelStockist'	=> '4th Level Stockist',
-    'dbDecRole5thLevelStockist'	=> '5th Level Stockist',
-    # 注册类型
-    'dbRegTypePersonal' => '个人',
-    'dbRegTypeBusiness' => '个体工商户',
-    'dbRegTypeCompany' => '公司',
-    # 交易类型
-    'dbConfigAllowWallet' => '转出转入配置',
-    'dbConfigAutoCalcPeriod' => '自动结算',
-    'dbConfigAutoClosePeriod' => '自动封期',
-    'dbConfigBackupTime' => '备份时间',
-    'dbConfigBackupWeekDate' => '备份星期',
-    'dbConfigBaseScore' => '基础分数配置',
-    'dbConfigBsNoPvPointsPercent' => '没有业绩的时候,蓝星奖金给多少业绩比例的兑换积分',
-    'dbConfigCalcYear' => '期数计算至年份',
-    'dbConfigCashReconsumeBonusPercent' => '现金购物PV算奖比例',
-    'dbConfigCloseDays' => '自动封期天数',
-    'dbConfigCloseTime' => '自动封期时间',
-    'dbConfigCloseWeekDate' => '自动封期星期',
-    'dbConfigDealSwitch' => '查看交易记录',
-    'dbConfigDecRoleBonusFrom' => '服务奖来源',
-    'dbConfigExchangeRate' => '汇率配置',
-    'dbConfigFlowBonusSwitch' => '奖金明细',
-    'dbConfigFreeShipping' => '商品免运费阈值',
-    'dbConfigInstalmentQty' => '分期商品期数',
-    'dbConfigFreight' => '商品运费',
-    'dbConfigFwCoefficientFromFxCash' => '服务奖现金复消系数',
-    'dbConfigFwCoefficientFromFxPoint' => '服务奖积分复消系数',
-    'dbConfigFwCoefficientFromZc' => '服务奖首购报单系数',
-    'dbConfigHistoryBonusLimit' => '奖金余额备份近几周',
-    'dbConfigIsCanTransferProp' => '是否开启单笔转账比例',
-    'dbConfigIsCanWithdrawBack' => '是否开启前台提现退回功能',
-    'dbConfigIsDecReg' => '只允许报单中心报单',
-    'dbConfigIsOpenUpgrade' => '是否开启会员升级单功能',
-    'dbConfigIsResaleUmbrella' => '是否只允许为伞下会员报复消单',
-    'dbConfigManageTaxPercent' => '管理费比例',
-    'dbConfigManualWithdrawMinAmount' => '手动提现最低金额',
-    'dbConfigMonthPcsPvFxCondition' => '每月个人总消费PV条件',
-    'dbConfigNewBonusSwitch' => '最新奖金',
-    'dbConfigObservePeriodLimit' => '观察期月份限制',
-    'dbConfigOpenFW' => '是否开启服务奖',
-    'dbConfigOpenGL' => '是否开启管理奖',
-    'dbConfigOpenGarage' => '车奖积分比例',
-    'dbConfigOpenGarageCap' => '车奖个人封顶值',
-    'dbConfigOpenQY' => '是否开启团队奖',
-    'dbConfigOpenQuarter' => '季度奖金',
-    'dbConfigOpenTG' => '是否开启推广奖',
-    'dbConfigOpenTourism' => '旅游积分比例',
-    'dbConfigOpenVilla' => '房奖积分比例',
-    'dbConfigOpenVillaCap' => '房奖个人封顶值',
-    'dbConfigPasswordRule' => '密码规则',
-    'dbConfigPastBonusSwitch' => '往期奖金',
-    'dbConfigPayPasswordRule' => '支付密码规则',
-    'dbConfigPvRatio' => 'PV比例',
-    'dbConfigReConsumePointsMonthCap' => '重复消费积分每月上限',
-    'dbConfigReConsumePointsPercent' => '重复消费积分比例',
-    'dbConfigRecPercent' => '推广奖比例',
-    'dbConfigShowBonusPeriodNum' => '前台可见往期奖金期数',
-    'dbConfigShowFlowPeriodNum' => '前台可见交易记录期数',
-    'dbConfigShowTransferPeriodNum' => '前台可见转账记录期数',
-    'dbConfigShowWithdrawPeriodNum' => '前台可见提现记录期数',
-    'dbConfigSiteClose' => '是否关闭网站',
-    'dbConfigSiteCloseInfo' => '关闭提示信息',
-    'dbConfigSiteTitle' => '网站标题',
-    'dbConfigTransferOpen' => '是否开启转账功能',
-    'dbConfigTransferRecordSwitch' => '前台转账记录开关',
-    'dbConfigTransferSwitch' => '前台我要转账开关',
-    'dbConfigWithdrawFee' => '提现手续费',
-    'dbConfigWithdrawFreezeDays' => '提现预付款天数',
-    'dbConfigReportAlarmOpen' => '是否开启预警信息推送',
-
-    # 【参数】
-    # 钱包类型
-    'cashWallet' => 'Cash wallet',
-    # 用户状态
-    'userStatusInactive' => 'Inactive',
-    'userStatusNormal' => 'Normal',
-    'userStatusLogout' => 'Logout',
-    'userStatusBlacklist' => 'Blacklist',
-    'userStatusSuspended' => 'Suspended',
-    'userStatusPermanentShutDown' => 'Permanent shut down',
-    # 奖金类型
-    'bonusWalletTypeAccountBonus' => 'Account bonus',
-    'bonusWalletTypeResellingPointsBalance' => 'Reselling points balance',
-    'bonusWalletTypeAccountEcoin' => 'Account Ecoin',
-    'bonusWalletTypeExchangePointsBalance' => 'Exchange points balance',
-    'bonusWalletTypeTravelPointsBalance' => 'Travel points balance',
-    'bonusWalletTypeCarPointsBalance' => 'Car points balance',
-    'bonusWalletTypeVillaPointsBalance' => 'Villa points balance',
-    # 审核状态
-    'auditStatusUnaudited' => 'Unaudited',
-    'auditStatusAudited' => 'Audited',
-    'auditStatusAuditFailure' => 'Audit failure',
-    'auditStatusRefused' => 'Refused',
-    # 发货状态
-    'deliveryStatusUndelivered' => 'Undelivered',
-    'deliveryStatusDelivered' => 'Delivered',
-    'deliveryStatusConfirmReceipt' => 'Confirm receipt',
-    # 导出模块
-    'exportModuleShop' => 'Mall Management',
-    'exportModuleMember' => 'Member Management',
-    'exportModuleNetwork' => 'Network Chart',
-    'exportModuleResale' => 'Resale Management',
-    'exportModuleBonus' => 'Bonus Management',
-    'exportModuleShopFinancial' => 'Financial Management',
-    # 订单状态
-    'orderStatusUnpaid' => 'Unpaid',
-    'orderStatusPaid' => 'Paid',
-    'orderStatusLogisticsStatus' => 'Logistics status',
-    'orderStatusOrderCompletion' => 'Order completion',
-    'orderStatusOrderCancellation' => 'Order cancellation',
-    'orderStatusOrderDeletion' => 'Order deletion',
-    'orderStatusOrderRefund' => 'Order refund',
-    'orderStatusPaymentFailed' => 'Payment failed',
-    # 流水类型
-    'shopFlowTypeRemittanceRecharge' => 'Remittance recharge',
-    'shopFlowTypeThirdPartyRecharge' => 'Rhird-party recharge',
-    'shopFlowTypeTransferOut' => 'Transfer out',
-    'shopFlowTypeTransferInto' => 'Transfer into',
-    'shopFlowTypePay' => 'Pay',
-    'shopFlowTypeWelcomePackRecharge' => 'Welcome pack recharge',
-    'shopFlowTypeOrderRecharge' => 'Order recharge',
-    'shopFlowTypeFreightPayment' => 'Freight payment',
-    'shopFlowTypeAdjustedRecharge' => 'Adjusted recharge',
-    'shopFlowTypeAdjustedDeduct' => 'Adjusted deduct',
-    'shopFlowTypeAdjustedTransferOut' => 'Adjusted transfer out',
-    'shopFlowTypeAdjustedTransferIn' => 'Adjusted transfer in',
-    'shopFlowTypeExchangeRecharge' => 'Exchange recharge',
-    'shopFlowTypeExchangeDeduct' => 'Exchange deduct',
-    'shopFlowTypeDeleteOrderDeduct' => 'Delete order deduct',
-    'shopFlowTypeDeleteOrderRecharge' => 'Delete order recharge',
-    'shopFlowTypeDeleteOrderReturn' => 'Delete order return',
-    'shopFlowTypeRepairPayment' => 'Repair payment',
-    'shopFlowTypeAfterSaleExchangeRecharge' => 'After-sale exchange recharge',
-    'shopFlowTypeAfterSaleExchangeDeduct' => 'After-sale exchange deduct',
-    'shopFlowTypeOMSDeduct' => 'OMS deduct',
-    'shopFlowTypeDeduct' => 'Deduct',
-    'shopFlowTypeIncrease' => 'Increase',
-    'shopFlowTypeOther' => 'Other',
-    'shopFlowTypeAdministratorManualAdjustment' => 'Administrator manual adjustment',
-    # 国家
-    'dbCountriesdz' => "COTE D'IVOIRE",
-    'dbCountriesao' => 'ALGERIA',
-    'dbCountriesbj' => 'BOTSWANA',
-    'dbCountriesbw' => 'BURKINA FASO',
-    'dbCountriesbf' => 'ANGOLA',
-    'dbCountriesbi' => 'BENIN',
-    'dbCountriescm' => 'CHAD',
-    'dbCountriescv' => 'COMOROS',
-    'dbCountriescf' => 'CAMEROON',
-    'dbCountriestd' => 'SOUTH SUDAN',
-    'dbCountrieskm' => 'GUINEA',
-    'dbCountriescg' => 'CAPE VERDE',
-    'dbCountriesci' => 'CENTRAL AFRICA REPUBLIC',
-    'dbCountriesdj' => 'CONGO',
-    'dbCountriescd' => 'BURUNDI',
-    'dbCountrieseg' => 'DJIBOUTI',
-    'dbCountriesgq' => 'GABON',
-    'dbCountrieser' => 'DR CONGO',
-    'dbCountriessz' => 'SOUTH AFRICA',
-    'dbCountrieset' => 'EGYPT',
-    'dbCountriesga' => 'EQUATORIAL GUINEA',
-    'dbCountriesgm' => 'ESWATINI',
-    'dbCountriesgh' => 'ERITREA',
-    'dbCountriesgn' => 'ETHIOPIA',
-    'dbCountriesgw' => 'GAMBIA',
-    'dbCountrieske' => 'GHANA',
-    'dbCountriesls' => 'KENYA',
-    'dbCountrieslr' => 'GUINEA - BISSAU',
-    'dbCountriesly' => 'LESOTHO',
-    'dbCountriesmg' => 'LIBYA',
-    'dbCountriesmw' => 'MAURITANIA',
-    'dbCountriesml' => 'MADAGASCAR',
-    'dbCountriesmr' => 'MALAWI',
-    'dbCountriesmu' => 'MALI',
-    'dbCountriesma' => 'LIBERIA',
-    'dbCountriesmz' => 'MAURITIUS',
-    'dbCountriesna' => 'MOROCCO',
-    'dbCountriesne' => 'MOZAMBIQUE',
-    'dbCountriesng' => 'NAMIBIA',
-    'dbCountriesrw' => 'NIGER ',
-    'dbCountriesst' => 'SOMALIA',
-    'dbCountriessn' => 'SENEGAL',
-    'dbCountriessc' => 'NIGERIA',
-    'dbCountriessl' => 'SAO TOME & PRINCIPE',
-    'dbCountriesso' => 'SEYCHELLES',
-    'dbCountriesza' => 'UGANDA',
-    'dbCountriesss' => 'SIERRA LEONE',
-    'dbCountriessd' => 'RWANDA',
-    'dbCountriestz' => 'TOGO',
-    'dbCountriestg' => 'SUDAN',
-    'dbCountriestn' => 'TANZANIA',
-    'dbCountriesug' => 'TUNISIA',
-    'dbCountrieszm' => 'ZAMBIA',
-    'dbCountrieszw' => 'ZIMBABWE',
-];

+ 2 - 29
common/models/Period.php

@@ -547,7 +547,7 @@ class Period extends \common\components\ActiveRecord
             return false;
         }
         // 有其他期正在计算中,不可以结算
-        if ($period['IS_PROCESSING'] != 0) {
+        if ($period['IS_PREPARE'] < 4) {
             return false;
         }
         // 下一期的开始已经大于本期的结束时间,不可以结算
@@ -555,30 +555,6 @@ class Period extends \common\components\ActiveRecord
             return false;
         }
 
-
-        // 查看该期是否已经封期
-//        if(!$period['IS_CLOSED']){
-//            return false;
-//        }
-//        // 还没有生成业绩单,不能封期
-//        if(!$period['IS_PERFED'] || $period['IS_PERFED'] == self::PERF_FAIL){
-//            return false;
-//        }
-//        if($period['IS_SENT'] == self::SEND_FINISH){
-//            return false;
-//        }
-////        $previousPeriod = static::findOneAsArray(['PERIOD_NUM'=>$this->periodNum-1]);
-////        if($previousPeriod){
-////            // 查看上一期是否已经挂网,上一期挂网了,本期才能结算
-////            if(!$previousPeriod['IS_SENT']){
-////                return false;
-////            }
-////        }
-//        //上1期奖金未发放,限制不能结算
-//        if(!$this->isLastSent($this->periodNum)){
-//            return false;
-//        }
-
         return true;
     }
 
@@ -589,10 +565,7 @@ class Period extends \common\components\ActiveRecord
      */
     public function isCanSend($periodNum = null){
         $period = $this->setPeriodNum($periodNum);
-//        if(!$period['IS_CLOSED']){
-//            return false;
-//        }
-        if(!$period['IS_CALCULATED'] || $period['IS_CALCULATED'] == self::CALCULATE_FAIL){
+        if($period['IS_PREPARE'] != 4){
             return false;
         }
         if($period['IS_SENT'] == self::SEND_FINISH){