Skip to content

Commit

Permalink
GUI: fix variance timer option display
Browse files Browse the repository at this point in the history
  • Loading branch information
Zidras committed Jan 28, 2025
1 parent 9b6cb87 commit af3eff2
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion DBM-Core/DBM-Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ local function currentFullDate()
end

DBM = {
Revision = parseCurseDate("20250105191020"),
Revision = parseCurseDate("20250128191115"),
DisplayVersion = "10.1.13 alpha", -- the string that is shown as version
ReleaseRevision = releaseDate(2024, 07, 20) -- the date of the latest stable version that is available, optionally pass hours, minutes, and seconds for multiple releases in one day
}
Expand Down
54 changes: 27 additions & 27 deletions DBM-Core/localization.en.lua
Original file line number Diff line number Diff line change
Expand Up @@ -526,28 +526,28 @@ L.AUTO_TIMER_TEXTS.nextcountnp = L.AUTO_TIMER_TEXTS.nextcount


L.AUTO_TIMER_OPTIONS = {
target = "Show timer for $spell:%s debuff (%ds)",
targetcount = "Show timer (with count) for $spell:%s debuff (%ds)",
cast = "Show timer for $spell:%s cast (%ds)",
castcount = "Show timer (with count) for $spell:%s cast (%ds)",
castsource = "Show timer (with source) for $spell:%s cast (%ds)",
active = "Show timer for $spell:%s duration (%ds)",
fades = "Show timer for when $spell:%s fades from players (%ds)",
ai = "Show AI timer for $spell:%s cooldown (%ds)",

cd = "Show timer for $spell:%s cooldown (%ds)",
cdcount = "Show timer for $spell:%s cooldown (%ds)",
cdnp = "Show nameplate only timer for $spell:%s cooldown (%ds)",
cdnpcount = "Show nameplate only timer (with count) for $spell:%s cooldown (%ds)",
cdsource = "Show timer (with source) for $spell:%s cooldown (%ds)",--Maybe better wording?
cdspecial = "Show timer for special ability cooldown (%ds)",

next = "Show timer for next $spell:%s (%ds)",
nextcount = "Show timer for next $spell:%s (%ds)",
nextnp = "Show nameplate only timer for next $spell:%s (%ds)",
nextnpcount = "Show nameplate only timer (with count) for next $spell:%s (%ds)",
nextsource = "Show timer (with source) for next $spell:%s (%ds)",--Maybe better wording?
nextspecial = "Show timer for next special ability (%ds)",
target = "Show timer for $spell:%s debuff (%ss)",
targetcount = "Show timer (with count) for $spell:%s debuff (%ss)",
cast = "Show timer for $spell:%s cast (%ss)",
castcount = "Show timer (with count) for $spell:%s cast (%ss)",
castsource = "Show timer (with source) for $spell:%s cast (%ss)",
active = "Show timer for $spell:%s duration (%ss)",
fades = "Show timer for when $spell:%s fades from players (%ss)",
ai = "Show AI timer for $spell:%s cooldown (%ss)",

cd = "Show timer for $spell:%s cooldown (%ss)",
cdcount = "Show timer for $spell:%s cooldown (%ss)",
cdnp = "Show nameplate only timer for $spell:%s cooldown (%ss)",
cdnpcount = "Show nameplate only timer (with count) for $spell:%s cooldown (%ss)",
cdsource = "Show timer (with source) for $spell:%s cooldown (%ss)",--Maybe better wording?
cdspecial = "Show timer for special ability cooldown (%ss)",

next = "Show timer for next $spell:%s (%ss)",
nextcount = "Show timer for next $spell:%s (%ss)",
nextnp = "Show nameplate only timer for next $spell:%s (%ss)",
nextnpcount = "Show nameplate only timer (with count) for next $spell:%s (%ss)",
nextsource = "Show timer (with source) for next $spell:%s (%ss)",--Maybe better wording?
nextspecial = "Show timer for next special ability (%ss)",

var = "Show timer (with variance) for $spell:%s cooldown window (%ss)",
varcount = "Show timer (with count and variance) for $spell:%s cooldown window (%ss)",
Expand All @@ -557,11 +557,11 @@ L.AUTO_TIMER_OPTIONS = {
varspecial = "Show timer (with variance) for special ability cooldown window (%ss)",
varcombo = "Show timer (with variance) for ability combo cooldown window (%ss)",

achievement = "Show timer for %s (%ds)",
stage = "Show timer for next stage (%ds)",
adds = "Show timer for incoming adds (%ds)",
addscustom = "Show timer for incoming adds (%ds)",
roleplay = "Show timer for roleplay duration (%ds)"--This does need localizing though.
achievement = "Show timer for %s (%ss)",
stage = "Show timer for next stage (%ss)",
adds = "Show timer for incoming adds (%ss)",
addscustom = "Show timer for incoming adds (%ss)",
roleplay = "Show timer for roleplay duration (%ss)"--This does need localizing though.
}

L.AUTO_ICONS_OPTION_TARGETS = "Set icons on $spell:%s targets"--Usually used for player targets with no specific sorting
Expand Down

0 comments on commit af3eff2

Please sign in to comment.