Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions EllesmereUIMinimap/EllesmereUIMinimap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5267,10 +5267,11 @@ do

local label = btn:CreateFontString(nil, "OVERLAY")
if EllesmereUI and EllesmereUI.PrimeFontShadow then EllesmereUI.PrimeFontShadow(label, true) end
label:SetFont("Fonts\\FRIZQT__.TTF", 11, "")
label:SetFont((EllesmereUI.GetFontPath and EllesmereUI.GetFontPath("minimap"))
or "Fonts\\FRIZQT__.TTF", 11, "")
label:SetPoint("LEFT", btn, "LEFT", 10, 0)
label:SetTextColor(0.9, 0.9, 0.9)
label:SetText(item.text)
label:SetText(EllesmereUI.L(item.text))

local itemFn = item.fn
btn:SetScript("OnClick", function()
Expand Down Expand Up @@ -5327,10 +5328,11 @@ do

local label = btn:CreateFontString(nil, "OVERLAY")
if EllesmereUI and EllesmereUI.PrimeFontShadow then EllesmereUI.PrimeFontShadow(label, true) end
label:SetFont("Fonts\\FRIZQT__.TTF", 11, "")
label:SetFont((EllesmereUI.GetFontPath and EllesmereUI.GetFontPath("minimap"))
or "Fonts\\FRIZQT__.TTF", 11, "")
label:SetPoint("LEFT", btn, "LEFT", 10, 0)
label:SetTextColor(0.9, 0.9, 0.9)
label:SetText(item.text)
label:SetText(EllesmereUI.L(item.text))

btn:HookScript("OnClick", function() C_Timer.After(0, function() SetMenuVisible(false) end) end)

Expand Down
3 changes: 2 additions & 1 deletion Locales/_keys.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Auto-generated by .tools/extract-locale-keys.sh -- do not edit by hand.
# Canonical list of translatable English keys passed as string literals
# (646 unique). Regenerate after wrapping new strings. Keys passed as
# (647 unique). Regenerate after wrapping new strings. Keys passed as
# variables are not listed here -- use the in-game /euiloc harvester for
# the complete runtime set.
(Raid)
Expand Down Expand Up @@ -567,6 +567,7 @@ This cannot be undone. Export your own profile as a backup first.
This export includes cross profile settings that will overwrite the importing user's settings including Quality of Life, Hovercast and more that should typically not be shared with standard profiles. THIS IS NOT RECOMMENDED for public sharing of profiles.
This is where you can control the settings of Unlock Mode.\n\nElements can be repositioned by dragging or arrow keys (+shift)\nAnchor, Height Match, or Width match any element.\nSnapping is based on closest element, but you can snap only to\n a specific element via right click or the settings icon.
This option requires %1$s to be %2$s
This option requires Subtitle Text to include the Guild Name
This preset
This profile string does not carry any Window & Tooltip Skins settings.
This profile string does not carry any override data.
Expand Down
Loading