Skip to content

Commit

Permalink
Fixes for Dragonflight
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Sep 11, 2022
1 parent 4c4ce58 commit 3688a0a
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 3 deletions.
2 changes: 2 additions & 0 deletions locales/deDE.lua
Original file line number Diff line number Diff line change
Expand Up @@ -264,3 +264,5 @@ L["whisperMissing"] = "Fehlende anflüstern"
L["whisperMissingDesc"] = "Flüstert Spieler, denen Stärkungszaubern fehlen, an."
L["world"] = "Welt"
L["zone"] = "Zone"

L.sound = "Sound"
1 change: 1 addition & 0 deletions locales/enUS.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ oRA3 sports a range of slash commands to aid you in fast-paced raiding. In case
]]

-- Ready Check module
L.sound = "Sound"
L.playersNotReady = "The following players are Not Ready: %s"
L.readyCheckSeconds = "Ready Check (%d seconds)"
L.ready = "Ready"
Expand Down
2 changes: 2 additions & 0 deletions locales/esES.lua
Original file line number Diff line number Diff line change
Expand Up @@ -261,3 +261,5 @@ L["whatIsThis"] = "¿Qué es todo esto?"
-- L["whisperMissingDesc"] = "Whisper players that are missing buffs."
L["world"] = "Mundo"
L["zone"] = "Zona"

L.sound = "Sonido"
2 changes: 2 additions & 0 deletions locales/frFR.lua
Original file line number Diff line number Diff line change
Expand Up @@ -281,3 +281,5 @@ L["checkRuneDesc"] = "Inclure les runes d'amélioration lors de la vérification
L["vantus"] = "Vantus"
L["notBestBuff"] = "Pas le consommable avec les plus hautes stats de disponible"
L["outOfRange"] = "Joueur hors de portée"

L.sound = "Son"
2 changes: 2 additions & 0 deletions locales/itIT.lua
Original file line number Diff line number Diff line change
Expand Up @@ -261,3 +261,5 @@ L["whatIsThis"] = "Cos'é questo?"
-- L["whisperMissingDesc"] = "Whisper players that are missing buffs."
L["world"] = "Reame"
L["zone"] = "Zona"

L.sound = "Audio"
2 changes: 2 additions & 0 deletions locales/koKR.lua
Original file line number Diff line number Diff line change
Expand Up @@ -280,3 +280,5 @@ L.checkRuneDesc = "강화 효과를 확인할 때 증강의 룬을 포함합니
L.vantus = "반투스"
L.notBestBuff = "사용 가능한 최상의 능력치 소비용품이 아님"
L.outOfRange = "거리를 벗어난 플레이어"

L.sound = "소리"
2 changes: 2 additions & 0 deletions locales/ptBR.lua
Original file line number Diff line number Diff line change
Expand Up @@ -256,3 +256,5 @@ L["whisperMissing"] = "Sussurro ausente"
L["whisperMissingDesc"] = "Sussurrar jogadores que estão sem buffs."
L["world"] = "Global"
L["zone"] = "Zona"

L.sound = "Som"
2 changes: 2 additions & 0 deletions locales/ruRU.lua
Original file line number Diff line number Diff line change
Expand Up @@ -261,3 +261,5 @@ L["whisperMissing"] = "Шептать отсутствующие бафы"
L["whisperMissingDesc"] = "Шептать игрокам, у которых отсутвуют бафы."
L["world"] = "Мир"
L["zone"] = "Зона"

L.sound = "Звук"
2 changes: 2 additions & 0 deletions locales/zhCN.lua
Original file line number Diff line number Diff line change
Expand Up @@ -261,3 +261,5 @@ L["whatIsThis"] = "到底怎麽回事?"
-- L["whisperMissingDesc"] = "Whisper players that are missing buffs."
-- L["world"] = "World"
L["zone"] = "地区"

L.sound = "声音"
2 changes: 2 additions & 0 deletions locales/zhTW.lua
Original file line number Diff line number Diff line change
Expand Up @@ -262,3 +262,5 @@ L["whisperMissing"] = "密語缺少者"
L["whisperMissingDesc"] = "密語缺少增益的玩家。"
L["world"] = "世界"
L["zone"] = "區域"

L.sound = "音效"
2 changes: 1 addition & 1 deletion modules/BattleRes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ local function createFrame()
brez:SetScript("OnDragStop", function(frame) frame:StopMovingOrSizing() oRA:SavePosition("oRA3BattleResMonitor") end)
brez:SetScript("OnEvent", updateFunc)

local bg = brez:CreateTexture(nil, "PARENT")
local bg = brez:CreateTexture()
bg:SetAllPoints(brez)
bg:SetBlendMode("BLEND")
bg:SetColorTexture(0, 0, 0, 0.3)
Expand Down
6 changes: 5 additions & 1 deletion modules/Cooldowns/Container.lua
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,11 @@ do
if not frame then
frame = CreateFrame("Frame", frameName, UIParent)
frame:SetFrameStrata("BACKGROUND")
frame:SetMinResize(100, 20)
if frame.SetResizeBounds then -- XXX Dragonflight compat
frame:SetResizeBounds(100, 20)
else
frame:SetMinResize(100, 20)
end
frame:SetWidth(200)
frame:SetHeight(148)

Expand Down
2 changes: 1 addition & 1 deletion modules/ReadyCheck.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ local options = {
args = {
sound = {
type = "toggle",
name = colorize(SOUND_LABEL),
name = colorize(L.sound),
desc = L.readyCheckSound,
descStyle = "inline",
width = "full",
Expand Down

0 comments on commit 3688a0a

Please sign in to comment.