帮助赔率历史记录文本修改
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m18s

This commit is contained in:
TJH 2026-05-09 16:29:02 +08:00
parent d9e625a5e2
commit 80566efc5d
6 changed files with 5517 additions and 5807 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3366,7 +3366,7 @@
"__prefab": {
"__id__": 141
},
"key": "Game History",
"key": "Rules_5_14",
"maxWidth": 800,
"_id": ""
},

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -109,7 +109,7 @@ export class HistoryDetail extends Component {
txt_round.color = yellowColor
txt_score.color = yellowColor
} else {
txt_round.string = getTranslate(this.dict, "Free Spin:") + ` ${i}/${scoreInfos.length - 1}`
txt_round.string = getTranslate(this.dict, "Free Spin") + ` ${i}/${scoreInfos.length - 1}`
txt_round.color = Color.WHITE
txt_score.color = Color.WHITE
}
@ -159,7 +159,7 @@ export class HistoryDetail extends Component {
if (findIndex == 0) {
txt_spin.string = getTranslate(this.dict, "Normal Spin")
} else {
txt_spin.string = getTranslate(this.dict, "Free Spin:") + `${findIndex}/${maxIdx}`
txt_spin.string = getTranslate(this.dict, "Free Spin") + `${findIndex}/${maxIdx}`
}
let yellowColor = new Color(0xFF, 0xAE, 0x00)

View File

@ -11,7 +11,7 @@ let apiaddr = "";
let token = "eyJQIjoxMDEzNzAsIkUiOjE3NjI4ODQxNjksIlMiOjEwMDIsIkQiOiJycF8xMDAxNyJ9.nb071g5rB617sJNMMhSKh7kXM0C0oTWSfPo90pejoc4";
let language = "en"
let currency = "THB"
let csymbol = ""
let csymbol = "$"
let supportUrl = ""
let oddsUrl = ""
let historyUrl = ""
@ -30,7 +30,7 @@ export function getHistoryUrl() {
}
export function getLanguage() {
// return 'zh';
return 'zh';
return language;
}