This commit is contained in:
NoM0Re
2025-04-03 21:03:11 +02:00
committed by GitHub
parent 875da9fb0e
commit 6cdfcac1b1
124 changed files with 1886 additions and 284 deletions
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local tinsert, tremove = table.insert, table.remove
local select, pairs, type, unpack = select, pairs, type, unpack
@@ -2,7 +2,8 @@
Anchor for a Expandable section
-------------------------------------------------------------------------------]]
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local Type, Version = "WeakAurasExpandAnchor", 3
local AceGUI = LibStub and LibStub("AceGUI-3.0", true)
if not AceGUI or (AceGUI:GetWidgetVersion(Type) or 0) >= Version then return end
@@ -2,7 +2,8 @@
Button Widget for our Expand button
-------------------------------------------------------------------------------]]
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local Type, Version = "WeakAurasExpandSmall", 4
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local Type, Version = "WeakAurasNewButton", 27
local AceGUI = LibStub and LibStub("AceGUI-3.0", true)
@@ -1,6 +1,7 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local pairs, next, type, unpack = pairs, next, type, unpack
@@ -1,6 +1,7 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
local pairs, next, type, unpack = pairs, next, type, unpack
@@ -67,8 +68,29 @@ local methods = {
WeakAuras.Import(self.companionData.encoded, nil, nil, linkedAuras)
end
function self.callbacks.OnFollowLinkClick()
self.menu = {
{ text = L["Linked Auras"], isTitle = true }
}
for auraId in pairs(self.linkedAuras) do
if not self.linkedChildren[auraId] then
tinsert(
self.menu,
{
text = auraId,
notCheckable = true,
func = function() WeakAuras.PickDisplay(auraId, "information") end
}
)
end
end
EasyMenu(self.menu, WeakAuras_DropDownMenu, self.followLink, 0, 0, "MENU", 5)
end
self:SetTitle(self.companionData.name)
self.frame:SetScript("OnClick", self.callbacks.OnClickNormal)
self.update:SetScript("OnClick", self.callbacks.OnUpdateClick)
self.followLink:SetScript("OnClick", self.callbacks.OnFollowLinkClick)
local data = OptionsPrivate.Private.StringToTable(self.companionData.encoded, true)
WeakAuras.PreAdd(data.d)
self.data = data.d
@@ -160,9 +182,6 @@ local methods = {
self.titletext = title
self.title:SetText(title)
end,
["SetClick"] = function(self, func)
self.frame:SetScript("OnClick", func)
end,
["ResetLinkedAuras"] = function(self)
wipe(self.linkedAuras)
wipe(self.linkedChildren)
@@ -286,6 +305,23 @@ local function Constructor()
button.description = {}
-- follow link button
local followLink = CreateFrame("Button", nil, button)
button.followLink = followLink
followLink:SetNormalTexture("Interface\\AddOns\\WeakAuras\\Media\\Textures\\loottoast-arrow-green")
followLink:GetNormalTexture():SetRotation(math.rad(-90))
followLink:SetWidth(32)
followLink:SetHeight(32)
followLink:SetPoint("RIGHT", button, "RIGHT", -2, 0)
followLink:SetScript("OnEnter", function()
GameTooltip:SetOwner(followLink, "ANCHOR_NONE")
GameTooltip:SetPoint("BOTTOMLEFT", followLink, "TOPRIGHT")
GameTooltip:ClearLines()
GameTooltip:AddLine(L["Linked Auras"])
GameTooltip:Show()
end)
followLink:SetScript("OnLeave", Hide_Tooltip)
local update = CreateFrame("Button", nil, button)
button.update = update
update.disabled = true
@@ -295,7 +331,7 @@ local function Constructor()
update:Disable()
update:SetWidth(24)
update:SetHeight(24)
update:SetPoint("RIGHT", button, "RIGHT", -2, 0)
update:SetPoint("RIGHT", followLink, "LEFT", -2, 0)
-- Add logo
local updateLogo = CreateFrame("Frame", nil, button)
@@ -324,7 +360,13 @@ local function Constructor()
end)
update:SetScript("OnEnter", function()
animGroup:Play()
GameTooltip:SetOwner(update, "ANCHOR_NONE")
GameTooltip:SetPoint("BOTTOMLEFT", update, "TOPRIGHT")
GameTooltip:ClearLines()
GameTooltip:AddLine(L["Update"])
GameTooltip:Show()
end)
update:SetScript("OnLeave", Hide_Tooltip)
update:Hide()
updateLogo:Hide()
@@ -335,6 +377,7 @@ local function Constructor()
background = background,
update = update,
updateLogo = updateLogo,
followLink = followLink,
type = Type,
}
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
+2 -1
View File
@@ -59,7 +59,8 @@
step (optional) -> like bigStep, but applies to number input as well
]]
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local WeakAuras = WeakAuras
local L = WeakAuras.L
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Lua APIs
local pairs, error, coroutine = pairs, error, coroutine
+69 -22
View File
@@ -4,37 +4,84 @@ local AddonName = ...
local OptionsPrivate = select(2, ...)
OptionsPrivate.changelog = {
versionString = '5.19.5',
dateString = '2025-03-10',
fullChangeLogUrl = 'https://github.com/WeakAuras/WeakAuras2/compare/5.19.4...5.19.5',
versionString = '5.19.6',
dateString = '2025-04-02',
fullChangeLogUrl = 'https://github.com/WeakAuras/WeakAuras2/compare/5.19.5...5.19.6',
highlightText = [==[
No new features this release, just fixes to some minor bugs]==], commitText = [==[InfusOnWoW (9):
Fixes:
- Update Discord List
- Update Discord List
- Stop Motion Sub Element: Fix setting of custom row/colum etc settings
- Partially revert 4e628f546befa7
- Being in Excavation Site 9 IsInInstance() returns false
- Texture Sub Element: Don't resize main aura on atlas selection
- Workaround boss unit stupidity by Blizzard
- Workaround INSTANCE_ENGAGE_UNIT with incosistent UnitGUID/UnitExists
- Remove Stop Motion texture data
- Bug report url points to the correct issue template now.
- model subregions were punished & will now obey the rotation option.
- Fixed Bigwigs trigger following an update of that addon. (thanks @ntowle!)
- Fixed misc errors with fallback states (i.e. when options are open).
- Fixed some templates which were producing nonsense auras.
- Localization should have fewer duplicate phrases for our translators to work through.
- Fixed an oversight with how progress works for sub-elements attached to an empty region.
- The sliders on stop motion animation start/end properties should now behave as sliders, not just weird looking inputs.
- Fixed spell cache to account for some insane choices blizzard made.
- Ticks now correctly update their location when progress source is changed via conditions.
- String-valued properties can now be correctly "unset" via conditions without having to do arcane workarounds.
- A progress source from an inactive trigger no longer does insane things.
- Faction reputation trigger no longer gives a mangled %standing string for renown-style factions.
Stanzilla (2):
New Features:
- There's a new "Since Active" condition variable, which allows for temporary property changes when a trigger activates.
- Pending updates to installed auras have a context menu to help make it less frustrating if you want to do anything other than accept the update.
- Load has a new player guild option, works similarly to player name.
- Health trigger absorb & heal absorb overlays now support "Attach to End, backwards" mode.
- Several formatters learned how to pad strings with spaces on the left or right sides. WeakAuras.PadString(string, mode, length) is also available in custom code to perform the same task.
- Item Equipped trigger & load option learned how to do exact match on the item id.]==], commitText = [==[InfusOnWoW (27):
- Sub Models: Fix rotation setting
- Revert "Simplify Condition Test functions"
- Conditions: Add an activationTime for triggers
- Simplify Condition Test functions
- Remove triggerState[id].activeTrigger
- Change code using triggerState[id].activeTrigger
- Fix Automatic Progress Sources on sub elements
- Update Atlas File List from wago.tools
- Update Discord List
- Add id also to fallback states
- Remove unused Private.GetActiveTrigger function
- Fix UpdateProgress notification
- Fix lua error for health trigger's absorb overlays withe fake states
- Update Atlas File List from wago.tools
- Update Discord List
- Fix lua error on showing fake states with ticks
- Fix "Automatic Progress" of Sub Elements attached to an Empty Base
- Update Atlas File List from wago.tools
- Load: Add a guild name option
- Health trigger: Add aborb at end reversed mode
- StopMotion: Fix up/down buttons for start/end percent
- Tweak spell cache building
- Formatters: Add a pad option to various formatters
- Ticks: Update Ticks on UpdateProgress not on Update
- Fix string Conditions not unsetting if string left empty default
- Item Equipped: Add exact match to load options/fix name matching
- Sub Regions: Fix progress not updating on trigger deactivation
Nick Towle (1):
- Fix BigWigs locale for Break and Pull bars (#5782)
Stanzilla (4):
- Update WeakAurasModelPaths from wago.tools
- pull enUS locale for Options from CF
- Update WeakAurasModelPaths from wago.tools
- Update WeakAurasModelPaths from wago.tools
dependabot[bot] (4):
- Bump cbrgm/mastodon-github-action from 2.1.12 to 2.1.13
- Bump tsickert/discord-webhook from 6.0.0 to 7.0.0
- Bump leafo/gh-actions-luarocks from 4 to 5
- Bump leafo/gh-actions-lua from 10 to 11
emptyrivers (1):
- remove spurious enUS translations
- RENOWN_LEVEL_LABEL globalstring changed with 11.1
mrbuds (4):
- UpdatePendingButton: add context menu with list of linked auras
- Fix ascendance template
- Update bug report url
- BossMod triggers: bar timers doesn't require to be enable in addon settings anymore, add an option to still filter matching add settings
]==]
}
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
+2 -1
View File
@@ -45,7 +45,8 @@
--- - action: The action function, called on activating a condition
-- - type: The type
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local WeakAuras = WeakAuras;
local L = WeakAuras.L;
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
local flattenRegionOptions = OptionsPrivate.commonOptions.flattenRegionOptions
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L;
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
local parsePrefix = OptionsPrivate.commonOptions.parsePrefix
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
+3
View File
@@ -750,6 +750,7 @@ Falls die Zahl als Dezimalzahl (z.B. 0.5), Bruch (z.B. 1/2) oder Prozentsatz (z.
--[[Translation missing --]]
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
--[[Translation missing --]]
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
L["Limit"] = "Limit"
--[[Translation missing --]]
L["Line"] = "Line"
@@ -757,6 +758,8 @@ Falls die Zahl als Dezimalzahl (z.B. 0.5), Bruch (z.B. 1/2) oder Prozentsatz (z.
L["Linear Texture %s"] = "Linear Texture %s"
--[[Translation missing --]]
L["Linked aura: "] = "Linked aura: "
--[[Translation missing --]]
L["Linked Auras"] = "Linked Auras"
L["Load"] = "Laden"
L["Loaded"] = "Geladen"
--[[Translation missing --]]
+909
View File
@@ -1,3 +1,912 @@
if not WeakAuras.IsLibsOK() then return end
if ((GAME_LOCALE or GetLocale()) ~= "enUS") or ((GAME_LOCALE or GetLocale()) ~= "enGB") then
return
end
local L = WeakAuras.L
-- WeakAuras/Options
L[" and |cFFFF0000mirrored|r"] = " and |cFFFF0000mirrored|r"
L["-- Do not remove this comment, it is part of this aura: "] = "-- Do not remove this comment, it is part of this aura: "
L[" rotated |cFFFF0000%s|r degrees"] = " rotated |cFFFF0000%s|r degrees"
L["% - To show a percent sign"] = "% - To show a percent sign"
L["% of Progress"] = "% of Progress"
L["%d |4aura:auras; added"] = "%d |4aura:auras; added"
L["%d |4aura:auras; deleted"] = "%d |4aura:auras; deleted"
L["%d |4aura:auras; modified"] = "%d |4aura:auras; modified"
L["%d |4aura:auras; with meta data modified"] = "%d |4aura:auras; with meta data modified"
L["%d displays loaded"] = "%d displays loaded"
L["%d displays not loaded"] = "%d displays not loaded"
L["%d displays on standby"] = "%d displays on standby"
L["%i auras selected"] = "%i auras selected"
L["%i."] = "%i."
L["%i. %s"] = "%i. %s"
L["%s - %i. Trigger"] = "%s - %i. Trigger"
L["%s - Alpha Animation"] = "%s - Alpha Animation"
L["%s - Color Animation"] = "%s - Color Animation"
L["%s - Condition Custom Chat %s"] = "%s - Condition Custom Chat %s"
L["%s - Condition Custom Check %s"] = "%s - Condition Custom Check %s"
L["%s - Condition Custom Code %s"] = "%s - Condition Custom Code %s"
L["%s - Custom Anchor"] = "%s - Custom Anchor"
L["%s - Custom Grow"] = "%s - Custom Grow"
L["%s - Custom Sort"] = "%s - Custom Sort"
L["%s - Custom Text"] = "%s - Custom Text"
L["%s - Finish"] = "%s - Finish"
L["%s - Finish Action"] = "%s - Finish Action"
L["%s - Finish Custom Text"] = "%s - Finish Custom Text"
L["%s - Init Action"] = "%s - Init Action"
L["%s - Main"] = "%s - Main"
L["%s - Option #%i has the key %s. Please choose a different option key."] = "%s - Option #%i has the key %s. Please choose a different option key."
L["%s - Rotate Animation"] = "%s - Rotate Animation"
L["%s - Scale Animation"] = "%s - Scale Animation"
L["%s - Start"] = "%s - Start"
L["%s - Start Action"] = "%s - Start Action"
L["%s - Start Custom Text"] = "%s - Start Custom Text"
L["%s - Translate Animation"] = "%s - Translate Animation"
L["%s - Trigger Logic"] = "%s - Trigger Logic"
L["%s %s, Lines: %d, Frequency: %0.2f, Length: %d, Thickness: %d"] = "%s %s, Lines: %d, Frequency: %0.2f, Length: %d, Thickness: %d"
L["%s %s, Particles: %d, Frequency: %0.2f, Scale: %0.2f"] = "%s %s, Particles: %d, Frequency: %0.2f, Scale: %0.2f"
L["%s %u. Overlay Function"] = "%s %u. Overlay Function"
L["%s (%s)"] = "%s (%s)"
L["%s Alpha: %d%%"] = "%s Alpha: %d%%"
L["%s Color"] = "%s Color"
L["%s Custom Variables"] = "%s Custom Variables"
L["%s Default Alpha, Zoom, Icon Inset, Aspect Ratio"] = "%s Default Alpha, Zoom, Icon Inset, Aspect Ratio"
L["%s Duration Function"] = "%s Duration Function"
L["%s Icon Function"] = "%s Icon Function"
L["%s Inset: %d%%"] = "%s Inset: %d%%"
L["%s is not a valid SubEvent for COMBAT_LOG_EVENT_UNFILTERED"] = "%s is not a valid SubEvent for COMBAT_LOG_EVENT_UNFILTERED"
L["%s Keep Aspect Ratio"] = "%s Keep Aspect Ratio"
L["%s Name Function"] = "%s Name Function"
L["%s Stacks Function"] = "%s Stacks Function"
L["%s stores around %s KB of data"] = "%s stores around %s KB of data"
L["%s Texture"] = "%s Texture"
L["%s Texture Function"] = "%s Texture Function"
L["%s total auras"] = "%s total auras"
L["%s Trigger Function"] = "%s Trigger Function"
L["%s Untrigger Function"] = "%s Untrigger Function"
L["%s X offset by %d"] = "%s X offset by %d"
L["%s Y offset by %d"] = "%s Y offset by %d"
L["%s Zoom: %d%%"] = "%s Zoom: %d%%"
L["%s, Border"] = "%s, Border"
L["%s, Offset: %0.2f;%0.2f"] = "%s, Offset: %0.2f;%0.2f"
L["%s, offset: %0.2f;%0.2f"] = "%s, offset: %0.2f;%0.2f"
L["%s, Start Animation"] = "%s, Start Animation"
L["%s|cFFFF0000custom|r texture with |cFFFF0000%s|r blend mode%s%s"] = "%s|cFFFF0000custom|r texture with |cFFFF0000%s|r blend mode%s%s"
L["(Right click to rename)"] = "(Right click to rename)"
L["|c%02x%02x%02x%02xCustom Color|r"] = "|c%02x%02x%02x%02xCustom Color|r"
L["|cff999999Triggers tracking multiple units will default to being active even while no affected units are found without a Unit Count or Match Count setting applied.|r"] = "|cff999999Triggers tracking multiple units will default to being active even while no affected units are found without a Unit Count or Match Count setting applied.|r"
L["|cFFE0E000Note:|r This sets the description only on '%s'"] = "|cFFE0E000Note:|r This sets the description only on '%s'"
L["|cFFE0E000Note:|r This sets the URL on all selected auras"] = "|cFFE0E000Note:|r This sets the URL on all selected auras"
L["|cFFE0E000Note:|r This sets the URL on this group and all its members."] = "|cFFE0E000Note:|r This sets the URL on this group and all its members."
L["|cFFFF0000Automatic|r length"] = "|cFFFF0000Automatic|r length"
L["|cFFFF0000default|r texture"] = "|cFFFF0000default|r texture"
L["|cFFFF0000desaturated|r "] = "|cFFFF0000desaturated|r "
L["|cFFFF0000Note:|r The unit '%s' is not a trackable unit."] = "|cFFFF0000Note:|r The unit '%s' is not a trackable unit."
L["|cFFFF0000Note:|r The unit '%s' requires soft target cvars to be enabled."] = "|cFFFF0000Note:|r The unit '%s' requires soft target cvars to be enabled."
L["|cFFffcc00Anchors:|r Anchored |cFFFF0000%s|r to frame's |cFFFF0000%s|r"] = "|cFFffcc00Anchors:|r Anchored |cFFFF0000%s|r to frame's |cFFFF0000%s|r"
L["|cFFffcc00Anchors:|r Anchored |cFFFF0000%s|r to frame's |cFFFF0000%s|r with offset |cFFFF0000%s/%s|r"] = "|cFFffcc00Anchors:|r Anchored |cFFFF0000%s|r to frame's |cFFFF0000%s|r with offset |cFFFF0000%s/%s|r"
L["|cFFffcc00Anchors:|r Anchored to frame's |cFFFF0000%s|r"] = "|cFFffcc00Anchors:|r Anchored to frame's |cFFFF0000%s|r"
L["|cFFffcc00Anchors:|r Anchored to frame's |cFFFF0000%s|r with offset |cFFFF0000%s/%s|r"] = "|cFFffcc00Anchors:|r Anchored to frame's |cFFFF0000%s|r with offset |cFFFF0000%s/%s|r"
L["|cFFffcc00Extra Options:|r"] = "|cFFffcc00Extra Options:|r"
L["|cFFffcc00Extra:|r %s and %s %s"] = "|cFFffcc00Extra:|r %s and %s %s"
L["|cFFffcc00Font Flags:|r |cFFFF0000%s|r and shadow |c%sColor|r with offset |cFFFF0000%s/%s|r%s%s"] = "|cFFffcc00Font Flags:|r |cFFFF0000%s|r and shadow |c%sColor|r with offset |cFFFF0000%s/%s|r%s%s"
L["|cFFffcc00Font Flags:|r |cFFFF0000%s|r and shadow |c%sColor|r with offset |cFFFF0000%s/%s|r%s%s%s"] = "|cFFffcc00Font Flags:|r |cFFFF0000%s|r and shadow |c%sColor|r with offset |cFFFF0000%s/%s|r%s%s%s"
L["|cffffcc00Format Options|r"] = "|cffffcc00Format Options|r"
L[ [=[ |cff00ff00Player|r, |cff00ff00Target|r, |cff00ff00Focus|r, and |cff00ff00Pet|r correspond directly to those individual unitIDs.
|cff00ff00Specific Unit|r lets you provide a specific valid unitID to watch.
|cffff0000Note|r: The game will not fire events for all valid unitIDs, making some untrackable by this trigger.
|cffffff00Party|r, |cffffff00Raid|r, |cffffff00Boss|r, |cffffff00Arena|r, and |cffffff00Nameplate|r can match multiple corresponding unitIDs.
|cffffff00Smart Group|r adjusts to your current group type, matching just the "player" when solo, "party" units (including "player") in a party or "raid" units in a raid.
|cffffff00Multi-target|r attempts to use the Combat Log events, rather than unitID, to track affected units.
|cffff0000Note|r: Without a direct relationship to actual unitIDs, results may vary.
|cffffff00*|r Yellow Unit settings can match multiple units and will default to being active even while no affected units are found without a Unit Count or Match Count setting.]=] ] = [=[ |cff00ff00Player|r, |cff00ff00Target|r, |cff00ff00Focus|r, and |cff00ff00Pet|r correspond directly to those individual unitIDs.
|cff00ff00Specific Unit|r lets you provide a specific valid unitID to watch.
|cffff0000Note|r: The game will not fire events for all valid unitIDs, making some untrackable by this trigger.
|cffffff00Party|r, |cffffff00Raid|r, |cffffff00Boss|r, |cffffff00Arena|r, and |cffffff00Nameplate|r can match multiple corresponding unitIDs.
|cffffff00Smart Group|r adjusts to your current group type, matching just the "player" when solo, "party" units (including "player") in a party or "raid" units in a raid.
|cffffff00Multi-target|r attempts to use the Combat Log events, rather than unitID, to track affected units.
|cffff0000Note|r: Without a direct relationship to actual unitIDs, results may vary.
|cffffff00*|r Yellow Unit settings can match multiple units and will default to being active even while no affected units are found without a Unit Count or Match Count setting.]=]
L["A 20x20 pixels icon"] = "A 20x20 pixels icon"
L["A 32x32 pixels icon"] = "A 32x32 pixels icon"
L["A 40x40 pixels icon"] = "A 40x40 pixels icon"
L["A 48x48 pixels icon"] = "A 48x48 pixels icon"
L["A 64x64 pixels icon"] = "A 64x64 pixels icon"
L["A group that dynamically controls the positioning of its children"] = "A group that dynamically controls the positioning of its children"
L[ [=[A timer will automatically be displayed according to default Interface Settings (overridden by some addons).
Enable this setting if you want this timer to be hidden, or when using a WeakAuras text to display the timer]=] ] = [=[A timer will automatically be displayed according to default Interface Settings (overridden by some addons).
Enable this setting if you want this timer to be hidden, or when using a WeakAuras text to display the timer]=]
L["A Unit ID (e.g., party1)."] = "A Unit ID (e.g., party1)."
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
L["Active Aura Filters and Info"] = "Active Aura Filters and Info"
L["Actual Spec"] = "Actual Spec"
L["Add %s"] = "Add %s"
L["Add a new display"] = "Add a new display"
L["Add Condition"] = "Add Condition"
L["Add Entry"] = "Add Entry"
L["Add Extra Elements"] = "Add Extra Elements"
L["Add Option"] = "Add Option"
L["Add Overlay"] = "Add Overlay"
L["Add Property Change"] = "Add Property Change"
L["Add Snippet"] = "Add Snippet"
L["Add Sub Option"] = "Add Sub Option"
L["Add to group %s"] = "Add to group %s"
L["Add to new Dynamic Group"] = "Add to new Dynamic Group"
L["Add to new Group"] = "Add to new Group"
L["Add Trigger"] = "Add Trigger"
L["Additional Events"] = "Additional Events"
L["Advanced"] = "Advanced"
L["Affected Unit Filters and Info"] = "Affected Unit Filters and Info"
L["Align"] = "Align"
L["Alignment"] = "Alignment"
L["All maintainers of the libraries we use, especially:"] = "All maintainers of the libraries we use, especially:"
L["All of"] = "All of"
L["Allow Full Rotation"] = "Allow Full Rotation"
L["Anchor"] = "Anchor"
L["Anchor Mode"] = "Anchor Mode"
L["Anchor Point"] = "Anchor Point"
L["Anchored To"] = "Anchored To"
L["And "] = "And "
L["and"] = "and"
L["and %s"] = "and %s"
L["and aligned left"] = "and aligned left"
L["and aligned right"] = "and aligned right"
L["And our Patreons, Discord Regulars and Subscribers, and Friends of the Addon:"] = "And our Patreons, Discord Regulars and Subscribers, and Friends of the Addon:"
L["and rotated left"] = "and rotated left"
L["and rotated right"] = "and rotated right"
L["and with width |cFFFF0000%s|r and %s"] = "and with width |cFFFF0000%s|r and %s"
L["Angle"] = "Angle"
L["Angle Between Auras"] = "Angle Between Auras"
L["Animate"] = "Animate"
L["Animated Expand and Collapse"] = "Animated Expand and Collapse"
L["Animates progress changes"] = "Animates progress changes"
L["Animation End"] = "Animation End"
L["Animation Mode"] = "Animation Mode"
L["Animation relative duration description"] = "Animation relative duration description"
L["Animation Sequence"] = "Animation Sequence"
L["Animation Start"] = "Animation Start"
L["Any of"] = "Any of"
L["Apply Template"] = "Apply Template"
L["Arcane Orb"] = "Arcane Orb"
L["Area"] = "Area"
L["At a position a bit left of Left HUD position."] = "At a position a bit left of Left HUD position."
L["At a position a bit left of Right HUD position"] = "At a position a bit left of Right HUD position"
L["At the same position as Blizzard's spell alert"] = "At the same position as Blizzard's spell alert"
L["Attach to Foreground"] = "Attach to Foreground"
L[ [=[Aura is
Off Screen]=] ] = [=[Aura is
Off Screen]=]
L["Aura Name Pattern"] = "Aura Name Pattern"
L["Aura Order"] = "Aura Order"
L["Aura received from: %s"] = "Aura received from: %s"
L["Aura: '%s'"] = "Aura: '%s'"
L["Auto-Clone (Show All Matches)"] = "Auto-Clone (Show All Matches)"
L["Automatic length"] = "Automatic length"
L["Available Voices are system specific"] = "Available Voices are system specific"
L["Backdrop Color"] = "Backdrop Color"
L["Backdrop in Front"] = "Backdrop in Front"
L["Backdrop Style"] = "Backdrop Style"
L["Background Inner"] = "Background Inner"
L["Background Offset"] = "Background Offset"
L["Background Texture"] = "Background Texture"
L["Bar Alpha"] = "Bar Alpha"
L["Bar Color Settings"] = "Bar Color Settings"
L["Big Icon"] = "Big Icon"
L["Blend Mode"] = "Blend Mode"
L["Blue Rune"] = "Blue Rune"
L["Blue Sparkle Orb"] = "Blue Sparkle Orb"
L["Border %s"] = "Border %s"
L["Border Anchor"] = "Border Anchor"
L["Border Color"] = "Border Color"
L["Border in Front"] = "Border in Front"
L["Border Inset"] = "Border Inset"
L["Border Offset"] = "Border Offset"
L["Border Settings"] = "Border Settings"
L["Border Size"] = "Border Size"
L["Border Style"] = "Border Style"
L["Bracket Matching"] = "Bracket Matching"
L["Browse Wago, the largest collection of auras."] = "Browse Wago, the largest collection of auras."
L["By default this shows the information from the trigger selected via dynamic information. The information from a specific trigger can be shown via e.g. %2.p."] = "By default this shows the information from the trigger selected via dynamic information. The information from a specific trigger can be shown via e.g. %2.p."
L["Can be a UID (e.g., party1)."] = "Can be a UID (e.g., party1)."
L["Can set to 0 if Columns * Width equal File Width"] = "Can set to 0 if Columns * Width equal File Width"
L["Can set to 0 if Rows * Height equal File Height"] = "Can set to 0 if Rows * Height equal File Height"
L["Case Insensitive"] = "Case Insensitive"
L["Cast by a Player Character"] = "Cast by a Player Character"
L["Categories to Update"] = "Categories to Update"
L["Changelog"] = "Changelog"
L["Chat with WeakAuras experts on our Discord server."] = "Chat with WeakAuras experts on our Discord server."
L["Check On..."] = "Check On..."
L["Check out our wiki for a large collection of examples and snippets."] = "Check out our wiki for a large collection of examples and snippets."
L["Children:"] = "Children:"
L["Choose"] = "Choose"
L["Circular Texture %s"] = "Circular Texture %s"
L["Clear Debug Logs"] = "Clear Debug Logs"
L["Clear Saved Data"] = "Clear Saved Data"
L["Clip Overlays"] = "Clip Overlays"
L["Clipped by Foreground"] = "Clipped by Foreground"
L["Close"] = "Close"
L["Code Editor"] = "Code Editor"
L["Collapse"] = "Collapse"
L["Collapse all loaded displays"] = "Collapse all loaded displays"
L["Collapse all non-loaded displays"] = "Collapse all non-loaded displays"
L["Collapse all pending Import"] = "Collapse all pending Import"
L["Collapsible Group"] = "Collapsible Group"
L["color"] = "color"
L["Column Height"] = "Column Height"
L["Column Space"] = "Column Space"
L["Columns"] = "Columns"
L["COMBAT_LOG_EVENT_UNFILTERED with no filter can trigger frame drops in raid environment."] = "COMBAT_LOG_EVENT_UNFILTERED with no filter can trigger frame drops in raid environment."
L["Combinations"] = "Combinations"
L["Combine Matches Per Unit"] = "Combine Matches Per Unit"
L["Common Text"] = "Common Text"
L["Compare against the number of units affected."] = "Compare against the number of units affected."
L["Compatibility Options"] = "Compatibility Options"
L["Compress"] = "Compress"
L["Configure what options appear on this panel."] = "Configure what options appear on this panel."
L["Constant Factor"] = "Constant Factor"
L["Control-click to select multiple displays"] = "Control-click to select multiple displays"
L["Controls the positioning and configuration of multiple displays at the same time"] = "Controls the positioning and configuration of multiple displays at the same time"
L["Convert to..."] = "Convert to..."
L["Cooldown Numbers might be added by WoW. You can configure these in the game settings."] = "Cooldown Numbers might be added by WoW. You can configure these in the game settings."
L["Copy"] = "Copy"
L["Copy settings..."] = "Copy settings..."
L["Copy to all auras"] = "Copy to all auras"
L["Could not parse '%s'. Expected a table."] = "Could not parse '%s'. Expected a table."
L["Counts the number of matches over all units."] = "Counts the number of matches over all units."
L["Counts the number of matches per unit."] = "Counts the number of matches per unit."
L["Create a Copy"] = "Create a Copy"
L["Creating buttons: "] = "Creating buttons: "
L["Creating options: "] = "Creating options: "
L["Custom - Allows you to define a custom Lua function that returns a list of string values. %c1 will be replaced by the first value returned, %c2 by the second, etc."] = "Custom - Allows you to define a custom Lua function that returns a list of string values. %c1 will be replaced by the first value returned, %c2 by the second, etc."
L["Custom Code"] = "Custom Code"
L["Custom Code Viewer"] = "Custom Code Viewer"
L["Custom Frames"] = "Custom Frames"
L["Custom Options"] = "Custom Options"
L["Custom Trigger"] = "Custom Trigger"
L["Custom trigger event tooltip"] = "Custom trigger event tooltip"
L["Custom trigger status tooltip"] = "Custom trigger status tooltip"
L["Custom Trigger: Ignore Lua Errors on OPTIONS event"] = "Custom Trigger: Ignore Lua Errors on OPTIONS event"
L["Custom Trigger: Send fake events instead of STATUS event"] = "Custom Trigger: Send fake events instead of STATUS event"
L["Custom Untrigger"] = "Custom Untrigger"
L["Debug Log"] = "Debug Log"
L["Debug Log:"] = "Debug Log:"
L["Default"] = "Default"
L["Default Color"] = "Default Color"
L["Delay"] = "Delay"
L["Delete"] = "Delete"
L["Delete all"] = "Delete all"
L["Delete children and group"] = "Delete children and group"
L["Delete Entry"] = "Delete Entry"
L["Deleting auras: "] = "Deleting auras: "
L["Description Text"] = "Description Text"
L["Determines how many entries can be in the table."] = "Determines how many entries can be in the table."
L["Differences"] = "Differences"
L["Disallow Entry Reordering"] = "Disallow Entry Reordering"
L["Display Name"] = "Display Name"
L["Display Text"] = "Display Text"
L["Displays a text, works best in combination with other displays"] = "Displays a text, works best in combination with other displays"
L["Distribute Horizontally"] = "Distribute Horizontally"
L["Distribute Vertically"] = "Distribute Vertically"
L["Do not group this display"] = "Do not group this display"
L["Do you want to enable updates for this aura"] = "Do you want to enable updates for this aura"
L["Do you want to ignore updates for this aura"] = "Do you want to ignore updates for this aura"
L["Documentation"] = "Documentation"
L["Done"] = "Done"
L["Drag to move"] = "Drag to move"
L["Duplicate"] = "Duplicate"
L["Duplicate All"] = "Duplicate All"
L["Duration (s)"] = "Duration (s)"
L["Duration Info"] = "Duration Info"
L["Dynamic Duration"] = "Dynamic Duration"
L["Dynamic Group"] = "Dynamic Group"
L["Dynamic Group Settings"] = "Dynamic Group Settings"
L["Dynamic Information"] = "Dynamic Information"
L["Dynamic information from first active trigger"] = "Dynamic information from first active trigger"
L["Dynamic information from Trigger %i"] = "Dynamic information from Trigger %i"
L["Dynamic Text Replacements"] = "Dynamic Text Replacements"
L["Ease Strength"] = "Ease Strength"
L["Ease type"] = "Ease type"
L["eliding"] = "eliding"
L["Else If"] = "Else If"
L["Else If %s"] = "Else If %s"
L["Empty Base Region"] = "Empty Base Region"
L["Enable \"Edge\" part of the overlay"] = "Enable \"Edge\" part of the overlay"
L["Enable \"swipe\" part of the overlay"] = "Enable \"swipe\" part of the overlay"
L["Enable Debug Log"] = "Enable Debug Log"
L["Enable Debug Logging"] = "Enable Debug Logging"
L["Enable Gradient"] = "Enable Gradient"
L["Enable Swipe"] = "Enable Swipe"
L["Enable the \"Swipe\" radial overlay"] = "Enable the \"Swipe\" radial overlay"
L["Enabled"] = "Enabled"
L["End Angle"] = "End Angle"
L["End of %s"] = "End of %s"
L["Enemy nameplate(s) found"] = "Enemy nameplate(s) found"
L["Enter a Spell ID. You can use the addon idTip to determine spell ids."] = "Enter a Spell ID. You can use the addon idTip to determine spell ids."
L["Enter an Aura Name, partial Aura Name, or Spell ID. A Spell ID will match any spells with the same name."] = "Enter an Aura Name, partial Aura Name, or Spell ID. A Spell ID will match any spells with the same name."
L["Enter Author Mode"] = "Enter Author Mode"
L["Enter in a value for the tick's placement."] = "Enter in a value for the tick's placement."
L["Enter static or relative values with %"] = "Enter static or relative values with %"
L["Enter User Mode"] = "Enter User Mode"
L["Enter user mode."] = "Enter user mode."
L["Entry %i"] = "Entry %i"
L["Entry limit"] = "Entry limit"
L["Entry Name Source"] = "Entry Name Source"
L["Event Type"] = "Event Type"
L["Everything"] = "Everything"
L["Exact Item Match"] = "Exact Item Match"
L["Exact Spell Match"] = "Exact Spell Match"
L["Expand"] = "Expand"
L["Expand all loaded displays"] = "Expand all loaded displays"
L["Expand all non-loaded displays"] = "Expand all non-loaded displays"
L["Expand all pending Import"] = "Expand all pending Import"
L["Expansion is disabled because this group has no children"] = "Expansion is disabled because this group has no children"
L["Export debug table..."] = "Export debug table..."
L["Export..."] = "Export..."
L["Exporting"] = "Exporting"
L["External"] = "External"
L["Extra Height"] = "Extra Height"
L["Extra Width"] = "Extra Width"
L["Fade"] = "Fade"
L["Fadeout Sound"] = "Fadeout Sound"
L["Fadeout Time (seconds)"] = "Fadeout Time (seconds)"
L["Fetch Affected/Unaffected Names and Units"] = "Fetch Affected/Unaffected Names and Units"
L["Fetch Raid Mark Information"] = "Fetch Raid Mark Information"
L["Fetch Role Information"] = "Fetch Role Information"
L["Fetch Tooltip Information"] = "Fetch Tooltip Information"
L["File Height"] = "File Height"
L["File Width"] = "File Width"
L["Filter based on the spell Name string."] = "Filter based on the spell Name string."
L["Filter by Arena Spec"] = "Filter by Arena Spec"
L["Filter by Class"] = "Filter by Class"
L["Filter by Group Role"] = "Filter by Group Role"
L["Filter by Hostility"] = "Filter by Hostility"
L["Filter by Npc ID"] = "Filter by Npc ID"
L["Filter by Raid Role"] = "Filter by Raid Role"
L["Filter by Specialization"] = "Filter by Specialization"
L["Filter by Unit Name"] = "Filter by Unit Name"
L[ [=[Filter formats: 'Name', 'Name-Realm', '-Realm'.
Supports multiple entries, separated by commas
Can use \ to escape -.]=] ] = [=[Filter formats: 'Name', 'Name-Realm', '-Realm'.
Supports multiple entries, separated by commas
Can use \ to escape -.]=]
L[ [=[Filter to only dispellable de/buffs of the given type(s)
Bleed classification via LibDispel]=] ] = [=[Filter to only dispellable de/buffs of the given type(s)
Bleed classification via LibDispel]=]
L["Find Auras"] = "Find Auras"
L["Finish"] = "Finish"
L["Finishing..."] = "Finishing..."
L["Fire Orb"] = "Fire Orb"
L["Flat Framelevels"] = "Flat Framelevels"
L["Foreground Texture"] = "Foreground Texture"
L["Format for %s"] = "Format for %s"
L["Found a Bug?"] = "Found a Bug?"
L["Frame"] = "Frame"
L["Frame Count"] = "Frame Count"
L["Frame Height"] = "Frame Height"
L["Frame Rate"] = "Frame Rate"
L["Frame Strata"] = "Frame Strata"
L["Frame Width"] = "Frame Width"
L["Full Bar"] = "Full Bar"
L["Full Circle"] = "Full Circle"
L["Global Conditions"] = "Global Conditions"
L["Glow %s"] = "Glow %s"
L["Glow Action"] = "Glow Action"
L["Glow Anchor"] = "Glow Anchor"
L["Glow Color"] = "Glow Color"
L["Glow Frame Type"] = "Glow Frame Type"
L["Glow Type"] = "Glow Type"
L["Green Rune"] = "Green Rune"
L["Grid direction"] = "Grid direction"
L["Group (verb)"] = "Group (verb)"
L["Group Alpha"] = "Group Alpha"
L[ [=[Group and anchor each auras by frame.
- Nameplates: attach to nameplates per unit.
- Unit Frames: attach to unit frame buttons per unit.
- Custom Frames: choose which frame each region should be anchored to.]=] ] = [=[Group and anchor each auras by frame.
- Nameplates: attach to nameplates per unit.
- Unit Frames: attach to unit frame buttons per unit.
- Custom Frames: choose which frame each region should be anchored to.]=]
L["Group aura count description"] = "Group aura count description"
L["Group by Frame"] = "Group by Frame"
L["Group Description"] = "Group Description"
L["Group Icon"] = "Group Icon"
L["Group key"] = "Group key"
L["Group Options"] = "Group Options"
L["Group player(s) found"] = "Group player(s) found"
L["Group Role"] = "Group Role"
L["Group Scale"] = "Group Scale"
L["Group Settings"] = "Group Settings"
L["Hawk"] = "Hawk"
L["Help"] = "Help"
L["Hide Background"] = "Hide Background"
L["Hide Glows applied by this aura"] = "Hide Glows applied by this aura"
L["Hide on"] = "Hide on"
L["Hide this group's children"] = "Hide this group's children"
L["Highlights"] = "Highlights"
L["Horizontal Align"] = "Horizontal Align"
L["Horizontal Bar"] = "Horizontal Bar"
L["Huge Icon"] = "Huge Icon"
L["Hybrid Position"] = "Hybrid Position"
L["Hybrid Sort Mode"] = "Hybrid Sort Mode"
L["Icon - The icon associated with the display"] = "Icon - The icon associated with the display"
L["Icon Info"] = "Icon Info"
L["Icon Inset"] = "Icon Inset"
L["Icon Picker"] = "Icon Picker"
L["Icon Position"] = "Icon Position"
L["Icon Settings"] = "Icon Settings"
L["Icon Source"] = "Icon Source"
L["If"] = "If"
L["If %s"] = "If %s"
L["If checked, then the combo box in the User settings will be sorted."] = "If checked, then the combo box in the User settings will be sorted."
L["If checked, then the user will see a multi line edit box. This is useful for inputting large amounts of text."] = "If checked, then the user will see a multi line edit box. This is useful for inputting large amounts of text."
L["If checked, then this group will not merge with other group when selecting multiple auras."] = "If checked, then this group will not merge with other group when selecting multiple auras."
L["If checked, then this option group can be temporarily collapsed by the user."] = "If checked, then this option group can be temporarily collapsed by the user."
L["If checked, then this option group will start collapsed."] = "If checked, then this option group will start collapsed."
L["If checked, then this separator will include text. Otherwise, it will be just a horizontal line."] = "If checked, then this separator will include text. Otherwise, it will be just a horizontal line."
L["If checked, then this space will span across multiple lines."] = "If checked, then this space will span across multiple lines."
L["If unchecked, then a default color will be used (usually yellow)"] = "If unchecked, then a default color will be used (usually yellow)"
L["If unchecked, then this space will fill the entire line it is on in User Mode."] = "If unchecked, then this space will fill the entire line it is on in User Mode."
L["Ignore out of casting range"] = "Ignore out of casting range"
L["Ignore out of checking range"] = "Ignore out of checking range"
L["Ignore Wago updates"] = "Ignore Wago updates"
L["Ignored"] = "Ignored"
L["Ignored Aura Name"] = "Ignored Aura Name"
L["Ignored Exact Spell ID(s)"] = "Ignored Exact Spell ID(s)"
L["Ignored Name(s)"] = "Ignored Name(s)"
L["Ignored Spell ID"] = "Ignored Spell ID"
L["Import"] = "Import"
L["Import / Export"] = "Import / Export"
L["Import a display from an encoded string"] = "Import a display from an encoded string"
L["Import as Copy"] = "Import as Copy"
L["Import has no UID, cannot be matched to existing auras."] = "Import has no UID, cannot be matched to existing auras."
L["Importing"] = "Importing"
L["Importing %s"] = "Importing %s"
L["Importing a group with %s child auras."] = "Importing a group with %s child auras."
L["Importing a stand-alone aura."] = "Importing a stand-alone aura."
L["Importing...."] = "Importing...."
L["Incompatible changes to group region types detected"] = "Incompatible changes to group region types detected"
L["Incompatible changes to group structure detected"] = "Incompatible changes to group structure detected"
L["Indent Size"] = "Indent Size"
L["Inner"] = "Inner"
L["Insert text replacement codes to make text dynamic."] = "Insert text replacement codes to make text dynamic."
L["Invalid Item ID"] = "Invalid Item ID"
L["Invalid Item Name/ID/Link"] = "Invalid Item Name/ID/Link"
L["Invalid Spell ID"] = "Invalid Spell ID"
L["Invalid Spell Name/ID/Link"] = "Invalid Spell Name/ID/Link"
L["Invalid target aura"] = "Invalid target aura"
L["Invalid type for '%s'. Expected 'bool', 'number', 'select', 'string', 'timer' or 'elapsedTimer'."] = "Invalid type for '%s'. Expected 'bool', 'number', 'select', 'string', 'timer' or 'elapsedTimer'."
L["Invalid type for property '%s' in '%s'. Expected '%s'"] = "Invalid type for property '%s' in '%s'. Expected '%s'"
L["Inverse Slant"] = "Inverse Slant"
L["Invert the direction of progress"] = "Invert the direction of progress"
L["Is Boss Debuff"] = "Is Boss Debuff"
L["Is Stealable"] = "Is Stealable"
L["Is Unit"] = "Is Unit"
L["Join Discord"] = "Join Discord"
L["Justify"] = "Justify"
L["Keep Aspect Ratio"] = "Keep Aspect Ratio"
L["Keep your Wago imports up to date with the Companion App."] = "Keep your Wago imports up to date with the Companion App."
L["Large Input"] = "Large Input"
L["Leaf"] = "Leaf"
L["Left 2 HUD position"] = "Left 2 HUD position"
L["Left HUD position"] = "Left HUD position"
L["Length of |cFFFF0000%s|r"] = "Length of |cFFFF0000%s|r"
L["LibCompress: Galmok"] = "LibCompress: Galmok"
L["LibCustomGlow: Dooez"] = "LibCustomGlow: Dooez"
L["LibDeflate: Yoursafety"] = "LibDeflate: Yoursafety"
L["LibDispel: Simpy"] = "LibDispel: Simpy"
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
L["Limit"] = "Limit"
L["Line"] = "Line"
L["Linear Texture %s"] = "Linear Texture %s"
L["Linked aura: "] = "Linked aura: "
L["Linked Auras"] = "Linked Auras"
L["Load"] = "Load"
L["Loaded"] = "Loaded"
L["Loaded/Standby"] = "Loaded/Standby"
L["Lock Positions"] = "Lock Positions"
L["Low Mana"] = "Low Mana"
L["Magnetically Align"] = "Magnetically Align"
L["Main"] = "Main"
L["Manual with %i/%i"] = "Manual with %i/%i"
L["Matches the height setting of a horizontal bar or width for a vertical bar."] = "Matches the height setting of a horizontal bar or width for a vertical bar."
L["Max"] = "Max"
L["Max Length"] = "Max Length"
L["Maximum"] = "Maximum"
L["Media Type"] = "Media Type"
L["Medium Icon"] = "Medium Icon"
L["Min"] = "Min"
L["Minimum"] = "Minimum"
L["Model %s"] = "Model %s"
L["Model Picker"] = "Model Picker"
L["Model Settings"] = "Model Settings"
L["ModelPaths could not be loaded, the addon is %s"] = "ModelPaths could not be loaded, the addon is %s"
L["Move Above Group"] = "Move Above Group"
L["Move Below Group"] = "Move Below Group"
L["Move Down"] = "Move Down"
L["Move Entry Down"] = "Move Entry Down"
L["Move Entry Up"] = "Move Entry Up"
L["Move Into Above Group"] = "Move Into Above Group"
L["Move Into Below Group"] = "Move Into Below Group"
L["Move this display down in its group's order"] = "Move this display down in its group's order"
L["Move this display up in its group's order"] = "Move this display up in its group's order"
L["Move Up"] = "Move Up"
L["Moving auras: "] = "Moving auras: "
L["Multiple Displays"] = "Multiple Displays"
L["Multiselect ignored tooltip"] = "Multiselect ignored tooltip"
L["Multiselect multiple tooltip"] = "Multiselect multiple tooltip"
L["Multiselect single tooltip"] = "Multiselect single tooltip"
L["Must be a power of 2"] = "Must be a power of 2"
L["Name - The name of the display (usually an aura name), or the display's ID if there is no dynamic name"] = "Name - The name of the display (usually an aura name), or the display's ID if there is no dynamic name"
L["Name Info"] = "Name Info"
L["Name Pattern Match"] = "Name Pattern Match"
L["Name:"] = "Name:"
L["Negator"] = "Negator"
L["New Aura"] = "New Aura"
L["New Template"] = "New Template"
L["New Value"] = "New Value"
L["No Children"] = "No Children"
L["No Logs saved."] = "No Logs saved."
L["Not a table"] = "Not a table"
L["Not all children have the same value for this option"] = "Not all children have the same value for this option"
L["Not Loaded"] = "Not Loaded"
L["Note: Automated Messages to SAY and YELL are blocked outside of Instances."] = "Note: Automated Messages to SAY and YELL are blocked outside of Instances."
L["Note: This progress source does not provide a total value/duration. A total value/duration must be set via \"Set Maximum Progress\""] = "Note: This progress source does not provide a total value/duration. A total value/duration must be set via \"Set Maximum Progress\""
L["Number of Entries"] = "Number of Entries"
L[ [=[Occurrence of the event, reset when aura is unloaded
Can be a range of values
Can have multiple values separated by a comma or a space
Examples:
2nd 5th and 6th events: 2, 5, 6
2nd to 6th: 2-6
every 2 events: /2
every 3 events starting from 2nd: 2/3
every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[Occurrence of the event, reset when aura is unloaded
Can be a range of values
Can have multiple values separated by a comma or a space
Examples:
2nd 5th and 6th events: 2, 5, 6
2nd to 6th: 2-6
every 2 events: /2
every 3 events starting from 2nd: 2/3
every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
L["OFF"] = "OFF"
L["Offer a guided way to create auras for your character"] = "Offer a guided way to create auras for your character"
L["Offset by |cFFFF0000%s|r/|cFFFF0000%s|r"] = "Offset by |cFFFF0000%s|r/|cFFFF0000%s|r"
L["Offset by 1px"] = "Offset by 1px"
L["Okay"] = "Okay"
L["ON"] = "ON"
L["On Hide"] = "On Hide"
L["On Init"] = "On Init"
L["On Show"] = "On Show"
L["Only Match auras cast by a player (not an npc)"] = "Only Match auras cast by a player (not an npc)"
L["Only match auras cast by people other than the player or their pet"] = "Only match auras cast by people other than the player or their pet"
L["Only match auras cast by the player or their pet"] = "Only match auras cast by the player or their pet"
L["Operator"] = "Operator"
L["Option %i"] = "Option %i"
L["Option key"] = "Option key"
L["Option Type"] = "Option Type"
L["Options will open after combat ends."] = "Options will open after combat ends."
L["or"] = "or"
L["or %s"] = "or %s"
L["Orange Rune"] = "Orange Rune"
L["Our translators (too many to name)"] = "Our translators (too many to name)"
L["Outer"] = "Outer"
L["Overflow"] = "Overflow"
L["Overlay %s Info"] = "Overlay %s Info"
L["Overlays"] = "Overlays"
L["Own Only"] = "Own Only"
L["Paste Action Settings"] = "Paste Action Settings"
L["Paste Animations Settings"] = "Paste Animations Settings"
L["Paste Author Options Settings"] = "Paste Author Options Settings"
L["Paste Condition Settings"] = "Paste Condition Settings"
L["Paste Custom Configuration"] = "Paste Custom Configuration"
L["Paste Display Settings"] = "Paste Display Settings"
L["Paste Group Settings"] = "Paste Group Settings"
L["Paste Load Settings"] = "Paste Load Settings"
L["Paste Settings"] = "Paste Settings"
L["Paste text below"] = "Paste text below"
L["Paste Trigger Settings"] = "Paste Trigger Settings"
L["Places a tick on the bar"] = "Places a tick on the bar"
L["Play Sound"] = "Play Sound"
L["Portrait Zoom"] = "Portrait Zoom"
L["Position and Size Settings"] = "Position and Size Settings"
L["Preferred Match"] = "Preferred Match"
L["Premade Auras"] = "Premade Auras"
L["Premade Snippets"] = "Premade Snippets"
L["Preparing auras: "] = "Preparing auras: "
L["Press Ctrl+C to copy"] = "Press Ctrl+C to copy"
L["Press Ctrl+C to copy the URL"] = "Press Ctrl+C to copy the URL"
L["Prevent Merging"] = "Prevent Merging"
L["Progress - The remaining time of a timer, or a non-timer value"] = "Progress - The remaining time of a timer, or a non-timer value"
L["Progress Bar"] = "Progress Bar"
L["Progress Bar Settings"] = "Progress Bar Settings"
L["Progress Settings"] = "Progress Settings"
L["Progress Texture"] = "Progress Texture"
L["Progress Texture Settings"] = "Progress Texture Settings"
L["Purple Rune"] = "Purple Rune"
L["Put this display in a group"] = "Put this display in a group"
L["Range in yards"] = "Range in yards"
L["Ready for Install"] = "Ready for Install"
L["Ready for Update"] = "Ready for Update"
L["Re-center X"] = "Re-center X"
L["Re-center Y"] = "Re-center Y"
L["Reciprocal TRIGGER:# requests will be ignored!"] = "Reciprocal TRIGGER:# requests will be ignored!"
L["Regions of type \"%s\" are not supported."] = "Regions of type \"%s\" are not supported."
L["Remove"] = "Remove"
L["Remove All Sounds"] = "Remove All Sounds"
L["Remove All Text To Speech"] = "Remove All Text To Speech"
L["Remove this display from its group"] = "Remove this display from its group"
L["Remove this property"] = "Remove this property"
L["Rename"] = "Rename"
L["Repeat After"] = "Repeat After"
L["Repeat every"] = "Repeat every"
L["Report bugs on our issue tracker."] = "Report bugs on our issue tracker."
L["Require unit from trigger"] = "Require unit from trigger"
L["Required for Activation"] = "Required for Activation"
L["Requires LibGroupTalents, that is e.g. a up-to date WeakAuras version"] = "Requires LibGroupTalents, that is e.g. a up-to date WeakAuras version"
L["Reset all options to their default values."] = "Reset all options to their default values."
L["Reset Entry"] = "Reset Entry"
L["Reset to Defaults"] = "Reset to Defaults"
L["Right 2 HUD position"] = "Right 2 HUD position"
L["Right HUD position"] = "Right HUD position"
L["Right-click for more options"] = "Right-click for more options"
L["Rotate"] = "Rotate"
L["Rotate In"] = "Rotate In"
L["Rotate Out"] = "Rotate Out"
L["Rotate Text"] = "Rotate Text"
L["Rotation Mode"] = "Rotation Mode"
L["Row Space"] = "Row Space"
L["Row Width"] = "Row Width"
L["Rows"] = "Rows"
L["Run on..."] = "Run on..."
L["Same"] = "Same"
L["Same texture as Foreground"] = "Same texture as Foreground"
L["Saved Data"] = "Saved Data"
L["Scale Factor"] = "Scale Factor"
L["Search API"] = "Search API"
L["Select Talent"] = "Select Talent"
L["Select the auras you always want to be listed first"] = "Select the auras you always want to be listed first"
L["Selected Frame"] = "Selected Frame"
L["Send To"] = "Send To"
L["Separator Text"] = "Separator Text"
L["Separator text"] = "Separator text"
L["Set Maximum Progress"] = "Set Maximum Progress"
L["Set Minimum Progress"] = "Set Minimum Progress"
L["Set Parent to Anchor"] = "Set Parent to Anchor"
L["Set Thumbnail Icon"] = "Set Thumbnail Icon"
L["Sets the anchored frame as the aura's parent, causing the aura to inherit attributes such as visibility and scale."] = "Sets the anchored frame as the aura's parent, causing the aura to inherit attributes such as visibility and scale."
L["Settings"] = "Settings"
L["Shadow Color"] = "Shadow Color"
L["Shadow X Offset"] = "Shadow X Offset"
L["Shadow Y Offset"] = "Shadow Y Offset"
L["Shift-click to create chat link"] = "Shift-click to create chat link"
L["Show \"Edge\""] = "Show \"Edge\""
L["Show \"Swipe\""] = "Show \"Swipe\""
L["Show and Clone Settings"] = "Show and Clone Settings"
L["Show Border"] = "Show Border"
L["Show Circular Texture"] = "Show Circular Texture"
L["Show Debug Logs"] = "Show Debug Logs"
L["Show Glow"] = "Show Glow"
L["Show Icon"] = "Show Icon"
L["Show If Unit Does Not Exist"] = "Show If Unit Does Not Exist"
L["Show Linear Texture"] = "Show Linear Texture"
L["Show Matches for"] = "Show Matches for"
L["Show Matches for Units"] = "Show Matches for Units"
L["Show Model"] = "Show Model"
L["Show model of unit "] = "Show model of unit "
L["Show Sound Setting"] = "Show Sound Setting"
L["Show Spark"] = "Show Spark"
L["Show Stop Motion"] = "Show Stop Motion"
L["Show Text"] = "Show Text"
L["Show Text To Speech Setting"] = "Show Text To Speech Setting"
L["Show Texture"] = "Show Texture"
L["Show this group's children"] = "Show this group's children"
L["Show Tick"] = "Show Tick"
L["Shows a 3D model from the game files"] = "Shows a 3D model from the game files"
L["Shows a border"] = "Shows a border"
L["Shows a Circular Progress Texture"] = "Shows a Circular Progress Texture"
L["Shows a custom texture"] = "Shows a custom texture"
L["Shows a glow"] = "Shows a glow"
L["Shows a Linear Progress Texture"] = "Shows a Linear Progress Texture"
L["Shows a model"] = "Shows a model"
L["Shows a progress bar with name, timer, and icon"] = "Shows a progress bar with name, timer, and icon"
L["Shows a spell icon with an optional cooldown overlay"] = "Shows a spell icon with an optional cooldown overlay"
L["Shows a Stop Motion"] = "Shows a Stop Motion"
L["Shows a stop motion texture"] = "Shows a stop motion texture"
L["Shows a Texture"] = "Shows a Texture"
L["Shows a texture that changes based on duration"] = "Shows a texture that changes based on duration"
L["Shows nothing, except sub elements"] = "Shows nothing, except sub elements"
L["Shows one or more lines of text, which can include dynamic information such as progress or stacks"] = "Shows one or more lines of text, which can include dynamic information such as progress or stacks"
L["Size"] = "Size"
L["Slant Amount"] = "Slant Amount"
L["Slant Mode"] = "Slant Mode"
L["Slanted"] = "Slanted"
L["Slide"] = "Slide"
L["Slide In"] = "Slide In"
L["Slide Out"] = "Slide Out"
L["Slider Step Size"] = "Slider Step Size"
L["Small Icon"] = "Small Icon"
L["Smooth Progress"] = "Smooth Progress"
L["Snippets"] = "Snippets"
L["Soft Max"] = "Soft Max"
L["Soft Min"] = "Soft Min"
L["Sort"] = "Sort"
L["Sound Channel"] = "Sound Channel"
L["Sound File Path"] = "Sound File Path"
L["Sound Kit ID"] = "Sound Kit ID"
L["Space Horizontally"] = "Space Horizontally"
L["Space Vertically"] = "Space Vertically"
L["Spark Settings"] = "Spark Settings"
L["Spark Texture"] = "Spark Texture"
L["Specific Currency ID"] = "Specific Currency ID"
L["Spell Selection Filters"] = "Spell Selection Filters"
L["Stack Info"] = "Stack Info"
L["Stacks - The number of stacks of an aura (usually)"] = "Stacks - The number of stacks of an aura (usually)"
L["Stagger"] = "Stagger"
L["Standby"] = "Standby"
L["Star"] = "Star"
L["Start"] = "Start"
L["Start Angle"] = "Start Angle"
L["Start Collapsed"] = "Start Collapsed"
L["Start of %s"] = "Start of %s"
L["Step Size"] = "Step Size"
L["Stop Motion %s"] = "Stop Motion %s"
L["Stop Motion Settings"] = "Stop Motion Settings"
L["Stop Sound"] = "Stop Sound"
L["Sub Elements"] = "Sub Elements"
L["Sub Option %i"] = "Sub Option %i"
L["Subevent"] = "Subevent"
L["Subevent Suffix"] = "Subevent Suffix"
L["Swipe Overlay Settings"] = "Swipe Overlay Settings"
L["Templates could not be loaded, the addon is %s"] = "Templates could not be loaded, the addon is %s"
L["Temporary Group"] = "Temporary Group"
L["Text %s"] = "Text %s"
L["Text Color"] = "Text Color"
L["Text Settings"] = "Text Settings"
L["Texture %s"] = "Texture %s"
L["Texture Info"] = "Texture Info"
L["Texture Selection Mode"] = "Texture Selection Mode"
L["Texture Settings"] = "Texture Settings"
L["Texture Wrap"] = "Texture Wrap"
L["Texture X Offset"] = "Texture X Offset"
L["Texture Y Offset"] = "Texture Y Offset"
L["Thanks"] = "Thanks"
L["The addon ElvUI is enabled. It might add cooldown numbers to the swipe. You can configure these in the ElvUI settings"] = "The addon ElvUI is enabled. It might add cooldown numbers to the swipe. You can configure these in the ElvUI settings"
L["The addon OmniCC is enabled. It might add cooldown numbers to the swipe. You can configure these in the OmniCC settings"] = "The addon OmniCC is enabled. It might add cooldown numbers to the swipe. You can configure these in the OmniCC settings"
L["The duration of the animation in seconds."] = "The duration of the animation in seconds."
L["The duration of the animation in seconds. The finish animation does not start playing until after the display would normally be hidden."] = "The duration of the animation in seconds. The finish animation does not start playing until after the display would normally be hidden."
L["The group and all direct children will share the same base frame level."] = "The group and all direct children will share the same base frame level."
L["The trigger number is optional. When no trigger number is specified, the trigger selected via dynamic information will be used."] = "The trigger number is optional. When no trigger number is specified, the trigger selected via dynamic information will be used."
L["The type of trigger"] = "The type of trigger"
L["The WeakAuras Options Addon version %s doesn't match the WeakAuras version %s. If you updated the addon while the game was running, try restarting World of Warcraft. Otherwise try reinstalling WeakAuras"] = "The WeakAuras Options Addon version %s doesn't match the WeakAuras version %s. If you updated the addon while the game was running, try restarting World of Warcraft. Otherwise try reinstalling WeakAuras"
L["Then "] = "Then "
L["There are several special codes available to make this text dynamic. Click to view a list with all dynamic text codes."] = "There are several special codes available to make this text dynamic. Click to view a list with all dynamic text codes."
L["This adds %raidMark as text replacements."] = "This adds %raidMark as text replacements."
L["This adds %role, %roleIcon as text replacements. Does nothing if the unit is not a group member."] = "This adds %role, %roleIcon as text replacements. Does nothing if the unit is not a group member."
L["This adds %tooltip, %tooltip1, %tooltip2, %tooltip3 and %tooltip4 as text replacements and also allows filtering based on the tooltip content/values."] = "This adds %tooltip, %tooltip1, %tooltip2, %tooltip3 and %tooltip4 as text replacements and also allows filtering based on the tooltip content/values."
L[ [=[This aura contains custom Lua code.
Make sure you can trust the person who sent it!]=] ] = [=[This aura contains custom Lua code.
Make sure you can trust the person who sent it!]=]
L["This aura is marked as an update to an aura '%s', but cannot be used to update that aura. This usually happens if an aura is moved out of a group."] = "This aura is marked as an update to an aura '%s', but cannot be used to update that aura. This usually happens if an aura is moved out of a group."
L["This aura is marked as an update to auras '%s', but cannot be used to update them. This usually happens if an aura is moved out of a group."] = "This aura is marked as an update to auras '%s', but cannot be used to update them. This usually happens if an aura is moved out of a group."
L[ [=[This aura was created with a different version (%s) of World of Warcraft.
It might not work correctly!]=] ] = [=[This aura was created with a different version (%s) of World of Warcraft.
It might not work correctly!]=]
L[ [=[This aura was created with a newer version of WeakAuras.
Upgrade your version of WeakAuras or wait for next release before installing this aura.]=] ] = [=[This aura was created with a newer version of WeakAuras.
Upgrade your version of WeakAuras or wait for next release before installing this aura.]=]
L["This display is currently loaded"] = "This display is currently loaded"
L["This display is not currently loaded"] = "This display is not currently loaded"
L["This display is on standby, it will be loaded when needed."] = "This display is on standby, it will be loaded when needed."
L["This enables the collection of debug logs. Custom code can add debug information to the log through the function DebugPrint."] = "This enables the collection of debug logs. Custom code can add debug information to the log through the function DebugPrint."
L["This is a modified version of your aura, |cff9900FF%s.|r"] = "This is a modified version of your aura, |cff9900FF%s.|r"
L["This is a modified version of your group: |cff9900FF%s|r"] = "This is a modified version of your group: |cff9900FF%s|r"
L["This region of type \"%s\" is not supported."] = "This region of type \"%s\" is not supported."
L["This setting controls what widget is generated in user mode."] = "This setting controls what widget is generated in user mode."
L["Thumbnail Icon"] = "Thumbnail Icon"
L["Tick %s"] = "Tick %s"
L["Tick Area %s"] = "Tick Area %s"
L["Tick Center %s"] = "Tick Center %s"
L["Tick Mode"] = "Tick Mode"
L["Tick Placement"] = "Tick Placement"
L["Time in"] = "Time in"
L["Tiny Icon"] = "Tiny Icon"
L["To Frame's"] = "To Frame's"
L["To Group's"] = "To Group's"
L["To Personal Ressource Display's"] = "To Personal Ressource Display's"
L["To Region's"] = "To Region's"
L["To Screen's"] = "To Screen's"
L["Toggle the visibility of all loaded displays"] = "Toggle the visibility of all loaded displays"
L["Toggle the visibility of all non-loaded displays"] = "Toggle the visibility of all non-loaded displays"
L["Toggle the visibility of this display"] = "Toggle the visibility of this display"
L["Tooltip Content"] = "Tooltip Content"
L["Tooltip on Mouseover"] = "Tooltip on Mouseover"
L["Tooltip Pattern Match"] = "Tooltip Pattern Match"
L["Tooltip Text"] = "Tooltip Text"
L["Tooltip Value"] = "Tooltip Value"
L["Tooltip Value #"] = "Tooltip Value #"
L["Top HUD position"] = "Top HUD position"
L["Total"] = "Total"
L["Total - The maximum duration of a timer, or a maximum non-timer value"] = "Total - The maximum duration of a timer, or a maximum non-timer value"
L["Total Angle"] = "Total Angle"
L["Total Time"] = "Total Time"
L["Trigger %i: %s"] = "Trigger %i: %s"
L["Trigger Combination"] = "Trigger Combination"
L["Type 'select' for '%s' requires a values member'"] = "Type 'select' for '%s' requires a values member'"
L["Ungroup"] = "Ungroup"
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "Unit %s is not a valid unit for RegisterUnitEvent"
L["Unit Count"] = "Unit Count"
L["Unknown"] = "Unknown"
L["Unknown Encounter's Spell Id"] = "Unknown Encounter's Spell Id"
L["Unknown property '%s' found in '%s'"] = "Unknown property '%s' found in '%s'"
L["Unknown Spell"] = "Unknown Spell"
L["Unlike the start or finish animations, the main animation will loop over and over until the display is hidden."] = "Unlike the start or finish animations, the main animation will loop over and over until the display is hidden."
L["Update"] = "Update"
L["Update Auras"] = "Update Auras"
L["Update Custom Text On..."] = "Update Custom Text On..."
L["URL"] = "URL"
L["Url: %s"] = "Url: %s"
L["Use Display Info Id"] = "Use Display Info Id"
L["Use SetTransform"] = "Use SetTransform"
L["Used in Auras:"] = "Used in Auras:"
L["Used in auras:"] = "Used in auras:"
L["Uses Texture Coordinates to rotate the texture."] = "Uses Texture Coordinates to rotate the texture."
L["Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."] = "Uses UnitIsVisible() to check if game client has loaded a object for this unit. This distance is around 100 yards. This is polled every second."
L["Value"] = "Value"
L["Value %i"] = "Value %i"
L["Values are in normalized rgba format."] = "Values are in normalized rgba format."
L["Values/Remaining Time above this value are displayed as full progress."] = "Values/Remaining Time above this value are displayed as full progress."
L["Values/Remaining Time below this value are displayed as zero progress."] = "Values/Remaining Time below this value are displayed as zero progress."
L["Values:"] = "Values:"
L["Version: "] = "Version: "
L["Version: %s"] = "Version: %s"
L["Vertical Align"] = "Vertical Align"
L["Vertical Bar"] = "Vertical Bar"
L["View"] = "View"
L["View custom code"] = "View custom code"
L["Voice"] = "Voice"
L["We thank"] = "We thank"
L["WeakAuras %s on WoW %s"] = "WeakAuras %s on WoW %s"
L["What do you want to do?"] = "What do you want to do?"
L["Whole Area"] = "Whole Area"
L["wrapping"] = "wrapping"
L["X Offset"] = "X Offset"
L["X Rotation"] = "X Rotation"
L["X Scale"] = "X Scale"
L["x-Offset"] = "x-Offset"
L["Y Offset"] = "Y Offset"
L["Y Rotation"] = "Y Rotation"
L["Y Scale"] = "Y Scale"
L["Yellow Rune"] = "Yellow Rune"
L["y-Offset"] = "y-Offset"
L["You already have this group/aura. Importing will create a duplicate."] = "You already have this group/aura. Importing will create a duplicate."
L["You are about to delete %d aura(s). |cFFFF0000This cannot be undone!|r Would you like to continue?"] = "You are about to delete %d aura(s). |cFFFF0000This cannot be undone!|r Would you like to continue?"
L["You are about to delete a trigger. |cFFFF0000This cannot be undone!|r Would you like to continue?"] = "You are about to delete a trigger. |cFFFF0000This cannot be undone!|r Would you like to continue?"
L[ [=[You can add a comma-separated list of state values here that (when changed) WeakAuras should also run the Anchor Code on.
WeakAuras will always run custom anchor code if you include 'changed' in this list, or when a region is added, removed, or re-ordered.]=] ] = [=[You can add a comma-separated list of state values here that (when changed) WeakAuras should also run the Anchor Code on.
WeakAuras will always run custom anchor code if you include 'changed' in this list, or when a region is added, removed, or re-ordered.]=]
L[ [=[You can add a comma-separated list of state values here that (when changed) WeakAuras should also run the Grow Code on.
WeakAuras will always run custom grow code if you include 'changed' in this list, or when a region is added, removed, or re-ordered.]=] ] = [=[You can add a comma-separated list of state values here that (when changed) WeakAuras should also run the Grow Code on.
WeakAuras will always run custom grow code if you include 'changed' in this list, or when a region is added, removed, or re-ordered.]=]
L["You can add a comma-separated list of state values here that (when changed) WeakAuras should also run the sort code on.WeakAuras will always run custom sort code if you include 'changed' in this list, or when a region is added, removed."] = "You can add a comma-separated list of state values here that (when changed) WeakAuras should also run the sort code on.WeakAuras will always run custom sort code if you include 'changed' in this list, or when a region is added, removed."
L["Your Saved Snippets"] = "Your Saved Snippets"
L["Z Offset"] = "Z Offset"
L["Z Rotation"] = "Z Rotation"
L["Zoom In"] = "Zoom In"
L["Zoom Out"] = "Zoom Out"
+3 -1
View File
@@ -388,7 +388,7 @@ Bleed classification via LibDispel]=] ] = "Filtrar solo los perjuicios/beneficio
L["Full Circle"] = "Círculo completo"
L["Global Conditions"] = "Condiciones globales"
L["Glow %s"] = "Resplandor %s"
L["Glow Action"] = "Acción de Destello"
L["Glow Action"] = "Acción de resplandor"
L["Glow Anchor"] = "Ancla de resplandor"
L["Glow Color"] = "Color del resplandor"
L["Glow Frame Type"] = "Tipo de marco de resplandor"
@@ -501,10 +501,12 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
L["LibDeflate: Yoursafety"] = "LibDeflate: Yoursafety"
L["LibDispel: Simpy"] = "LibDispel: Simpy"
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
L["Limit"] = "Límite"
L["Line"] = "Línea"
L["Linear Texture %s"] = "Textura lineal de %s"
L["Linked aura: "] = "Aura vinculada:"
L["Linked Auras"] = "Auras vinculadas"
L["Load"] = "Cargar"
L["Loaded"] = "Cargado"
L["Loaded/Standby"] = "Cargado/en espera"
+3 -1
View File
@@ -388,7 +388,7 @@ Bleed classification via LibDispel]=] ] = "Filtrar solo los perjuicios/beneficio
L["Full Circle"] = "Círculo completo"
L["Global Conditions"] = "Condiciones globales"
L["Glow %s"] = "Resplandor %s"
L["Glow Action"] = "Acción de Destello"
L["Glow Action"] = "Acción de resplandor"
L["Glow Anchor"] = "Ancla de resplandor"
L["Glow Color"] = "Color del resplandor"
L["Glow Frame Type"] = "Tipo de marco de resplandor"
@@ -501,10 +501,12 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
L["LibDeflate: Yoursafety"] = "LibDeflate: Yoursafety"
L["LibDispel: Simpy"] = "LibDispel: Simpy"
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
L["Limit"] = "Límite"
L["Line"] = "Línea"
L["Linear Texture %s"] = "Textura lineal de %s"
L["Linked aura: "] = "Aura vinculada:"
L["Linked Auras"] = "Auras vinculadas"
L["Load"] = "Cargar"
L["Loaded"] = "Cargado"
L["Loaded/Standby"] = "Cargado/en espera"
+3
View File
@@ -696,6 +696,7 @@ Si cette case est cochée, ce séparateur inclura du texte. Sinon, ce sera juste
--[[Translation missing --]]
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
--[[Translation missing --]]
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
L["Limit"] = "Limite"
--[[Translation missing --]]
L["Line"] = "Line"
@@ -703,6 +704,8 @@ Si cette case est cochée, ce séparateur inclura du texte. Sinon, ce sera juste
L["Linear Texture %s"] = "Linear Texture %s"
--[[Translation missing --]]
L["Linked aura: "] = "Linked aura: "
--[[Translation missing --]]
L["Linked Auras"] = "Linked Auras"
L["Load"] = "Chargement"
L["Loaded"] = "Chargé"
--[[Translation missing --]]
+3
View File
@@ -739,6 +739,7 @@ Bleed classification via LibDispel]=]
--[[Translation missing --]]
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
--[[Translation missing --]]
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
--[[Translation missing --]]
L["Limit"] = "Limit"
--[[Translation missing --]]
@@ -748,6 +749,8 @@ Bleed classification via LibDispel]=]
--[[Translation missing --]]
L["Linked aura: "] = "Linked aura: "
--[[Translation missing --]]
L["Linked Auras"] = "Linked Auras"
--[[Translation missing --]]
L["Load"] = "Load"
--[[Translation missing --]]
L["Loaded"] = "Loaded"
+27 -25
View File
@@ -11,7 +11,7 @@ local L = WeakAuras.L
L["-- Do not remove this comment, it is part of this aura: "] = "-- 이 주석을 제거하지 마세요 이 위크오라의 일부입니다:"
L[" rotated |cFFFF0000%s|r degrees"] = "|cFFFF0000%s|r도 회전"
L["% - To show a percent sign"] = "% - 백분율 기호 표시"
L["% of Progress"] = "% 진행됨"
L["% of Progress"] = "진행 %"
L["%d |4aura:auras; added"] = "%d개의 위크오라가 추가됐습니다"
L["%d |4aura:auras; deleted"] = "%d개의 위크오라가 삭제됐습니다"
L["%d |4aura:auras; modified"] = "%d개의 위크오라가 변경됐습니다"
@@ -24,7 +24,7 @@ local L = WeakAuras.L
L["%i. %s"] = "%i. %s"
L["%s - %i. Trigger"] = "%s - %i. 활성 조건"
L["%s - Alpha Animation"] = "%s - 투명도 애니메이션"
L["%s - Color Animation"] = "%s - 색 애니메이션"
L["%s - Color Animation"] = "%s - 색 애니메이션"
L["%s - Condition Custom Chat %s"] = "%s - 조건 사용자 정의 대화 %s"
L["%s - Condition Custom Check %s"] = "%s - 조건 사용자 정의 검사 %s"
L["%s - Condition Custom Code %s"] = "%s - 조건 사용자 정의 코드 %s"
@@ -50,7 +50,7 @@ local L = WeakAuras.L
L["%s %u. Overlay Function"] = "%s %u. 오버레이 함수"
L["%s (%s)"] = "%s (%s)"
L["%s Alpha: %d%%"] = "%s 불투명도: %d%%"
L["%s Color"] = "%s 색"
L["%s Color"] = "%s 색"
L["%s Custom Variables"] = "%s 사용자 정의 변수"
L["%s Default Alpha, Zoom, Icon Inset, Aspect Ratio"] = "%s 기본 불투명도, 확대, 아이콘 삽입, 종횡비"
L["%s Duration Function"] = "%s 지속시간 함수"
@@ -75,9 +75,9 @@ local L = WeakAuras.L
L["%s, Start Animation"] = "%s, 애니메이션 시작"
L["%s|cFFFF0000custom|r texture with |cFFFF0000%s|r blend mode%s%s"] = "%s|cFFFF0000사용자 정의|r 텍스처에 |cFFFF0000%s|r 혼합 모드%s%s"
L["(Right click to rename)"] = "(우클릭으로 이름 변경)"
L["|c%02x%02x%02x%02xCustom Color|r"] = "|c%02x%02x%02x%02x사용자 정의 색|r"
L["|c%02x%02x%02x%02xCustom Color|r"] = "|c%02x%02x%02x%02x사용자 정의 색|r"
L["|cff999999Triggers tracking multiple units will default to being active even while no affected units are found without a Unit Count or Match Count setting applied.|r"] = "|cff999999여러 유닛을 추적하는 활성 조건은 유닛 수 또는 일치 횟수 설정이 안된 상태에서 오라에 걸린 유닛이 없을때도 기본으로 활성화됩니다.|r"
L["|cFFE0E000Note:|r This sets the description only on '%s'"] = "|cFFE0E000참고:|r '%s'에만 설명을 지정합니다."
L["|cFFE0E000Note:|r This sets the description only on '%s'"] = "|cFFE0E000참고:|r '%s'에만 설명이 설정됩니다"
L["|cFFE0E000Note:|r This sets the URL on all selected auras"] = "|cFFE0E000참고:|r 선택한 모든 위크오라에 URL을 설정합니다"
L["|cFFE0E000Note:|r This sets the URL on this group and all its members."] = "|cFFE0E000참고:|r 이 그룹 및 속해있는 모든 위크오라에 URL을 설정합니다."
L["|cFFFF0000Automatic|r length"] = "|cFFFF0000자동|r 길이 조정"
@@ -91,8 +91,8 @@ local L = WeakAuras.L
L["|cFFffcc00Anchors:|r Anchored to frame's |cFFFF0000%s|r with offset |cFFFF0000%s/%s|r"] = "|cFFffcc00고정:|r 프레임의 |cFFFF0000%s|r에 |cFFFF0000%s/%s|r의 위치 조정을 적용해서 고정"
L["|cFFffcc00Extra Options:|r"] = "|cFFffcc00추가 옵션:|r"
L["|cFFffcc00Extra:|r %s and %s %s"] = "|cFFffcc00추가:|r %s 및 %s %s"
L["|cFFffcc00Font Flags:|r |cFFFF0000%s|r and shadow |c%sColor|r with offset |cFFFF0000%s/%s|r%s%s"] = "|cFFffcc00글꼴 속성:|r |cFFFF0000%s|r 및 그림자 |c%s색|r 위치 조정 |cFFFF0000%s/%s|r%s%s"
L["|cFFffcc00Font Flags:|r |cFFFF0000%s|r and shadow |c%sColor|r with offset |cFFFF0000%s/%s|r%s%s%s"] = "|cFFffcc00글꼴 속성:|r |cFFFF0000%s|r 및 그림자 |c%s색|r 위치 조정 |cFFFF0000%s/%s|r%s%s%s"
L["|cFFffcc00Font Flags:|r |cFFFF0000%s|r and shadow |c%sColor|r with offset |cFFFF0000%s/%s|r%s%s"] = "|cFFffcc00글꼴 속성:|r |cFFFF0000%s|r 및 그림자 |c%s색|r, 위치 조정 |cFFFF0000%s/%s|r%s%s 적용"
L["|cFFffcc00Font Flags:|r |cFFFF0000%s|r and shadow |c%sColor|r with offset |cFFFF0000%s/%s|r%s%s%s"] = "|cFFffcc00글꼴 속성:|r |cFFFF0000%s|r 및 그림자 |c%s색|r, 위치 조정 |cFFFF0000%s/%s|r%s%s%s 적용"
L["|cffffcc00Format Options|r"] = "|cffffcc00형식 옵션|r"
L[ [=[ |cff00ff00Player|r, |cff00ff00Target|r, |cff00ff00Focus|r, and |cff00ff00Pet|r correspond directly to those individual unitIDs.
|cff00ff00Specific Unit|r lets you provide a specific valid unitID to watch.
@@ -199,21 +199,21 @@ Off Screen]=] ] = "위크오라가 화면 밖에 있습니다"
L["Auto-Clone (Show All Matches)"] = "자동 복제 (일치하는걸 전부 표시)"
L["Automatic length"] = "자동 길이 조정"
L["Available Voices are system specific"] = "컴퓨터 환경에 따라 사용 가능한 음성이 다릅니다"
L["Backdrop Color"] = "배경 색"
L["Backdrop Color"] = "배경"
L["Backdrop in Front"] = "앞쪽 배경"
L["Backdrop Style"] = "배경 스타일"
L["Background Inner"] = "배경 내부"
L["Background Offset"] = "배경 위치 조정"
L["Background Texture"] = "배경 텍스처"
L["Bar Alpha"] = "바 불투명도"
L["Bar Color Settings"] = "바 색 설정"
L["Bar Color Settings"] = "바 색 설정"
L["Big Icon"] = "큰 아이콘"
L["Blend Mode"] = "혼합 모드"
L["Blue Rune"] = "푸른색 룬"
L["Blue Sparkle Orb"] = "푸른 불꽃 구슬"
L["Border %s"] = "테두리 %s"
L["Border Anchor"] = "테두리 고정"
L["Border Color"] = "테두리 색"
L["Border Color"] = "테두리 색"
L["Border in Front"] = "앞쪽 테두리"
L["Border Inset"] = "테두리 삽입"
L["Border Offset"] = "테두리 위치 조정"
@@ -247,7 +247,7 @@ Off Screen]=] ] = "위크오라가 화면 밖에 있습니다"
L["Collapse all non-loaded displays"] = "불러오지 않은 모든 디스플레이를 최소화합니다"
L["Collapse all pending Import"] = "보류 중인 모든 가져오기 접기"
L["Collapsible Group"] = "접을 수 있는 그룹"
L["color"] = ""
L["color"] = ""
L["Column Height"] = "열 높이"
L["Column Space"] = "열 간격"
L["Columns"] = ""
@@ -305,7 +305,7 @@ UNIT_POWER_UPDATE:player, UNIT_AURA:nameplate:group PLAYER_TARGET_CHANGED CLEU:S
L["Debug Log"] = "디버그 로그"
L["Debug Log:"] = "디버그 로그:"
L["Default"] = "기본값"
L["Default Color"] = "기본 색"
L["Default Color"] = "기본 색"
L["Delay"] = "시간 지연"
L["Delete"] = "삭제"
L["Delete all"] = "모두 삭제"
@@ -322,8 +322,8 @@ UNIT_POWER_UPDATE:player, UNIT_AURA:nameplate:group PLAYER_TARGET_CHANGED CLEU:S
L["Distribute Horizontally"] = "가로 분산 배치"
L["Distribute Vertically"] = "세로 분산 배치"
L["Do not group this display"] = "이 디스플레이를 그룹에 넣지 않습니다"
L["Do you want to enable updates for this aura"] = "이 위크오라의 업데이트를 활성화 할까요"
L["Do you want to ignore updates for this aura"] = "이 위크오라의 업데이트를 무시하고 싶으면 켜세요"
L["Do you want to enable updates for this aura"] = "이 위크오라의 업데이트를 활성화 할까요?"
L["Do you want to ignore updates for this aura"] = "이 위크오라의 업데이트를 무시할까요?"
L["Documentation"] = "참고 문서"
L["Done"] = "완료"
L["Drag to move"] = "드래그로 이동"
@@ -351,7 +351,7 @@ UNIT_POWER_UPDATE:player, UNIT_AURA:nameplate:group PLAYER_TARGET_CHANGED CLEU:S
L["Enable Gradient"] = "그라디언트 활성화"
L["Enable Swipe"] = "회전 애니메이션 켜기"
L["Enable the \"Swipe\" radial overlay"] = "\"회전\" 원형 오버레이를 켭니다"
L["Enabled"] = "활성화"
L["Enabled"] = "활성화"
L["End Angle"] = "종료 각도"
L["End of %s"] = "%s의 끝"
L["Enemy nameplate(s) found"] = "적 이름표 발견"
@@ -393,7 +393,7 @@ UNIT_POWER_UPDATE:player, UNIT_AURA:nameplate:group PLAYER_TARGET_CHANGED CLEU:S
L["Filter by Arena Spec"] = "투기장 전문화별 필터"
L["Filter by Class"] = "직업별 필터"
L["Filter by Group Role"] = "그룹 역할별 필터"
L["Filter by Hostility"] = " 유닛 필터"
L["Filter by Hostility"] = "/아군 필터"
L["Filter by Npc ID"] = "NPC ID별 필터"
L["Filter by Raid Role"] = "공격대 역할별 필터"
L["Filter by Specialization"] = "전문화별 필터"
@@ -426,7 +426,7 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
L["Glow %s"] = "반짝임 %s"
L["Glow Action"] = "반짝임 동작"
L["Glow Anchor"] = "반짝임 앵커"
L["Glow Color"] = "반짝임 효과 색"
L["Glow Color"] = "반짝임 효과 색"
L["Glow Frame Type"] = "반짝일 프레임 종류"
L["Glow Type"] = "반짝임 효과 종류"
L["Green Rune"] = "녹색 룬"
@@ -489,7 +489,7 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
L["If checked, then this option group will start collapsed."] = "체크하면 이 옵션 그룹은 접기 상태로 시작합니다."
L["If checked, then this separator will include text. Otherwise, it will be just a horizontal line."] = "체크하면 이 구분자에 텍스트가 들어갑니다. 텍스트를 넣지 않으면 줄만 있게 됩니다."
L["If checked, then this space will span across multiple lines."] = "체크하면 이 공백은 여러 줄 사이에 들어가게 됩니다."
L["If unchecked, then a default color will be used (usually yellow)"] = "체크하지 않으면 기본 색(보통 노란색)이 사용됩니다."
L["If unchecked, then a default color will be used (usually yellow)"] = "체크하지 않으면 기본 색(보통 노란색)이 사용됩니다."
L["If unchecked, then this space will fill the entire line it is on in User Mode."] = "체크하지 않으면 이 공백은 사용자 모드에서 모든 줄에 채워질 것입니다."
L["Ignore out of casting range"] = "유효 거리 밖이면 무시"
L["Ignore out of checking range"] = "거리 검사가 안되면 무시"
@@ -506,8 +506,8 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
L["Import has no UID, cannot be matched to existing auras."] = "가져오기에는 UID가 없으므로 기존 위크오라와 일치시킬 수 없습니다."
L["Importing"] = "가져오기"
L["Importing %s"] = "%s 가져오기"
L["Importing a group with %s child auras."] = "자식 위크오라가 %s개 있는 그룹을 가져오는 중입니다."
L["Importing a stand-alone aura."] = "독립형 위크오라를 가져오는 중입니다."
L["Importing a group with %s child auras."] = "%s개의 자식 위크오라가 들어있는 그룹을 가져오고 있습니다."
L["Importing a stand-alone aura."] = "단일 위크오라를 가져오고 있습니다."
L["Importing...."] = "가져오는 중...."
L["Incompatible changes to group region types detected"] = "호환되지 않는 변경점이 그룹 구역(region) 종류에서 감지됨"
L["Incompatible changes to group structure detected"] = "그룹 구조에 호환되지 않는 변경점이 발견됨"
@@ -540,10 +540,12 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
L["LibDeflate: Yoursafety"] = "LibDeflate: Yoursafety"
L["LibDispel: Simpy"] = "LibDispel: Simpy"
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
L["Limit"] = "제한"
L["Line"] = ""
L["Linear Texture %s"] = "직진 텍스처 %s"
L["Linked aura: "] = "연결된 위크오라: "
L["Linked Auras"] = "연결된 위크오라"
L["Load"] = "불러오기"
L["Loaded"] = "불러옴"
L["Loaded/Standby"] = "불러옴/대기 중"
@@ -678,8 +680,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
L["Purple Rune"] = "보라색 룬"
L["Put this display in a group"] = "이 디스플레이를 그룹에 넣습니다"
L["Range in yards"] = "미터 단위 거리"
L["Ready for Install"] = "설치 준비 완료"
L["Ready for Update"] = "업데이트 준비 완료"
L["Ready for Install"] = "설치 가능"
L["Ready for Update"] = "업데이트 가능"
L["Re-center X"] = "내부 X 좌표"
L["Re-center Y"] = "내부 Y 좌표"
L["Reciprocal TRIGGER:# requests will be ignored!"] = "서로 상응하는 활성 조건 # 요청은 무시됩니다!"
@@ -729,7 +731,7 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
L["Set Thumbnail Icon"] = "썸네일 아이콘을 설정합니다"
L["Sets the anchored frame as the aura's parent, causing the aura to inherit attributes such as visibility and scale."] = "위치가 고정된 프레임을 위크오라의 부모로 설정하여 외관이나 크기 등의 속성을 상속받도록 합니다."
L["Settings"] = "설정"
L["Shadow Color"] = "그림자 색"
L["Shadow Color"] = "그림자 색"
L["Shadow X Offset"] = "그림자 X 위치 조정"
L["Shadow Y Offset"] = "그림자 Y 위치 조정"
L["Shift-click to create chat link"] = "Shift+클릭으로 대화창 링크 생성"
@@ -814,7 +816,7 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
L["Templates could not be loaded, the addon is %s"] = "템플릿을 불러올 수 없습니다. 애드온은 %s입니다."
L["Temporary Group"] = "임시 그룹"
L["Text %s"] = "텍스트 %s"
L["Text Color"] = "텍스트 색"
L["Text Color"] = "텍스트 색"
L["Text Settings"] = "텍스트 설정"
L["Texture %s"] = "텍스처 %s"
L["Texture Info"] = "텍스처 정보"
@@ -859,7 +861,7 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
L["Tick Center %s"] = "틱 중앙 %s"
L["Tick Mode"] = "틱 모드"
L["Tick Placement"] = "틱 배치"
L["Time in"] = "시간 단위"
L["Time in"] = "시간 기준"
L["Tiny Icon"] = "아주 작은 아이콘"
L["To Frame's"] = "프레임의 여기로"
L["To Group's"] = "그룹의 여기로"
+3
View File
@@ -806,6 +806,7 @@ Bleed classification via LibDispel]=]
--[[Translation missing --]]
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
--[[Translation missing --]]
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
--[[Translation missing --]]
L["Limit"] = "Limit"
--[[Translation missing --]]
@@ -815,6 +816,8 @@ Bleed classification via LibDispel]=]
--[[Translation missing --]]
L["Linked aura: "] = "Linked aura: "
--[[Translation missing --]]
L["Linked Auras"] = "Linked Auras"
--[[Translation missing --]]
L["Load"] = "Load"
L["Loaded"] = "Carregado"
--[[Translation missing --]]
+3
View File
@@ -523,10 +523,13 @@ Bleed classification via LibDispel]=] ] = "Фильтровать только
L["LibDeflate: Yoursafety"] = "LibDeflate: Yoursafety"
L["LibDispel: Simpy"] = "LibDispel: Simpy"
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
L["Limit"] = "Лимит"
L["Line"] = "Строка"
L["Linear Texture %s"] = "Линейная текстура %s"
L["Linked aura: "] = "Связанная индикация: "
--[[Translation missing --]]
L["Linked Auras"] = "Linked Auras"
L["Load"] = "Загрузка"
L["Loaded"] = "Загружено"
L["Loaded/Standby"] = "Загружен/Ожидает"
+2
View File
@@ -522,10 +522,12 @@ Bleed classification via LibDispel]=] ] = "仅过滤给定类型的可驱散的
L["LibDeflate: Yoursafety"] = "LibDeflate: Yoursafety"
L["LibDispel: Simpy"] = "LibDispel: Simpy"
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
L["Limit"] = "限制"
L["Line"] = ""
L["Linear Texture %s"] = "线性材质%s"
L["Linked aura: "] = "关联光环:"
L["Linked Auras"] = "连结的光环"
L["Load"] = "载入"
L["Loaded"] = "已载入"
L["Loaded/Standby"] = "已载入/已就绪"
+2
View File
@@ -516,10 +516,12 @@ Bleed classification via LibDispel]=] ] = "只過濾被 LibDispel 分類為流
L["LibDeflate: Yoursafety"] = "LibDeflate: Yoursafety"
L["LibDispel: Simpy"] = "LibDispel: Simpy"
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
L["LibSpecialization: Funkeh"] = "LibSpecialization: Funkeh"
L["Limit"] = "限制"
L["Line"] = ""
L["Linear Texture %s"] = "線性材質 %s"
L["Linked aura: "] = "已連結光環: "
L["Linked Auras"] = "連結的光環"
L["Load"] = "載入"
L["Loaded"] = "已載入"
L["Loaded/Standby"] = "已載入/準備就緒"
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Lua APIs
local pairs = pairs
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- WoW APIs
local CreateFrame = CreateFrame
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Lua APIs
local pairs = pairs
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Lua APIs
local pairs = pairs
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- WoW APIs
local CreateFrame = CreateFrame
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Lua APIs
local rad = rad
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Lua APIs
local pairs = pairs
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Lua APIs
local tinsert, tremove, wipe = table.insert, table.remove, wipe
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Lua APIs
local pairs, type, ipairs = pairs, type, ipairs
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Lua APIs
local wipe = wipe
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local AceGUI = LibStub("AceGUI-3.0")
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local SharedMedia = LibStub("LibSharedMedia-3.0");
local L = WeakAuras.L;
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
+2 -1
View File
@@ -1,6 +1,7 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L;
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local Masque = LibStub("Masque", true)
local L = WeakAuras.L
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L;
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L;
@@ -1,7 +1,8 @@
if not WeakAuras.IsLibsOK() then return end
local L = WeakAuras.L
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local texture_types = WeakAuras.StopMotion.texture_types;
local texture_data = WeakAuras.StopMotion.texture_data;
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local SharedMedia = LibStub("LibSharedMedia-3.0");
local L = WeakAuras.L;
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L;
do
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L;
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L;
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L;
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Magic constant
local deleteCondition = {}
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
@@ -1,6 +1,7 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L;
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L;
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
local L = WeakAuras.L
+3 -2
View File
@@ -1,8 +1,9 @@
local AddonName, Private = ...
local AddonName = ...
local Private = select(2, ...)
local L = WeakAuras.L
local optionsVersion = "5.19.5"
local optionsVersion = "5.19.6"
if optionsVersion .. " Beta" ~= WeakAuras.versionString then
local message = string.format(L["The WeakAuras Options Addon version %s doesn't match the WeakAuras version %s. If you updated the addon while the game was running, try restarting World of Warcraft. Otherwise try reinstalling WeakAuras"],
+2 -1
View File
@@ -1,5 +1,6 @@
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local AddonName = ...
local OptionsPrivate = select(2, ...)
-- Lua APIs
local tinsert, tremove, wipe = table.insert, table.remove, wipe
+1 -1
View File
@@ -1,7 +1,7 @@
## Interface: 30300
## Title: WeakAuras Options
## Author: The WeakAuras Team
## Version: 5.19.5
## Version: 5.19.6
## Notes: Options for WeakAuras
## Notes-esES: Opciones para WeakAuras
## Notes-esMX: Opciones para WeakAuras