文字导出

dev_chengFeng
jiaoyangna 2021-02-26 09:59:01 +08:00
parent f08477cbd6
commit b93f69cfa6
9 changed files with 14 additions and 11 deletions

View File

@ -2214,4 +2214,9 @@
[12213] = GetLanguageStrById("equipIdList长度是 "),
[12214] = GetLanguageStrById("点击交换else语句"),
[12215] = GetLanguageStrById("装备个数"),
[12216] = GetLanguageStrById("战力:"),
[12217] = GetLanguageStrById("赔率:"),
[12218] = GetLanguageStrById("收到援助:"),
[12219] = GetLanguageStrById("穿 戴"),
[12220] = GetLanguageStrById("卸 下"),
}

View File

@ -94,7 +94,7 @@ function this.RankNodeAdapter(node, data)
local scoreStr = isWin and "+"..data.myScoreChange or data.myScoreChange
local color = isWin and UIColor.GREEN or UIColor.RED
result.text = resultStr
deltaScore.text ="积分:".. scoreStr
deltaScore.text =Language[11693].. scoreStr
result.color = color
deltaScore.color = color
if data.myScoreChange == 0 then

View File

@ -314,8 +314,8 @@ function this.RefreshEnemyData()
local btnItemNum = Util.GetGameObject(node, "challenge/item/num"):GetComponent("Text")
lv_name:GetComponent("Text").text = EnemyList[i].personInfo.name
integral:GetComponent("Text").text = "积分:".. EnemyList[i].personInfo.score
power:GetComponent("Text").text = "战力:"..EnemyList[i].personInfo.totalForce
integral:GetComponent("Text").text = Language[11693].. EnemyList[i].personInfo.score
power:GetComponent("Text").text = Language[12216]..EnemyList[i].personInfo.totalForce
btnText.gameObject:SetActive(leftTimes > 0)
btnText.text = Language[10099]

View File

@ -265,8 +265,8 @@ function this.RefreshBetRateShow()
-- 赔率
local redWinRate = ArenaTopMatchManager.rate--allCoin/betRateInfo.redCoins
local blueWinRate = ArenaTopMatchManager.rate--allCoin/betRateInfo.blueCoins
this.redRate.text = string.format("%s%0.2f", "赔率:",redWinRate)
this.blueRate.text = string.format("%s%0.2f","赔率:",blueWinRate)
this.redRate.text = string.format("%s%0.2f", Language[12217],redWinRate)
this.blueRate.text = string.format("%s%0.2f",Language[12217],blueWinRate)
-- 竞猜币
this.coinIcon.sprite = SetIcon(GUESS_COIN)

View File

@ -115,4 +115,4 @@ function BattleUnit:ClearLoopFunc(t)
self._LoopFuncList = {}
end
end
--++++++++++++++LoopFunc
--++++++++++++++LoopFunc

View File

@ -150,7 +150,7 @@ function this.SingleHelpDataShow(go,data)
Util.GetGameObject(go, "heroPro/frame/chipImage"):GetComponent("Image").sprite = Util.LoadSprite(GetHeroChipQuantityImageByquality(itemConfig[data.type].Quantity))
Util.GetGameObject(go, "heroPro/frame/proIcon"):GetComponent("Image").sprite = Util.LoadSprite(GetProStrImageByProNum(itemConfig[data.type].PropertyName))
Util.GetGameObject(go, "okAid/chipInfo"):GetComponent("Text").text = GetLanguageStrById(itemConfig[data.type].Name)
Util.GetGameObject(go, "okAid/getAidText/getAidNumText"):GetComponent("Text").text ="收到援助:"..data.num.."/"..guildHelpConfig[1].RecourseTime[2]
Util.GetGameObject(go, "okAid/getAidText/getAidNumText"):GetComponent("Text").text =Language[12218]..data.num.."/"..guildHelpConfig[1].RecourseTime[2]
Util.GetGameObject(go, "okAid/getFinishText"):SetActive(data.num == data.hadtakenum and data.hadtakenum == guildHelpConfig[1].RecourseTime[2])
Util.GetGameObject(go, "okAid/progressbar/progress1"):GetComponent("Image").fillAmount = data.num/guildHelpConfig[1].RecourseTime[2]
Util.GetGameObject(go, "okAid/progressbar/progress2"):GetComponent("Image").fillAmount = data.hadtakenum/guildHelpConfig[1].RecourseTime[2]

View File

@ -142,14 +142,14 @@ function RoleEquipChangePopup:OnShow()
this.equipPanel[1].bg:SetActive(true)
this.equipPanel[1].curEquipText:SetActive(false)
this.equipPanel[1].curEquipBtnDown:SetActive(true)
this.equipPanel[1].curEquipBtnDownText.text = "穿 戴"
this.equipPanel[1].curEquipBtnDownText.text = Language[12219]
this.ShowCurEquipData(1)
elseif type==2 then
this.equipPanel[2].bg:SetActive(false)
this.equipPanel[1].bg:SetActive(true)
this.curEquipText:SetActive(false)
this.equipPanel[1].curEquipBtnDown:SetActive(true)
this.equipPanel[1].curEquipBtnDownText.text = "卸 下"
this.equipPanel[1].curEquipBtnDownText.text = Language[12220]
this.ShowCurEquipData(1)
elseif type==3 then
this.equipPanel[2].bg:SetActive(true)

View File

@ -317,4 +317,3 @@ return this

View File

@ -267,4 +267,3 @@ return XiaoYaoYouPanel