多语言优化

This commit is contained in:
2026-03-19 15:40:06 +08:00
parent db0e420a8f
commit 333e85f7d9
45 changed files with 864 additions and 276 deletions

View File

@@ -31,7 +31,10 @@
"rollNumber": "Roll Sum",
"placeholderRollNumber": "Sum of 5 dice (530)",
"rewardConfig": "Reward Config",
"placeholderRewardConfig": "Select reward config (by UI text)"
"placeholderRewardConfig": "Select reward config (by UI text)",
"addSuccess": "Added successfully",
"editSuccess": "Updated successfully",
"validateFailed": "Validation failed, please check required fields and format"
},
"search": {
"player": "Player",

View File

@@ -33,5 +33,34 @@
"rollNumber": "Roll Number",
"rewardConfig": "Reward Config",
"createTime": "Create Time"
},
"form": {
"titleAdd": "Add Player Draw Record (Test)",
"titleEdit": "Edit Player Draw Record (Test)",
"labelLotteryConfigId": "Lottery Config ID",
"placeholderLotteryConfigId": "Please enter lottery config id",
"placeholderWinCoin": "Win coin",
"placeholderRewardTier": "Please select tier (will auto fill reward config id)",
"rewardConfigId": "Reward Config ID",
"placeholderRewardConfigId": "Auto fill by tier or enter manually",
"placeholderStartIndex": "Please enter start index",
"labelTargetIndex": "Target Index",
"placeholderTargetIndex": "Please enter target index",
"placeholderRollNumber": "Please enter roll number",
"labelRollArray": "Roll Array [1,2,3,4,5,6]",
"placeholderRollArray": "Please enter roll array [1,2,3,4,5,6]",
"labelStatus": "Status (0=fail, 1=success)",
"placeholderSuperWinCoin": "Please enter super win coin",
"placeholderRewardWinCoin": "Please enter reward win coin",
"labelAdminId": "Admin ID",
"placeholderAdminId": "Please enter admin id",
"ruleLotteryConfigIdRequired": "Lottery config id is required",
"ruleDrawTypeRequired": "Draw type is required",
"ruleIsBigWinRequired": "Is big win is required",
"ruleDirectionRequired": "Direction is required",
"ruleRewardConfigIdRequired": "Reward config id is required",
"ruleStatusRequired": "Status is required",
"addSuccess": "Added successfully",
"editSuccess": "Updated successfully"
}
}

View File

@@ -30,6 +30,7 @@
"t5Weight": "T5 Pool Weight (%)",
"weightsSumHint": "Total pool weights: ",
"weightsSumUnit": "% / 100% (must equal 100%)",
"ruleWeightsSumMustBe100": "Total pool weights must equal 100%",
"walletTitle": "Player Wallet Operation",
"walletPlayer": "Player",
"walletBalance": "Balance",

View File

@@ -12,7 +12,9 @@
"placeholderFreeDrawCount": "Please enter free draw count",
"totalDrawCount": "Total Draw Count",
"placeholderTotalDrawCount": "Auto sum",
"placeholderRemark": "Remark (required)"
"placeholderRemark": "Remark (required)",
"addSuccess": "Added successfully",
"editSuccess": "Updated successfully"
},
"search": {
"player": "Player",

View File

@@ -17,7 +17,9 @@
"placeholderWalletBefore": "Auto from selected user",
"walletAfter": "After",
"placeholderWalletAfter": "Auto calculated",
"placeholderRemark": "Optional"
"placeholderRemark": "Optional",
"addSuccess": "Added successfully",
"editSuccess": "Updated successfully"
},
"search": {
"type": "Type",

View File

@@ -19,5 +19,34 @@
"realEv": "Real EV",
"remark": "Remark",
"weight": "Weight"
},
"form": {
"titleAdd": "Add Reward Config",
"titleEdit": "Edit Reward Config",
"labelDicePoints": "Dice Points",
"placeholderDicePoints": "Please enter dice points",
"labelUiText": "Display Text",
"placeholderUiText": "Please enter display text (Chinese)",
"labelUiTextEn": "Display Text (EN)",
"placeholderUiTextEn": "Please enter display text (English)",
"labelRealEv": "Real EV",
"placeholderRealEv": "Please enter real EV",
"labelTier": "Tier",
"placeholderTier": "Please select tier",
"tierBigWin": "BIGWIN (Super Prize)",
"labelBigWinWeight": "Big Win Weight",
"placeholderBigWinWeight": "0~10000, 10000=100% win",
"bigWinWeightDisabledTip": "For points 5 and 30, big win is guaranteed. Weight is fixed to 10000.",
"bigWinWeightTip": "10000=100% win, 0=0% win; only effective for points 10/15/20/25",
"labelRemark": "Remark",
"placeholderRemark": "Please enter remark",
"ruleDicePointsRequired": "Dice points is required",
"ruleUiTextRequired": "Display text is required",
"ruleUiTextEnMax": "Display text (EN) must be less than 255 characters",
"ruleRealEvRequired": "Real EV is required",
"ruleTierRequired": "Tier is required",
"ruleBigWinWeightRange": "Big win weight must be between 0 and 10000",
"addSuccess": "Added successfully",
"editSuccess": "Updated successfully"
}
}

View File

@@ -14,5 +14,18 @@
"statusFail": "Failed",
"statusDone": "Done",
"statusTesting": "Testing"
},
"form": {
"titleAdd": "Add Reward Config Weight Test Record",
"titleEdit": "Edit Reward Config Weight Test Record",
"labelTestCount": "Test Count: 100/500/1000",
"placeholderTestCount": "Please enter test count: 100/500/1000",
"labelWeightSnapshot": "Weight Snapshot: save id,grid_number,tier,weight by tier",
"placeholderWeightSnapshot": "Please enter weight snapshot: id,grid_number,tier,weight by tier",
"labelResultCounts": "Result Counts: grid_number => count",
"placeholderResultCounts": "Please enter result counts: grid_number => count",
"ruleTestCountRequired": "Test count is required",
"addSuccess": "Added successfully",
"editSuccess": "Updated successfully"
}
}