5.19.3
Add methods to the states/allstates table that helps with creating,
updating or remove states in an optimized way
## Advantage of using this function instead of doing a states[key] = {
... }
- If already created, update existing state, and return true if any
value was changed, this can help reduce amount of resources an aura use
- Automatically `return true` when using these functions and any change
was made
## Examples
```Lua
function(states, event, ...)
if event == "PLAYER_TARGET_CHANGED" then
if UnitExists("target") then
-- if state exists it's updated, not replaced
-- show & changed fields can be skipped
states:Update("", {
name = UnitName("target"),
duration = 5,
expirationTime = GetTime() + 5,
progressType = "timed",
autoHide = true
})
else
-- wipe
states:RemoveAll()
end
end
-- no need to return true
end
```
with clones
```Lua
function(states, event, ...)
local currentEssence = UnitPower("player", Enum.PowerType.Essence)
local maxEssence = UnitPowerMax("player", Enum.PowerType.Essence)
for i = 1, 6 do
if i > maxEssence then
states:Remove(i) -- wipe allstates[6]
else
local value = currentEssence >= i and 1 or 0
local newState = {
progressType = "static",
value = value,
total = 1
}
states:Update(i, newState)
end
end
-- no need to return true
end
```
This commit is contained in:
@@ -16,7 +16,6 @@ Private.DiscordList = {
|
||||
[=[Burlis]=],
|
||||
[=[Causese]=],
|
||||
[=[Chab]=],
|
||||
[=[cheswick]=],
|
||||
[=[Darian]=],
|
||||
[=[Desik]=],
|
||||
[=[DjinnFish]=],
|
||||
@@ -35,7 +34,7 @@ Private.DiscordList = {
|
||||
[=[Luckyone]=],
|
||||
[=[Luxthos]=],
|
||||
[=[m33shoq]=],
|
||||
[=[Marcelian]=],
|
||||
[=[Manabanana]=],
|
||||
[=[MetalMusicMan]=],
|
||||
[=[Murph]=],
|
||||
[=[Mynze]=],
|
||||
|
||||
@@ -667,11 +667,12 @@ local function RunTriggerFunc(allStates, data, id, triggernum, event, arg1, arg2
|
||||
else
|
||||
ok, returnValue = pcall(data.triggerFunc, allStates, event, arg1, arg2, ...);
|
||||
end
|
||||
if not ok then
|
||||
errorHandler(returnValue)
|
||||
elseif ok and returnValue then
|
||||
if (ok and (returnValue or (returnValue ~= false and allStates.__changed))) then
|
||||
updateTriggerState = true;
|
||||
elseif not ok then
|
||||
errorHandler(returnValue)
|
||||
end
|
||||
allStates.__changed = nil
|
||||
for key, state in pairs(allStates) do
|
||||
if (type(state) ~= "table") then
|
||||
errorHandler(string.format(L["All States table contains a non table at key: '%s'."], key))
|
||||
@@ -3852,7 +3853,7 @@ function GenericTrigger.GetOverlayInfo(data, triggernum)
|
||||
count = variables.additionalProgress;
|
||||
end
|
||||
else
|
||||
local allStates = {};
|
||||
local allStates = setmetatable({}, Private.allstatesMetatable)
|
||||
Private.ActivateAuraEnvironment(data.id);
|
||||
RunTriggerFunc(allStates, events[data.id][triggernum], data.id, triggernum, "OPTIONS");
|
||||
Private.ActivateAuraEnvironment(nil);
|
||||
|
||||
+2
-2
@@ -8,8 +8,8 @@ WeakAuras.halfWidth = WeakAuras.normalWidth / 2
|
||||
WeakAuras.doubleWidth = WeakAuras.normalWidth * 2
|
||||
|
||||
local versionStringFromToc = GetAddOnMetadata("WeakAuras", "Version")
|
||||
local versionString = "5.19.2 Beta"
|
||||
local buildTime = "20250222203033"
|
||||
local versionString = "5.19.3 Beta"
|
||||
local buildTime = "20250224214450"
|
||||
local isAwesomeEnabled = C_NamePlate and C_NamePlate.GetNamePlateForUnit and true or false
|
||||
|
||||
WeakAuras.versionString = versionString
|
||||
|
||||
@@ -684,16 +684,12 @@ function lib.GetUnitNameplate(unit)
|
||||
local nameplate = C_NamePlate.GetNamePlateForUnit(unit)
|
||||
if nameplate then
|
||||
-- credit to Exality for https://wago.io/explosiveorbs
|
||||
if nameplate.UnitFrame and nameplate.UnitFrame.Health then
|
||||
-- elvui bunny
|
||||
if nameplate.UnitFrame and nameplate.UnitFrame.Health and nameplate.UnitFrame.Health:IsShown() then
|
||||
return nameplate.UnitFrame.Health
|
||||
elseif nameplate.UnitFrame and nameplate.UnitFrame.Name and nameplate.UnitFrame.Name:IsShown() then
|
||||
return nameplate.UnitFrame.Name
|
||||
elseif nameplate.unitFrame and nameplate.unitFrame.Health then
|
||||
-- elvui someday
|
||||
elseif nameplate.unitFrame and nameplate.unitFrame.Health and nameplate.unitFrame.Health:IsShown() then
|
||||
return nameplate.unitFrame.Health
|
||||
elseif nameplate.unitFrame and nameplate.unitFrame.Name and nameplate.unitFrame.Name:IsShown() then
|
||||
return nameplate.unitFrame.Name
|
||||
elseif nameplate.unitFramePlater and nameplate.unitFramePlater.healthBar then
|
||||
-- plater
|
||||
-- fallback to default nameplate in case plater is not on screen and uses blizzard default (module disabled, force-blizzard functionality)
|
||||
|
||||
@@ -262,7 +262,7 @@ local function UpdatePosition(self)
|
||||
local yOffset = self.yOffset + (self.yOffsetAnim or 0) + (self.yOffsetRelative or 0)
|
||||
self:RealClearAllPoints();
|
||||
|
||||
local ok, ret = pcall(self.SetPoint, self, self.anchorPoint, self.relativeTo, self.relativePoint, xOffset, yOffset);
|
||||
local ok = pcall(self.SetPoint, self, self.anchorPoint, self.relativeTo, self.relativePoint, xOffset, yOffset);
|
||||
if not ok then
|
||||
Private.GetErrorHandlerId(self.id, L["Update Position"])
|
||||
end
|
||||
|
||||
@@ -0,0 +1,91 @@
|
||||
if not WeakAuras.IsLibsOK() then return end
|
||||
local AddonName, Private = ...
|
||||
|
||||
local function fixMissingFields(state)
|
||||
if type(state) ~= "table" then return end
|
||||
-- set show
|
||||
if state.show == nil then
|
||||
state.show = true
|
||||
end
|
||||
end
|
||||
|
||||
local remove = function(states, key)
|
||||
local changed = false
|
||||
local state = states[key]
|
||||
if state then
|
||||
state.show = false
|
||||
state.changed = true
|
||||
states.__changed = true
|
||||
changed = true
|
||||
end
|
||||
return changed
|
||||
end
|
||||
|
||||
local removeAll = function(states)
|
||||
local changed = false
|
||||
for _, state in pairs(states) do
|
||||
state.show = false
|
||||
state.changed = true
|
||||
changed = true
|
||||
end
|
||||
if changed then
|
||||
states.__changed = true
|
||||
end
|
||||
return changed
|
||||
end
|
||||
|
||||
local function recurseUpdate(t1, t2)
|
||||
local changed = false
|
||||
for k, v in pairs(t2) do
|
||||
if type(v) == "table" and type(t1[k]) == "table" then
|
||||
if recurseUpdate(t1[k], v) then
|
||||
changed = true
|
||||
end
|
||||
else
|
||||
if t1[k] ~= v then
|
||||
t1[k] = v
|
||||
changed = true
|
||||
end
|
||||
end
|
||||
end
|
||||
return changed
|
||||
end
|
||||
|
||||
local update = function(states, key, newState)
|
||||
local changed = false
|
||||
local state = states[key]
|
||||
if state then
|
||||
fixMissingFields(newState)
|
||||
changed = recurseUpdate(state, newState)
|
||||
if changed then
|
||||
state.changed = true
|
||||
states.__changed = true
|
||||
end
|
||||
end
|
||||
return changed
|
||||
end
|
||||
|
||||
local create = function(states, key, newState)
|
||||
states[key] = newState
|
||||
states[key].changed = true
|
||||
states.__changed = true
|
||||
fixMissingFields(states[key])
|
||||
return true
|
||||
end
|
||||
|
||||
local createOrUpdate = function(states, key, newState)
|
||||
key = key or ""
|
||||
if states[key] then
|
||||
return update(states, key, newState)
|
||||
else
|
||||
return create(states, key, newState)
|
||||
end
|
||||
end
|
||||
|
||||
Private.allstatesMetatable = {
|
||||
__index = {
|
||||
Update = createOrUpdate,
|
||||
Remove = remove,
|
||||
RemoveAll = removeAll
|
||||
}
|
||||
}
|
||||
@@ -18,6 +18,8 @@ local SendChatMessage, UnitInBattleground, UnitInRaid, UnitInParty, GetTime
|
||||
local CreateFrame, IsShiftKeyDown, GetScreenWidth, GetScreenHeight, GetCursorPosition, UpdateAddOnCPUUsage, GetFrameCPUUsage, debugprofilestop
|
||||
= CreateFrame, IsShiftKeyDown, GetScreenWidth, GetScreenHeight, GetCursorPosition, UpdateAddOnCPUUsage, GetFrameCPUUsage, debugprofilestop
|
||||
local debugstack = debugstack
|
||||
local GetNumTalentTabs, GetNumTalents = GetNumTalentTabs, GetNumTalents
|
||||
local MAX_NUM_TALENTS = MAX_NUM_TALENTS or 40
|
||||
|
||||
local ADDON_NAME = "WeakAuras"
|
||||
local WeakAuras = WeakAuras
|
||||
@@ -4036,7 +4038,9 @@ function WeakAuras.GetTriggerStateForTrigger(id, triggernum)
|
||||
if (triggernum == -1) then
|
||||
return Private.GetGlobalConditionState();
|
||||
end
|
||||
triggerState[id][triggernum] = triggerState[id][triggernum] or {}
|
||||
if triggerState[id][triggernum] == nil then
|
||||
triggerState[id][triggernum] = setmetatable({}, Private.allstatesMetatable)
|
||||
end
|
||||
return triggerState[id][triggernum];
|
||||
end
|
||||
|
||||
@@ -4365,7 +4369,7 @@ function Private.UpdatedTriggerState(id)
|
||||
|
||||
local changed = false;
|
||||
for triggernum = 1, triggerState[id].numTriggers do
|
||||
triggerState[id][triggernum] = triggerState[id][triggernum] or {};
|
||||
triggerState[id][triggernum] = triggerState[id][triggernum] or setmetatable({}, Private.allstatesMetatable)
|
||||
|
||||
local anyStateShown = false;
|
||||
|
||||
@@ -4456,7 +4460,6 @@ function Private.UpdatedTriggerState(id)
|
||||
end
|
||||
|
||||
for triggernum = 1, triggerState[id].numTriggers do
|
||||
triggerState[id][triggernum] = triggerState[id][triggernum] or {};
|
||||
for cloneId, state in pairs(triggerState[id][triggernum]) do
|
||||
if (not state.show) then
|
||||
triggerState[id][triggernum][cloneId] = nil;
|
||||
@@ -5392,7 +5395,7 @@ function Private.AnchorFrame(data, region, parent, force)
|
||||
local anchorParent = GetAnchorFrame(data, region, parent);
|
||||
if not anchorParent then return end
|
||||
if (data.anchorFrameParent or data.anchorFrameParent == nil
|
||||
or data.anchorFrameType == "SCREEN" or data.anchorFrameType == "UIPARENT" or data.anchorFrameType == "MOUSE") then
|
||||
or data.anchorFrameType == "SCREEN" or data.anchorFrameType == "UIPARENT" or data.anchorFrameType == "MOUSE") then
|
||||
local ok = pcall(region.SetParent, region, anchorParent);
|
||||
if not ok then
|
||||
Private.GetErrorHandlerId(data.id, L["Anchoring"])
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
## Interface: 30300
|
||||
## Title: WeakAuras
|
||||
## Author: The WeakAuras Team
|
||||
## Version: 5.19.2
|
||||
## Version: 5.19.3
|
||||
## X-Flavor: 3.3.5
|
||||
## Notes: A powerful, comprehensive utility for displaying graphics and information based on buffs, debuffs, and other triggers.
|
||||
## Notes-esES: Potente y completa aplicación que te permitirá mostrar por pantalla múltiples diseños, basados en beneficios, perjuicios y otros activadores.
|
||||
@@ -54,6 +54,7 @@ GenericTrigger.lua
|
||||
BossMods.lua
|
||||
|
||||
# Helper Systems
|
||||
TSUHelpers.lua
|
||||
AuraWarnings.lua
|
||||
AuraEnvironment.lua
|
||||
DebugLog.lua
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
## Interface: 30300
|
||||
## Title: WeakAuras Model Paths
|
||||
## Author: The WeakAuras Team
|
||||
## Version: 5.19.2
|
||||
## Version: 5.19.3
|
||||
## Notes: Model paths for WeakAuras
|
||||
## Notes-esES: Las rutas de modelos para WeakAuras
|
||||
## Notes-esMX: Las rutas de modelos para WeakAuras
|
||||
|
||||
@@ -4,45 +4,31 @@ local AddonName = ...
|
||||
local OptionsPrivate = select(2, ...)
|
||||
|
||||
OptionsPrivate.changelog = {
|
||||
versionString = '5.19.2',
|
||||
dateString = '2025-02-20',
|
||||
fullChangeLogUrl = 'https://github.com/WeakAuras/WeakAuras2/compare/5.19.1...5.19.2',
|
||||
versionString = '5.19.3',
|
||||
dateString = '2025-02-24',
|
||||
fullChangeLogUrl = 'https://github.com/WeakAuras/WeakAuras2/compare/5.19.2...5.19.3',
|
||||
highlightText = [==[
|
||||
This is mainly a release to bump the TOC version for Cata.
|
||||
- Remove left-over debug output]==], commitText = [==[InfusOnWoW (2):
|
||||
|
||||
Otherwise it contains minor fixes]==], commitText = [==[InfusOnWoW (7):
|
||||
|
||||
- Update Atlas File List from wago.tools
|
||||
- Regions\Text.lua: Add types
|
||||
- Fix font justify missing after update
|
||||
- Fix lua error if a group contains an aura with a texture sub element
|
||||
- Classic Era: Fix Minimize Button
|
||||
- Update Atlas File List from wago.tools
|
||||
- Update Discord List
|
||||
- Update Atlas File List from wago.tools
|
||||
|
||||
Stanzilla (3):
|
||||
Stanzilla (1):
|
||||
|
||||
- Update WeakAurasModelPaths from wago.tools
|
||||
- Update WeakAurasModelPaths from wago.tools
|
||||
- Update WeakAurasModelPaths from wago.tools
|
||||
|
||||
dependabot[bot] (1):
|
||||
anon1231823 (1):
|
||||
|
||||
- Bump cbrgm/mastodon-github-action from 2.1.10 to 2.1.12
|
||||
- Add esMX to toc files
|
||||
|
||||
emptyrivers (1):
|
||||
|
||||
- only nag user on /reload or /camp, instead of every loading screen
|
||||
- deduplicate localization phrases
|
||||
|
||||
its-riece (1):
|
||||
mrbuds (2):
|
||||
|
||||
- Add itemInRange condition support to more Item Triggers (#5639)
|
||||
|
||||
mrbuds (3):
|
||||
|
||||
- Fix integer overflow error with SpellKnow checks
|
||||
- Update toc files for Cataclysm new patch
|
||||
- smoll fix (#5678)
|
||||
- Allstates helper methods (#5195)
|
||||
- Cleanup leftover debug print in item in range condition
|
||||
|
||||
]==]
|
||||
}
|
||||
|
||||
@@ -141,13 +141,10 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["A Unit ID (e.g., party1)."] = "A Unit ID (e.g., party1)."
|
||||
--[[Translation missing --]]
|
||||
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
|
||||
L["Actions"] = "Aktionen"
|
||||
--[[Translation missing --]]
|
||||
L["Active Aura Filters and Info"] = "Active Aura Filters and Info"
|
||||
--[[Translation missing --]]
|
||||
L["Actual Spec"] = "Actual Spec"
|
||||
--[[Translation missing --]]
|
||||
L["Add"] = "Add"
|
||||
L["Add %s"] = "Füge %s hinzu"
|
||||
L["Add a new display"] = "Neue Anzeige hinzufügen"
|
||||
L["Add Condition"] = "Neue Bedingung"
|
||||
@@ -176,14 +173,13 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["All of"] = "Alles von"
|
||||
--[[Translation missing --]]
|
||||
L["Allow Full Rotation"] = "Allow Full Rotation"
|
||||
L["Alpha"] = "Transparenz"
|
||||
L["Anchor"] = "Anker"
|
||||
--[[Translation missing --]]
|
||||
L["Anchor Mode"] = "Anchor Mode"
|
||||
L["Anchor Point"] = "Ankerpunkt"
|
||||
L["Anchored To"] = "Angeheftet an"
|
||||
L["and"] = "und"
|
||||
L["And "] = "Und"
|
||||
L["and"] = "und"
|
||||
--[[Translation missing --]]
|
||||
L["and %s"] = "and %s"
|
||||
L["and aligned left"] = "und links ausgerichtet"
|
||||
@@ -212,7 +208,6 @@ Falls die Dauer der Animation auf |cFF00CC0010%|r gesetzt wurde und für die Anz
|
||||
L["Animation Sequence"] = "Animationssequenz"
|
||||
--[[Translation missing --]]
|
||||
L["Animation Start"] = "Animation Start"
|
||||
L["Animations"] = "Animationen"
|
||||
--[[Translation missing --]]
|
||||
L["Any of"] = "Any of"
|
||||
L["Apply Template"] = "Vorlage übernehmen"
|
||||
@@ -227,25 +222,18 @@ Falls die Dauer der Animation auf |cFF00CC0010%|r gesetzt wurde und für die Anz
|
||||
--[[Translation missing --]]
|
||||
L["Attach to Foreground"] = "Attach to Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Aura"] = "Aura"
|
||||
--[[Translation missing --]]
|
||||
L[ [=[Aura is
|
||||
Off Screen]=] ] = [=[Aura is
|
||||
Off Screen]=]
|
||||
L["Aura Name"] = "Auraname"
|
||||
L["Aura Name Pattern"] = "Aura Namensmuster"
|
||||
--[[Translation missing --]]
|
||||
L["Aura Order"] = "Aura Order"
|
||||
--[[Translation missing --]]
|
||||
L["Aura received from: %s"] = "Aura received from: %s"
|
||||
L["Aura Type"] = "Auratyp"
|
||||
--[[Translation missing --]]
|
||||
L["Aura: '%s'"] = "Aura: '%s'"
|
||||
--[[Translation missing --]]
|
||||
L["Author Options"] = "Author Options"
|
||||
--[[Translation missing --]]
|
||||
L["Auto-Clone (Show All Matches)"] = "Auto-Clone (Show All Matches)"
|
||||
L["Automatic"] = "Automatisch"
|
||||
--[[Translation missing --]]
|
||||
L["Automatic length"] = "Automatic length"
|
||||
--[[Translation missing --]]
|
||||
@@ -254,24 +242,16 @@ Off Screen]=]
|
||||
--[[Translation missing --]]
|
||||
L["Backdrop in Front"] = "Backdrop in Front"
|
||||
L["Backdrop Style"] = "Hintergrundstil"
|
||||
L["Background"] = "Hintergrund"
|
||||
L["Background Color"] = "Hintergrundfarbe"
|
||||
--[[Translation missing --]]
|
||||
L["Background Inner"] = "Background Inner"
|
||||
L["Background Offset"] = "Hintergrundversatz"
|
||||
L["Background Texture"] = "Hintergrundtextur"
|
||||
L["Bar Alpha"] = "Balkentransparenz"
|
||||
L["Bar Color Settings"] = "Balkenfarbeneinstellungen"
|
||||
--[[Translation missing --]]
|
||||
L["Bar Color/Gradient Start"] = "Bar Color/Gradient Start"
|
||||
L["Bar Texture"] = "Balkentextur"
|
||||
L["Big Icon"] = "Großes Symbol"
|
||||
L["Blend Mode"] = "Mischmodus"
|
||||
--[[Translation missing --]]
|
||||
L["Blizzard Cooldown Reduction"] = "Blizzard Cooldown Reduction"
|
||||
L["Blue Rune"] = "Blaue Rune"
|
||||
L["Blue Sparkle Orb"] = "Blau funkelnde Kugel"
|
||||
L["Border"] = "Rand"
|
||||
L["Border %s"] = "Rahmen %s"
|
||||
--[[Translation missing --]]
|
||||
L["Border Anchor"] = "Border Anchor"
|
||||
@@ -283,9 +263,6 @@ Off Screen]=]
|
||||
L["Border Settings"] = "Rahmeneinstellungen"
|
||||
L["Border Size"] = "Rahmengröße"
|
||||
L["Border Style"] = "Rahmenstil"
|
||||
L["Bottom"] = "Unten"
|
||||
L["Bottom Left"] = "Unten Links"
|
||||
L["Bottom Right"] = "Unten Rechts"
|
||||
--[[Translation missing --]]
|
||||
L["Bracket Matching"] = "Bracket Matching"
|
||||
--[[Translation missing --]]
|
||||
@@ -298,7 +275,6 @@ Off Screen]=]
|
||||
L["Can set to 0 if Columns * Width equal File Width"] = "Can set to 0 if Columns * Width equal File Width"
|
||||
--[[Translation missing --]]
|
||||
L["Can set to 0 if Rows * Height equal File Height"] = "Can set to 0 if Rows * Height equal File Height"
|
||||
L["Cancel"] = "Abbrechen"
|
||||
--[[Translation missing --]]
|
||||
L["Case Insensitive"] = "Case Insensitive"
|
||||
--[[Translation missing --]]
|
||||
@@ -306,10 +282,7 @@ Off Screen]=]
|
||||
--[[Translation missing --]]
|
||||
L["Categories to Update"] = "Categories to Update"
|
||||
--[[Translation missing --]]
|
||||
L["Center"] = "Center"
|
||||
--[[Translation missing --]]
|
||||
L["Changelog"] = "Changelog"
|
||||
L["Chat Message"] = "Chatnachricht"
|
||||
--[[Translation missing --]]
|
||||
L["Chat with WeakAuras experts on our Discord server."] = "Chat with WeakAuras experts on our Discord server."
|
||||
L["Check On..."] = "Prüfen auf..."
|
||||
@@ -319,7 +292,6 @@ Off Screen]=]
|
||||
L["Choose"] = "Auswählen"
|
||||
--[[Translation missing --]]
|
||||
L["Circular Texture %s"] = "Circular Texture %s"
|
||||
L["Class"] = "Klasse"
|
||||
--[[Translation missing --]]
|
||||
L["Clear Debug Logs"] = "Clear Debug Logs"
|
||||
--[[Translation missing --]]
|
||||
@@ -328,8 +300,6 @@ Off Screen]=]
|
||||
L["Clip Overlays"] = "Clip Overlays"
|
||||
--[[Translation missing --]]
|
||||
L["Clipped by Foreground"] = "Clipped by Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Clockwise"] = "Clockwise"
|
||||
L["Close"] = "Schließen"
|
||||
--[[Translation missing --]]
|
||||
L["Code Editor"] = "Code Editor"
|
||||
@@ -341,7 +311,6 @@ Off Screen]=]
|
||||
--[[Translation missing --]]
|
||||
L["Collapsible Group"] = "Collapsible Group"
|
||||
L["color"] = "Farbe"
|
||||
L["Color"] = "Farbe"
|
||||
L["Column Height"] = "Spaltenhöhe"
|
||||
L["Column Space"] = "Spaltenabstand"
|
||||
--[[Translation missing --]]
|
||||
@@ -358,7 +327,6 @@ Off Screen]=]
|
||||
--[[Translation missing --]]
|
||||
L["Compatibility Options"] = "Compatibility Options"
|
||||
L["Compress"] = "Stauchen"
|
||||
L["Conditions"] = "Bedingungen"
|
||||
--[[Translation missing --]]
|
||||
L["Configure what options appear on this panel."] = "Configure what options appear on this panel."
|
||||
L["Constant Factor"] = "Konstanter Faktor"
|
||||
@@ -367,14 +335,11 @@ Off Screen]=]
|
||||
L["Convert to..."] = "Konvertieren zu..."
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."] = "Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."
|
||||
L["Copy"] = "Kopieren"
|
||||
L["Copy settings..."] = "Einstellungen kopieren..."
|
||||
L["Copy to all auras"] = "Kopiere zu allen Auren"
|
||||
--[[Translation missing --]]
|
||||
L["Could not parse '%s'. Expected a table."] = "Could not parse '%s'. Expected a table."
|
||||
L["Count"] = "Anzahl"
|
||||
--[[Translation missing --]]
|
||||
L["Counts the number of matches over all units."] = "Counts the number of matches over all units."
|
||||
--[[Translation missing --]]
|
||||
@@ -383,31 +348,15 @@ Off Screen]=]
|
||||
L["Create a Copy"] = "Create a Copy"
|
||||
L["Creating buttons: "] = "Erstelle Schaltflächen:"
|
||||
L["Creating options: "] = "Erstelle Optionen:"
|
||||
L["Crop X"] = "Abschneiden (X)"
|
||||
L["Crop Y"] = "Abschneiden (Y)"
|
||||
L["Custom"] = "Benutzerdefiniert"
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Custom Anchor"] = "Custom Anchor"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Check"] = "Custom Check"
|
||||
L["Custom Code"] = "Benutzerdefinierter Code"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Code Viewer"] = "Custom Code Viewer"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Color"] = "Custom Color"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Configuration"] = "Custom Configuration"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Frames"] = "Custom Frames"
|
||||
L["Custom Function"] = "Benutzerdefiniert"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Grow"] = "Custom Grow"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Options"] = "Custom Options"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Sort"] = "Custom Sort"
|
||||
L["Custom Trigger"] = "Benutzerdefinierter Auslöser"
|
||||
L["Custom trigger event tooltip"] = [=[Wähle die Ereignisse, die den benutzerdefinierten Auslöser aufrufen sollen.
|
||||
Mehrere Ereignisse können durch Komma oder Leerzeichen getrennt werden.
|
||||
@@ -426,9 +375,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Custom Trigger: Send fake events instead of STATUS event"] = "Custom Trigger: Send fake events instead of STATUS event"
|
||||
L["Custom Untrigger"] = "Benutzerdefinierter Umkehrauslöser"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Variables"] = "Custom Variables"
|
||||
L["Debuff Type"] = "Debufftyp"
|
||||
--[[Translation missing --]]
|
||||
L["Debug Log"] = "Debug Log"
|
||||
--[[Translation missing --]]
|
||||
L["Debug Log:"] = "Debug Log:"
|
||||
@@ -441,16 +387,12 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Delete Entry"] = "Eintrag löschen"
|
||||
--[[Translation missing --]]
|
||||
L["Deleting auras: "] = "Deleting auras: "
|
||||
L["Desaturate"] = "Entsättigen"
|
||||
L["Description"] = "Beschreibung"
|
||||
L["Description Text"] = "Beschreibungstext"
|
||||
--[[Translation missing --]]
|
||||
L["Determines how many entries can be in the table."] = "Determines how many entries can be in the table."
|
||||
L["Differences"] = "Unterschiede"
|
||||
L["Disabled"] = "Deaktiviert"
|
||||
--[[Translation missing --]]
|
||||
L["Disallow Entry Reordering"] = "Disallow Entry Reordering"
|
||||
L["Display"] = "Anzeige"
|
||||
L["Display Name"] = "Anzeigename"
|
||||
L["Display Text"] = "Anzeigetext"
|
||||
L["Displays a text, works best in combination with other displays"] = "Zeigt einen Text an, funktioniert am besten in Kombination mit anderen Anzeigen"
|
||||
@@ -466,8 +408,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Drag to move"] = "Ziehen, um diese Anzeige zu verschieben"
|
||||
L["Duplicate"] = "Duplizieren"
|
||||
L["Duplicate All"] = "Alle duplizieren"
|
||||
--[[Translation missing --]]
|
||||
L["Duration"] = "Duration"
|
||||
L["Duration (s)"] = "Dauer (s)"
|
||||
L["Duration Info"] = "Dauerinformationen"
|
||||
--[[Translation missing --]]
|
||||
@@ -484,7 +424,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Ease Strength"] = "Ease Strength"
|
||||
--[[Translation missing --]]
|
||||
L["Ease type"] = "Ease type"
|
||||
L["Edge"] = "Ecke"
|
||||
--[[Translation missing --]]
|
||||
L["eliding"] = "eliding"
|
||||
--[[Translation missing --]]
|
||||
@@ -531,11 +470,9 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Entry limit"] = "Eintragsgrenze"
|
||||
L["Entry Name Source"] = "Eintragsnamensquelle"
|
||||
L["Event Type"] = "Ereignistyp"
|
||||
L["Event(s)"] = "Ereignis(se)"
|
||||
L["Everything"] = "Alles"
|
||||
--[[Translation missing --]]
|
||||
L["Exact Item Match"] = "Exact Item Match"
|
||||
L["Exact Spell ID(s)"] = "Exakte ZauberID(s)"
|
||||
L["Exact Spell Match"] = "Exakte Zauberübereinstimmung"
|
||||
L["Expand"] = "Erweitern"
|
||||
L["Expand all loaded displays"] = "Alle geladenen Anzeigen erweitern"
|
||||
@@ -555,13 +492,10 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
--[[Translation missing --]]
|
||||
L["Extra Width"] = "Extra Width"
|
||||
L["Fade"] = "Verblassen"
|
||||
L["Fade In"] = "Einblenden"
|
||||
L["Fade Out"] = "Ausblenden"
|
||||
--[[Translation missing --]]
|
||||
L["Fadeout Sound"] = "Fadeout Sound"
|
||||
--[[Translation missing --]]
|
||||
L["Fadeout Time (seconds)"] = "Fadeout Time (seconds)"
|
||||
L["False"] = "Falsch"
|
||||
--[[Translation missing --]]
|
||||
L["Fetch Affected/Unaffected Names and Units"] = "Fetch Affected/Unaffected Names and Units"
|
||||
--[[Translation missing --]]
|
||||
@@ -608,14 +542,8 @@ Bleed classification via LibDispel]=]
|
||||
L["Fire Orb"] = "Feuerkugel"
|
||||
--[[Translation missing --]]
|
||||
L["Flat Framelevels"] = "Flat Framelevels"
|
||||
L["Font"] = "Schriftart"
|
||||
L["Font Size"] = "Schriftgröße"
|
||||
L["Foreground"] = "Vordergrund"
|
||||
L["Foreground Color"] = "Vordergrundfarbe"
|
||||
L["Foreground Texture"] = "Vordergrundtextur"
|
||||
--[[Translation missing --]]
|
||||
L["Format"] = "Format"
|
||||
--[[Translation missing --]]
|
||||
L["Format for %s"] = "Format for %s"
|
||||
--[[Translation missing --]]
|
||||
L["Found a Bug?"] = "Found a Bug?"
|
||||
@@ -629,7 +557,6 @@ Bleed classification via LibDispel]=]
|
||||
L["Frame Strata"] = "Frame-Schicht"
|
||||
--[[Translation missing --]]
|
||||
L["Frame Width"] = "Frame Width"
|
||||
L["Frequency"] = "Häufigkeit"
|
||||
--[[Translation missing --]]
|
||||
L["Full Bar"] = "Full Bar"
|
||||
--[[Translation missing --]]
|
||||
@@ -641,18 +568,11 @@ Bleed classification via LibDispel]=]
|
||||
L["Glow Anchor"] = "Glow Anchor"
|
||||
L["Glow Color"] = "Leuchtfarbe"
|
||||
--[[Translation missing --]]
|
||||
L["Glow External Element"] = "Glow External Element"
|
||||
--[[Translation missing --]]
|
||||
L["Glow Frame Type"] = "Glow Frame Type"
|
||||
L["Glow Type"] = "Leuchttyp"
|
||||
--[[Translation missing --]]
|
||||
L["Gradient End"] = "Gradient End"
|
||||
--[[Translation missing --]]
|
||||
L["Gradient Orientation"] = "Gradient Orientation"
|
||||
L["Green Rune"] = "Grüne Rune"
|
||||
--[[Translation missing --]]
|
||||
L["Grid direction"] = "Grid direction"
|
||||
L["Group"] = "Gruppe"
|
||||
L["Group (verb)"] = "Gruppieren"
|
||||
--[[Translation missing --]]
|
||||
L["Group Alpha"] = "Group Alpha"
|
||||
@@ -691,13 +611,8 @@ Falls die Zahl als Dezimalzahl (z.B. 0.5), Bruch (z.B. 1/2) oder Prozentsatz (z.
|
||||
L["Group Scale"] = "Gruppenskalierung"
|
||||
--[[Translation missing --]]
|
||||
L["Group Settings"] = "Group Settings"
|
||||
L["Group Type"] = "Gruppentyp"
|
||||
--[[Translation missing --]]
|
||||
L["Grow"] = "Grow"
|
||||
L["Hawk"] = "Falke"
|
||||
L["Height"] = "Höhe"
|
||||
L["Help"] = "Hilfe"
|
||||
L["Hide"] = "Verbergen"
|
||||
--[[Translation missing --]]
|
||||
L["Hide Background"] = "Hide Background"
|
||||
--[[Translation missing --]]
|
||||
@@ -705,19 +620,14 @@ Falls die Zahl als Dezimalzahl (z.B. 0.5), Bruch (z.B. 1/2) oder Prozentsatz (z.
|
||||
L["Hide on"] = "Verbergen falls"
|
||||
L["Hide this group's children"] = "Die Kinder dieser Gruppe ausblenden"
|
||||
--[[Translation missing --]]
|
||||
L["Hide Timer Text"] = "Hide Timer Text"
|
||||
--[[Translation missing --]]
|
||||
L["Highlights"] = "Highlights"
|
||||
L["Horizontal Align"] = "Horizontale Ausrichtung"
|
||||
L["Horizontal Bar"] = "Horizontaler Balken"
|
||||
--[[Translation missing --]]
|
||||
L["Hostility"] = "Hostility"
|
||||
L["Huge Icon"] = "Riesiges Symbol"
|
||||
--[[Translation missing --]]
|
||||
L["Hybrid Position"] = "Hybrid Position"
|
||||
--[[Translation missing --]]
|
||||
L["Hybrid Sort Mode"] = "Hybrid Sort Mode"
|
||||
L["Icon"] = "Symbol"
|
||||
--[[Translation missing --]]
|
||||
L["Icon - The icon associated with the display"] = "Icon - The icon associated with the display"
|
||||
L["Icon Info"] = "Symbolinfo"
|
||||
@@ -752,16 +662,10 @@ Falls die Zahl als Dezimalzahl (z.B. 0.5), Bruch (z.B. 1/2) oder Prozentsatz (z.
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Dead"] = "Ignore Dead"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Disconnected"] = "Ignore Disconnected"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore out of casting range"] = "Ignore out of casting range"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore out of checking range"] = "Ignore out of checking range"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Self"] = "Ignore Self"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Wago updates"] = "Ignore Wago updates"
|
||||
L["Ignored"] = "Ignoriert"
|
||||
--[[Translation missing --]]
|
||||
@@ -791,16 +695,12 @@ Falls die Zahl als Dezimalzahl (z.B. 0.5), Bruch (z.B. 1/2) oder Prozentsatz (z.
|
||||
--[[Translation missing --]]
|
||||
L["Importing...."] = "Importing...."
|
||||
--[[Translation missing --]]
|
||||
L["Include Pets"] = "Include Pets"
|
||||
--[[Translation missing --]]
|
||||
L["Incompatible changes to group region types detected"] = "Incompatible changes to group region types detected"
|
||||
--[[Translation missing --]]
|
||||
L["Incompatible changes to group structure detected"] = "Incompatible changes to group structure detected"
|
||||
--[[Translation missing --]]
|
||||
L["Indent Size"] = "Indent Size"
|
||||
--[[Translation missing --]]
|
||||
L["Information"] = "Information"
|
||||
--[[Translation missing --]]
|
||||
L["Inner"] = "Inner"
|
||||
--[[Translation missing --]]
|
||||
L["Insert text replacement codes to make text dynamic."] = "Insert text replacement codes to make text dynamic."
|
||||
@@ -815,7 +715,6 @@ Falls die Zahl als Dezimalzahl (z.B. 0.5), Bruch (z.B. 1/2) oder Prozentsatz (z.
|
||||
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'."
|
||||
--[[Translation missing --]]
|
||||
L["Invalid type for property '%s' in '%s'. Expected '%s'"] = "Invalid type for property '%s' in '%s'. Expected '%s'"
|
||||
L["Inverse"] = "Invertiert"
|
||||
--[[Translation missing --]]
|
||||
L["Inverse Slant"] = "Inverse Slant"
|
||||
--[[Translation missing --]]
|
||||
@@ -835,11 +734,9 @@ Falls die Zahl als Dezimalzahl (z.B. 0.5), Bruch (z.B. 1/2) oder Prozentsatz (z.
|
||||
--[[Translation missing --]]
|
||||
L["Large Input"] = "Large Input"
|
||||
L["Leaf"] = "Blatt"
|
||||
L["Left"] = "Links"
|
||||
--[[Translation missing --]]
|
||||
L["Left 2 HUD position"] = "Left 2 HUD position"
|
||||
L["Left HUD position"] = "Linke HUD Position"
|
||||
L["Length"] = "Länge"
|
||||
--[[Translation missing --]]
|
||||
L["Length of |cFFFF0000%s|r"] = "Length of |cFFFF0000%s|r"
|
||||
--[[Translation missing --]]
|
||||
@@ -853,15 +750,12 @@ 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["LibSharedMedia"] = "LibSharedMedia"
|
||||
L["Limit"] = "Limit"
|
||||
--[[Translation missing --]]
|
||||
L["Line"] = "Line"
|
||||
--[[Translation missing --]]
|
||||
L["Linear Texture %s"] = "Linear Texture %s"
|
||||
--[[Translation missing --]]
|
||||
L["Lines & Particles"] = "Lines & Particles"
|
||||
--[[Translation missing --]]
|
||||
L["Linked aura: "] = "Linked aura: "
|
||||
L["Load"] = "Laden"
|
||||
L["Loaded"] = "Geladen"
|
||||
@@ -869,22 +763,13 @@ Falls die Zahl als Dezimalzahl (z.B. 0.5), Bruch (z.B. 1/2) oder Prozentsatz (z.
|
||||
L["Loaded/Standby"] = "Loaded/Standby"
|
||||
--[[Translation missing --]]
|
||||
L["Lock Positions"] = "Lock Positions"
|
||||
L["Loop"] = "Schleife"
|
||||
L["Low Mana"] = "Niedriges Mana"
|
||||
--[[Translation missing --]]
|
||||
L["Magnetically Align"] = "Magnetically Align"
|
||||
L["Main"] = "Hauptanimation"
|
||||
--[[Translation missing --]]
|
||||
L["Manual"] = "Manual"
|
||||
--[[Translation missing --]]
|
||||
L["Manual Icon"] = "Manual Icon"
|
||||
--[[Translation missing --]]
|
||||
L["Manual with %i/%i"] = "Manual with %i/%i"
|
||||
--[[Translation missing --]]
|
||||
L["Match Count"] = "Match Count"
|
||||
--[[Translation missing --]]
|
||||
L["Match Count per Unit"] = "Match Count per Unit"
|
||||
--[[Translation missing --]]
|
||||
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"
|
||||
--[[Translation missing --]]
|
||||
@@ -894,14 +779,10 @@ Falls die Zahl als Dezimalzahl (z.B. 0.5), Bruch (z.B. 1/2) oder Prozentsatz (z.
|
||||
--[[Translation missing --]]
|
||||
L["Media Type"] = "Media Type"
|
||||
L["Medium Icon"] = "Mittelgroßes Symbol"
|
||||
L["Message"] = "Nachricht"
|
||||
L["Message Type"] = "Nachrichtentyp"
|
||||
--[[Translation missing --]]
|
||||
L["Min"] = "Min"
|
||||
--[[Translation missing --]]
|
||||
L["Minimum"] = "Minimum"
|
||||
L["Mirror"] = "Spiegeln"
|
||||
L["Model"] = "Modell"
|
||||
--[[Translation missing --]]
|
||||
L["Model %s"] = "Model %s"
|
||||
--[[Translation missing --]]
|
||||
@@ -941,11 +822,8 @@ Nur ein Wert kann ausgewählt werden.]=]
|
||||
L["Name Info"] = "Namensinfo"
|
||||
--[[Translation missing --]]
|
||||
L["Name Pattern Match"] = "Name Pattern Match"
|
||||
L["Name(s)"] = "Name(n)"
|
||||
--[[Translation missing --]]
|
||||
L["Name:"] = "Name:"
|
||||
--[[Translation missing --]]
|
||||
L["Nameplates"] = "Nameplates"
|
||||
L["Negator"] = "Nicht"
|
||||
L["New Aura"] = "Neue Aura"
|
||||
--[[Translation missing --]]
|
||||
@@ -954,7 +832,6 @@ Nur ein Wert kann ausgewählt werden.]=]
|
||||
L["No Children"] = "Keine Kinder"
|
||||
--[[Translation missing --]]
|
||||
L["No Logs saved."] = "No Logs saved."
|
||||
L["None"] = "Keinen"
|
||||
--[[Translation missing --]]
|
||||
L["Not a table"] = "Not a table"
|
||||
L["Not all children have the same value for this option"] = "Nicht alle Kinder besitzen denselben Wert"
|
||||
@@ -964,8 +841,6 @@ Nur ein Wert kann ausgewählt werden.]=]
|
||||
--[[Translation missing --]]
|
||||
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\""
|
||||
--[[Translation missing --]]
|
||||
L["Npc ID"] = "Npc ID"
|
||||
--[[Translation missing --]]
|
||||
L["Number of Entries"] = "Number of Entries"
|
||||
--[[Translation missing --]]
|
||||
L[ [=[Occurrence of the event, reset when aura is unloaded
|
||||
@@ -1020,12 +895,10 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["or %s"] = "or %s"
|
||||
L["Orange Rune"] = "Orange Rune"
|
||||
L["Orientation"] = "Orientierung"
|
||||
--[[Translation missing --]]
|
||||
L["Our translators (too many to name)"] = "Our translators (too many to name)"
|
||||
--[[Translation missing --]]
|
||||
L["Outer"] = "Outer"
|
||||
L["Outline"] = "Umriss"
|
||||
--[[Translation missing --]]
|
||||
L["Overflow"] = "Overflow"
|
||||
--[[Translation missing --]]
|
||||
@@ -1068,7 +941,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Premade Snippets"] = "Premade Snippets"
|
||||
--[[Translation missing --]]
|
||||
L["Preparing auras: "] = "Preparing auras: "
|
||||
L["Preset"] = "Voreinstellung"
|
||||
L["Press Ctrl+C to copy"] = "Drücke Strg+C zum kopieren"
|
||||
--[[Translation missing --]]
|
||||
L["Press Ctrl+C to copy the URL"] = "Press Ctrl+C to copy the URL"
|
||||
@@ -1081,16 +953,11 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Progress Bar Settings"] = "Progress Bar Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Settings"] = "Progress Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Source"] = "Progress Source"
|
||||
L["Progress Texture"] = "Fortschrittstextur"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Texture Settings"] = "Progress Texture Settings"
|
||||
L["Purple Rune"] = "Violette Rune"
|
||||
L["Put this display in a group"] = "Diese Anzeige in eine Gruppe stecken"
|
||||
L["Radius"] = "Radius"
|
||||
--[[Translation missing --]]
|
||||
L["Raid Role"] = "Raid Role"
|
||||
--[[Translation missing --]]
|
||||
L["Range in yards"] = "Range in yards"
|
||||
--[[Translation missing --]]
|
||||
@@ -1103,7 +970,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Reciprocal TRIGGER:# requests will be ignored!"] = "Reciprocal TRIGGER:# requests will be ignored!"
|
||||
--[[Translation missing --]]
|
||||
L["Regions of type \"%s\" are not supported."] = "Regions of type \"%s\" are not supported."
|
||||
L["Remaining Time"] = "Verbleibende Zeit"
|
||||
L["Remove"] = "Entfernen"
|
||||
--[[Translation missing --]]
|
||||
L["Remove All Sounds"] = "Remove All Sounds"
|
||||
@@ -1127,7 +993,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Reset all options to their default values."] = "Reset all options to their default values."
|
||||
L["Reset Entry"] = "Eintrag zurücksetzen"
|
||||
L["Reset to Defaults"] = "Auf Standard zurücksetzen"
|
||||
L["Right"] = "Rechts"
|
||||
--[[Translation missing --]]
|
||||
L["Right 2 HUD position"] = "Right 2 HUD position"
|
||||
L["Right HUD position"] = "Rechte HUD Position"
|
||||
@@ -1136,7 +1001,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Rotate In"] = "Nach innen rotieren"
|
||||
L["Rotate Out"] = "Nach außen rotieren"
|
||||
L["Rotate Text"] = "Text rotieren"
|
||||
L["Rotation"] = "Rotation"
|
||||
L["Rotation Mode"] = "Rotationsmodus"
|
||||
L["Row Space"] = "Zeilenabstand"
|
||||
L["Row Width"] = "Zeilenbreite"
|
||||
@@ -1149,7 +1013,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Same texture as Foreground"] = "Same texture as Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Saved Data"] = "Saved Data"
|
||||
L["Scale"] = "Skalierung"
|
||||
--[[Translation missing --]]
|
||||
L["Scale Factor"] = "Scale Factor"
|
||||
--[[Translation missing --]]
|
||||
@@ -1205,7 +1068,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Show Model"] = "Show Model"
|
||||
L["Show model of unit "] = "Modell der Einheit zeigen"
|
||||
L["Show On"] = "Einblenden wenn"
|
||||
--[[Translation missing --]]
|
||||
L["Show Sound Setting"] = "Show Sound Setting"
|
||||
--[[Translation missing --]]
|
||||
@@ -1245,7 +1107,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
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"] = "Zeigt ein oder mehrere Zeilen Text an, der dynamische Informationen anzeigen kann, z.B. Fortschritt oder Stapel"
|
||||
L["Simple"] = "Einfach"
|
||||
L["Size"] = "Größe"
|
||||
--[[Translation missing --]]
|
||||
L["Slant Amount"] = "Slant Amount"
|
||||
@@ -1268,29 +1129,17 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Soft Min"] = "Soft Min"
|
||||
L["Sort"] = "Sortieren"
|
||||
L["Sound"] = "Sound"
|
||||
--[[Translation missing --]]
|
||||
L["Sound by Kit ID"] = "Sound by Kit ID"
|
||||
L["Sound Channel"] = "Soundkanal"
|
||||
L["Sound File Path"] = "Sound Dateipfad"
|
||||
L["Sound Kit ID"] = "Sound Kit ID"
|
||||
--[[Translation missing --]]
|
||||
L["Source"] = "Source"
|
||||
L["Space"] = "Abstand"
|
||||
L["Space Horizontally"] = "Horizontaler Abstand"
|
||||
L["Space Vertically"] = "Vertikaler Abstand"
|
||||
L["Spark"] = "Funken"
|
||||
L["Spark Settings"] = "Funkeneinstellungen"
|
||||
L["Spark Texture"] = "Funkentextur"
|
||||
--[[Translation missing --]]
|
||||
L["Specialization"] = "Specialization"
|
||||
--[[Translation missing --]]
|
||||
L["Specific Currency ID"] = "Specific Currency ID"
|
||||
L["Specific Unit"] = "Spezifische Einheit"
|
||||
L["Spell ID"] = "Zauber-ID"
|
||||
--[[Translation missing --]]
|
||||
L["Spell Selection Filters"] = "Spell Selection Filters"
|
||||
L["Stack Count"] = "Stapelanzahl"
|
||||
L["Stack Info"] = "Stapelinfo"
|
||||
--[[Translation missing --]]
|
||||
L["Stacks - The number of stacks of an aura (usually)"] = "Stacks - The number of stacks of an aura (usually)"
|
||||
@@ -1301,15 +1150,11 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Start"] = "Start"
|
||||
L["Start Angle"] = "Startwinkel"
|
||||
--[[Translation missing --]]
|
||||
L["Start Animation"] = "Start Animation"
|
||||
--[[Translation missing --]]
|
||||
L["Start Collapsed"] = "Start Collapsed"
|
||||
--[[Translation missing --]]
|
||||
L["Start of %s"] = "Start of %s"
|
||||
L["Step Size"] = "Schrittgröße"
|
||||
--[[Translation missing --]]
|
||||
L["Stop Motion"] = "Stop Motion"
|
||||
--[[Translation missing --]]
|
||||
L["Stop Motion %s"] = "Stop Motion %s"
|
||||
--[[Translation missing --]]
|
||||
L["Stop Motion Settings"] = "Stop Motion Settings"
|
||||
@@ -1323,25 +1168,17 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Subevent Suffix"] = "Subevent Suffix"
|
||||
--[[Translation missing --]]
|
||||
L["Supports multiple entries, separated by commas"] = "Supports multiple entries, separated by commas"
|
||||
--[[Translation missing --]]
|
||||
L["Swipe Overlay Settings"] = "Swipe Overlay Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Templates could not be loaded, the addon is %s"] = "Templates could not be loaded, the addon is %s"
|
||||
L["Temporary Group"] = "Temporäre Gruppe"
|
||||
L["Text"] = "Text"
|
||||
L["Text %s"] = "Text %s"
|
||||
L["Text Color"] = "Textfarbe"
|
||||
L["Text Settings"] = "Texteinstellungen"
|
||||
L["Texture"] = "Textur"
|
||||
--[[Translation missing --]]
|
||||
L["Texture %s"] = "Texture %s"
|
||||
L["Texture Info"] = "Texturinfo"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Picker"] = "Texture Picker"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Rotation"] = "Texture Rotation"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Selection Mode"] = "Texture Selection Mode"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Settings"] = "Texture Settings"
|
||||
@@ -1370,8 +1207,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Thickness"] = "Thickness"
|
||||
--[[Translation missing --]]
|
||||
L["This adds %raidMark as text replacements."] = "This adds %raidMark as text replacements."
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
@@ -1433,7 +1268,6 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Toggle the visibility of all loaded displays"] = "Sichtbarkeit aller geladener Anzeigen umschalten"
|
||||
L["Toggle the visibility of all non-loaded displays"] = "Sichtbarkeit aller nicht geladener Anzeigen umschalten"
|
||||
L["Toggle the visibility of this display"] = "Die Sichtbarkeit dieser Anzeige umschalten"
|
||||
L["Tooltip"] = "Tooltip"
|
||||
L["Tooltip Content"] = "Tooltip Inhalt"
|
||||
L["Tooltip on Mouseover"] = "Tooltip bei Mausberührung"
|
||||
--[[Translation missing --]]
|
||||
@@ -1441,10 +1275,7 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Tooltip Text"] = "Tooltip Text"
|
||||
L["Tooltip Value"] = "Tooltip Wert"
|
||||
L["Tooltip Value #"] = "Tooltip Wert #"
|
||||
L["Top"] = "Oben"
|
||||
L["Top HUD position"] = "Höchste HUD Position"
|
||||
L["Top Left"] = "Oben links"
|
||||
L["Top Right"] = "Oben rechts"
|
||||
--[[Translation missing --]]
|
||||
L["Total"] = "Total"
|
||||
--[[Translation missing --]]
|
||||
@@ -1453,26 +1284,18 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Total Angle"] = "Total Angle"
|
||||
--[[Translation missing --]]
|
||||
L["Total Time"] = "Total Time"
|
||||
L["Trigger"] = "Auslöser"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger %i"] = "Trigger %i"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger %i: %s"] = "Trigger %i: %s"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger Combination"] = "Trigger Combination"
|
||||
L["True"] = "Wahr"
|
||||
L["Type"] = "Typ"
|
||||
--[[Translation missing --]]
|
||||
L["Type 'select' for '%s' requires a values member'"] = "Type 'select' for '%s' requires a values member'"
|
||||
L["Ungroup"] = "Gruppierung aufheben"
|
||||
L["Unit"] = "Einheit"
|
||||
--[[Translation missing --]]
|
||||
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "Unit %s is not a valid unit for RegisterUnitEvent"
|
||||
--[[Translation missing --]]
|
||||
L["Unit Count"] = "Unit Count"
|
||||
--[[Translation missing --]]
|
||||
L["Unit Frames"] = "Unit Frames"
|
||||
--[[Translation missing --]]
|
||||
L["Unknown"] = "Unknown"
|
||||
--[[Translation missing --]]
|
||||
L["Unknown Encounter's Spell Id"] = "Unknown Encounter's Spell Id"
|
||||
@@ -1490,22 +1313,17 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["URL"] = "URL"
|
||||
--[[Translation missing --]]
|
||||
L["Url: %s"] = "Url: %s"
|
||||
L["Use Custom Color"] = "Benutzerdefinierte Farbe benutzen"
|
||||
--[[Translation missing --]]
|
||||
L["Use Display Info Id"] = "Use Display Info Id"
|
||||
--[[Translation missing --]]
|
||||
L["Use SetTransform"] = "Use SetTransform"
|
||||
--[[Translation missing --]]
|
||||
L["Use Texture"] = "Use Texture"
|
||||
--[[Translation missing --]]
|
||||
L["Used in Auras:"] = "Used in Auras:"
|
||||
--[[Translation missing --]]
|
||||
L["Used in auras:"] = "Used in auras:"
|
||||
--[[Translation missing --]]
|
||||
L["Uses Texture Coordinates to rotate the texture."] = "Uses Texture Coordinates to rotate the texture."
|
||||
--[[Translation missing --]]
|
||||
L["Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."] = "Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Value"] = "Value"
|
||||
@@ -1536,7 +1354,6 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["What do you want to do?"] = "What do you want to do?"
|
||||
--[[Translation missing --]]
|
||||
L["Whole Area"] = "Whole Area"
|
||||
L["Width"] = "Breite"
|
||||
--[[Translation missing --]]
|
||||
L["wrapping"] = "wrapping"
|
||||
L["X Offset"] = "X-Versatz"
|
||||
@@ -1544,14 +1361,12 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["X Scale"] = "Skalierung (X)"
|
||||
--[[Translation missing --]]
|
||||
L["x-Offset"] = "x-Offset"
|
||||
L["X-Offset"] = "X-Versatz"
|
||||
L["Y Offset"] = "Y-Versatz"
|
||||
L["Y Rotation"] = "Y-Rotation"
|
||||
L["Y Scale"] = "Skalierung (Y)"
|
||||
L["Yellow Rune"] = "Gelbe Rune"
|
||||
--[[Translation missing --]]
|
||||
L["y-Offset"] = "y-Offset"
|
||||
L["Y-Offset"] = "Y-Versatz"
|
||||
--[[Translation missing --]]
|
||||
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?"] = "Du bist im Begriff %d Aura/Auren zu löschen. |cFFFF0000Das Löschen kann nicht rückgängig gemacht werden!|r Willst du fortfahren?"
|
||||
@@ -1575,7 +1390,6 @@ WeakAuras will always run custom grow code if you include 'changed' in this list
|
||||
L["Your Saved Snippets"] = "Your Saved Snippets"
|
||||
L["Z Offset"] = "Z-Versatz"
|
||||
L["Z Rotation"] = "Z-Rotation"
|
||||
L["Zoom"] = "Zoom"
|
||||
L["Zoom In"] = "Einzoomen"
|
||||
L["Zoom Out"] = "Auszoomen"
|
||||
|
||||
|
||||
@@ -113,10 +113,8 @@ local L = WeakAuras.L
|
||||
Enable this setting if you want this timer to be hidden, or when using a WeakAuras text to display the timer]=] ] = "Un temporizador se mostrará automáticamente de acuerdo con la configuración predeterminada de la interfaz (anulada por algunos addons). Activa esta opción si quieres que el temporizador esté oculto, o cuando utilices un texto de WeakAuras para mostrar el temporizador."
|
||||
L["A Unit ID (e.g., party1)."] = "Una ID de unidad (ej., party1)."
|
||||
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
|
||||
L["Actions"] = "Acciones"
|
||||
L["Active Aura Filters and Info"] = "Información y filtros del aura activa"
|
||||
L["Actual Spec"] = "Especialización actual"
|
||||
L["Add"] = "Añadir"
|
||||
L["Add %s"] = "Añadir %s"
|
||||
L["Add a new display"] = "Añadir una nueva aura"
|
||||
L["Add Condition"] = "Añadir condición"
|
||||
@@ -139,13 +137,12 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["All maintainers of the libraries we use, especially:"] = "Todos los responsables del mantenimiento de las bibliotecas que utilizamos, especialmente:"
|
||||
L["All of"] = "Todo"
|
||||
L["Allow Full Rotation"] = "Permitir rotación completa"
|
||||
L["Alpha"] = "Transparencia"
|
||||
L["Anchor"] = "Ancla"
|
||||
L["Anchor Mode"] = "Modo de anclaje"
|
||||
L["Anchor Point"] = "Punto de anclaje"
|
||||
L["Anchored To"] = "Anclado a"
|
||||
L["and"] = "y"
|
||||
L["And "] = "y"
|
||||
L["and"] = "y"
|
||||
L["and %s"] = "y %s"
|
||||
L["and aligned left"] = "y alineado a la izquierda"
|
||||
L["and aligned right"] = "y alineado a la derecha"
|
||||
@@ -169,7 +166,6 @@ Si la duración de la animación es |cFF00CC0010%|r, y el disparador del aura es
|
||||
]=]
|
||||
L["Animation Sequence"] = "Secuencia de Animación"
|
||||
L["Animation Start"] = "Inicio de la animación"
|
||||
L["Animations"] = "Animaciones"
|
||||
L["Any of"] = "Cualquiera de"
|
||||
L["Apply Template"] = "Aplicar plantilla"
|
||||
L["Arcane Orb"] = "Orbe arcano"
|
||||
@@ -178,38 +174,27 @@ Si la duración de la animación es |cFF00CC0010%|r, y el disparador del aura es
|
||||
L["At a position a bit left of Right HUD position"] = "En una posición un poco a la izquierda de la posición derecha del HUD"
|
||||
L["At the same position as Blizzard's spell alert"] = "En la misma posición que la alerta de hechizo de Blizzard"
|
||||
L["Attach to Foreground"] = "Adjuntar al primer plano"
|
||||
L["Aura"] = "Aura"
|
||||
L[ [=[Aura is
|
||||
Off Screen]=] ] = "El aura está fuera de la pantalla"
|
||||
L["Aura Name"] = "Nombre de aura"
|
||||
L["Aura Name Pattern"] = "Patrón del nombre del aura"
|
||||
L["Aura Order"] = "Orden de auras"
|
||||
L["Aura received from: %s"] = "Aura recibida de: %s"
|
||||
L["Aura Type"] = "Tipo de aura"
|
||||
L["Aura: '%s'"] = "Aura: '%s'"
|
||||
L["Author Options"] = "Opciones de autor"
|
||||
L["Auto-Clone (Show All Matches)"] = "Autoclonar (mostrar todas las coincidencias)"
|
||||
L["Automatic"] = "Automático"
|
||||
L["Automatic length"] = "Longitud automática"
|
||||
L["Available Voices are system specific"] = "Las voces disponibles son específicas del sistema"
|
||||
L["Backdrop Color"] = "Color de fondo"
|
||||
L["Backdrop in Front"] = "Fondo delante"
|
||||
L["Backdrop Style"] = "Estilo de fondo"
|
||||
L["Background"] = "Fondo"
|
||||
L["Background Color"] = "Color de Fondo"
|
||||
L["Background Inner"] = "Fondo interior"
|
||||
L["Background Offset"] = "Desplazamiento del Fondo"
|
||||
L["Background Texture"] = "Textura del Fondo"
|
||||
L["Bar Alpha"] = "Transparencia de la barra"
|
||||
L["Bar Color Settings"] = "Configuración de color de barra"
|
||||
L["Bar Color/Gradient Start"] = "Color de la barra/Inicio del degradado"
|
||||
L["Bar Texture"] = "Textura de la Barra"
|
||||
L["Big Icon"] = "Icono grande"
|
||||
L["Blend Mode"] = "Modo de mezcla"
|
||||
L["Blizzard Cooldown Reduction"] = "Reducción de reutilización de Blizzard"
|
||||
L["Blue Rune"] = "Runa azul"
|
||||
L["Blue Sparkle Orb"] = "Orbe de brillo azul"
|
||||
L["Border"] = "Borde"
|
||||
L["Border %s"] = "Borde %s"
|
||||
L["Border Anchor"] = "Ancla del borde"
|
||||
L["Border Color"] = "Color de borde"
|
||||
@@ -219,34 +204,26 @@ Off Screen]=] ] = "El aura está fuera de la pantalla"
|
||||
L["Border Settings"] = "Configuración de bordes"
|
||||
L["Border Size"] = "Tamaño del borde"
|
||||
L["Border Style"] = "Estilo de borde"
|
||||
L["Bottom"] = "Abajo"
|
||||
L["Bottom Left"] = "Abajo a la izquierda"
|
||||
L["Bottom Right"] = "Abajo a la derecha"
|
||||
L["Bracket Matching"] = "Coincidencia de soportes"
|
||||
L["Browse Wago, the largest collection of auras."] = "Explora Wago, la mayor colección de 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."] = "Por defecto, esto muestra la información del disparador seleccionado a través de información dinámica. La información de un disparador específico puede mostrarse mediante, por ejemplo, %2.p."
|
||||
L["Can be a UID (e.g., party1)."] = "Puede ser un UID (por ejemplo, party1)."
|
||||
L["Can set to 0 if Columns * Width equal File Width"] = "Puede ponerse a 0 si Columnas * Anchura es igual a Anchura de fila"
|
||||
L["Can set to 0 if Rows * Height equal File Height"] = "Puede ponerse a 0 si Filas * Altura es igual a Altura de fila"
|
||||
L["Cancel"] = "Cancelar"
|
||||
L["Case Insensitive"] = "Insensible a mayúsculas/minúsculas"
|
||||
L["Cast by a Player Character"] = "Lanzado por un personaje de jugador"
|
||||
L["Categories to Update"] = "Categorías a actualizar"
|
||||
L["Center"] = "Centro"
|
||||
L["Changelog"] = "Registro de cambios"
|
||||
L["Chat Message"] = "Mensaje del chat"
|
||||
L["Chat with WeakAuras experts on our Discord server."] = "Chatea con los expertos de WeakAuras en nuestro servidor Discord."
|
||||
L["Check On..."] = "Chequear..."
|
||||
L["Check out our wiki for a large collection of examples and snippets."] = "Consulta nuestra wiki para ver una amplia colección de ejemplos y snippets."
|
||||
L["Children:"] = "Hijo:"
|
||||
L["Choose"] = "Escoger"
|
||||
L["Circular Texture %s"] = "Textura circular de %s"
|
||||
L["Class"] = "Clase"
|
||||
L["Clear Debug Logs"] = "Borrar registros de depuración"
|
||||
L["Clear Saved Data"] = "Borrar datos guardados"
|
||||
L["Clip Overlays"] = "Superposiciones recortadas"
|
||||
L["Clipped by Foreground"] = "Recortado por el primer plano"
|
||||
L["Clockwise"] = "En sentido horario"
|
||||
L["Close"] = "Cerrar"
|
||||
L["Code Editor"] = "Editor de código"
|
||||
L["Collapse"] = "Contraer"
|
||||
@@ -255,7 +232,6 @@ Off Screen]=] ] = "El aura está fuera de la pantalla"
|
||||
L["Collapse all pending Import"] = "Contraer todas las importaciones pendientes"
|
||||
L["Collapsible Group"] = "Grupo contraíble"
|
||||
L["color"] = "color"
|
||||
L["Color"] = "Color"
|
||||
L["Column Height"] = "Altura de columna"
|
||||
L["Column Space"] = "Espacio de columna"
|
||||
L["Columns"] = "Columnas"
|
||||
@@ -266,47 +242,32 @@ Off Screen]=] ] = "El aura está fuera de la pantalla"
|
||||
L["Compare against the number of units affected."] = "Comparar con el número de unidades afectadas."
|
||||
L["Compatibility Options"] = "Opciones de compatibilidad"
|
||||
L["Compress"] = "Comprimir"
|
||||
L["Conditions"] = "Condiciones"
|
||||
L["Configure what options appear on this panel."] = "Configura qué opciones aparecen en este panel."
|
||||
L["Constant Factor"] = "Factor Constante"
|
||||
L["Control-click to select multiple displays"] = "Control clic para seleccionar varias visualizaciones"
|
||||
L["Controls the positioning and configuration of multiple displays at the same time"] = "Controla la posición y configuración de varias auras a la vez"
|
||||
L["Convert to..."] = "Convertir a..."
|
||||
L["Cooldown Numbers might be added by WoW. You can configure these in the game settings."] = "Los números de reutilización pueden ser añadidos por WoW. Puedes configurarlos en los ajustes del juego."
|
||||
L["Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."] = "Reducción de reutilización cambia la duración de los segundos en lugar de mostrar los segundos en tiempo real."
|
||||
L["Copy"] = "Copiar"
|
||||
L["Copy settings..."] = "Copiar configuración..."
|
||||
L["Copy to all auras"] = "Copiar a todas las auras"
|
||||
L["Could not parse '%s'. Expected a table."] = "No se ha podido procesar '%s'. Se esperaba una tabla."
|
||||
L["Count"] = "Contar"
|
||||
L["Counts the number of matches over all units."] = "Cuenta el número de coincidencias en todas las unidades."
|
||||
L["Counts the number of matches per unit."] = "Cuenta el número de coincidencias por unidad."
|
||||
L["Create a Copy"] = "Crear una copia"
|
||||
L["Creating buttons: "] = "Crear pulsadores: "
|
||||
L["Creating options: "] = "Crear opciones: "
|
||||
L["Crop X"] = "Cortar X"
|
||||
L["Crop Y"] = "Cortar Y"
|
||||
L["Custom"] = "Personalizado"
|
||||
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."] = "Personalizado - Te permite definir una función Lua personalizada que devuelve una lista de valores en cadena. %c1 será reemplazado por el primer valor devuelto, %c2 por el segundo, etc."
|
||||
L["Custom Anchor"] = "Ancla personalizada"
|
||||
L["Custom Check"] = "Comprobación personalizada"
|
||||
L["Custom Code"] = "Código Personalizado"
|
||||
L["Custom Code Viewer"] = "Visor de código personalizado"
|
||||
L["Custom Color"] = "Color personalizado"
|
||||
L["Custom Configuration"] = "Configuración personalizada"
|
||||
L["Custom Frames"] = "Marcos personalizados"
|
||||
L["Custom Function"] = "Función personalizada"
|
||||
L["Custom Grow"] = "Crecimiento personalizado"
|
||||
L["Custom Options"] = "Opciones personalizadas"
|
||||
L["Custom Sort"] = "Orden personalizado"
|
||||
L["Custom Trigger"] = "Activador personalizado"
|
||||
L["Custom trigger event tooltip"] = "Información sobre eventos de activador personalizado"
|
||||
L["Custom trigger status tooltip"] = "Información sobre el estado del activador personalizado"
|
||||
L["Custom Trigger: Ignore Lua Errors on OPTIONS event"] = "Activador personalizado: ignorar errores de Lua en el evento OPCIONES"
|
||||
L["Custom Trigger: Send fake events instead of STATUS event"] = "Activador personalizado: enviar eventos falsos en lugar del evento STATUS"
|
||||
L["Custom Untrigger"] = "No-activador personalizado"
|
||||
L["Custom Variables"] = "Variables personalizadas"
|
||||
L["Debuff Type"] = "Tipo de perjuicio"
|
||||
L["Debug Log"] = "Registro de depuración"
|
||||
L["Debug Log:"] = "Registro de depuración:"
|
||||
L["Default"] = "Por defecto"
|
||||
@@ -317,14 +278,10 @@ Off Screen]=] ] = "El aura está fuera de la pantalla"
|
||||
L["Delete children and group"] = "Eliminar grupo e hijos"
|
||||
L["Delete Entry"] = "Eliminar entrada"
|
||||
L["Deleting auras: "] = "Eliminando auras:"
|
||||
L["Desaturate"] = "Desaturar"
|
||||
L["Description"] = "Descripción"
|
||||
L["Description Text"] = "Texto de descripción"
|
||||
L["Determines how many entries can be in the table."] = "Determina cuántas entradas puede haber en la tabla."
|
||||
L["Differences"] = "Diferencias"
|
||||
L["Disabled"] = "Desactivado"
|
||||
L["Disallow Entry Reordering"] = "No permitir la reordenación de entradas"
|
||||
L["Display"] = "Mostrar"
|
||||
L["Display Name"] = "Nombre de visualización"
|
||||
L["Display Text"] = "Mostrar Texto"
|
||||
L["Displays a text, works best in combination with other displays"] = "Muestra un texto, funciona mejor en combinación con otras visualizaciones"
|
||||
@@ -338,7 +295,6 @@ Off Screen]=] ] = "El aura está fuera de la pantalla"
|
||||
L["Drag to move"] = "Arrastra para mover"
|
||||
L["Duplicate"] = "Duplicar"
|
||||
L["Duplicate All"] = "Duplicar todo"
|
||||
L["Duration"] = "Duración"
|
||||
L["Duration (s)"] = "Duración (s)"
|
||||
L["Duration Info"] = "Información de Duración"
|
||||
L["Dynamic Duration"] = "Duración dinámica"
|
||||
@@ -350,7 +306,6 @@ Off Screen]=] ] = "El aura está fuera de la pantalla"
|
||||
L["Dynamic Text Replacements"] = "Reemplazos de texto dinámico"
|
||||
L["Ease Strength"] = "Fuerza"
|
||||
L["Ease type"] = "Tipo"
|
||||
L["Edge"] = "Borde"
|
||||
L["eliding"] = "omitiendo"
|
||||
L["Else If"] = "Si más"
|
||||
L["Else If %s"] = "Más si %s"
|
||||
@@ -377,10 +332,8 @@ Off Screen]=] ] = "El aura está fuera de la pantalla"
|
||||
L["Entry limit"] = "Límite de entrada"
|
||||
L["Entry Name Source"] = "Fuente del nombre de entrada"
|
||||
L["Event Type"] = "Tipo de Evento"
|
||||
L["Event(s)"] = "Evento(s)"
|
||||
L["Everything"] = "Todo"
|
||||
L["Exact Item Match"] = "Coincidencia exacta de objeto"
|
||||
L["Exact Spell ID(s)"] = "ID(s) exacta(s) de hechizo(s)"
|
||||
L["Exact Spell Match"] = "Coincidencia exacta de hechizo"
|
||||
L["Expand"] = "Ampliar"
|
||||
L["Expand all loaded displays"] = "Ampliar todas las auras"
|
||||
@@ -394,11 +347,8 @@ Off Screen]=] ] = "El aura está fuera de la pantalla"
|
||||
L["Extra Height"] = "Altura extra"
|
||||
L["Extra Width"] = "Anchura extra"
|
||||
L["Fade"] = "Apagar"
|
||||
L["Fade In"] = "Fundido de entrada"
|
||||
L["Fade Out"] = "Fundido de salida"
|
||||
L["Fadeout Sound"] = "Sonido de desvanecimiento"
|
||||
L["Fadeout Time (seconds)"] = "Tiempo de desvanecimiento (segundos)"
|
||||
L["False"] = "Falso"
|
||||
L["Fetch Affected/Unaffected Names and Units"] = "Obtener nombres y unidades afectados / no afectados"
|
||||
L["Fetch Raid Mark Information"] = "Obtener información sobre la marca de banda"
|
||||
L["Fetch Role Information"] = "Obtener información del rol"
|
||||
@@ -425,12 +375,7 @@ Bleed classification via LibDispel]=] ] = "Filtrar solo los perjuicios/beneficio
|
||||
L["Finishing..."] = "Finalizando..."
|
||||
L["Fire Orb"] = "Orbe de fuego"
|
||||
L["Flat Framelevels"] = "Niveles de marco plano"
|
||||
L["Font"] = "Fuente"
|
||||
L["Font Size"] = "Tamaño de fuente"
|
||||
L["Foreground"] = "Primer plano"
|
||||
L["Foreground Color"] = "Color Frontal"
|
||||
L["Foreground Texture"] = "Textura Frontal"
|
||||
L["Format"] = "Formato"
|
||||
L["Format for %s"] = "Formato para %s"
|
||||
L["Found a Bug?"] = "¿Has encontrado un error?"
|
||||
L["Frame"] = "Marco"
|
||||
@@ -439,7 +384,6 @@ Bleed classification via LibDispel]=] ] = "Filtrar solo los perjuicios/beneficio
|
||||
L["Frame Rate"] = "Cuadros por segundo"
|
||||
L["Frame Strata"] = "Estrato del marco"
|
||||
L["Frame Width"] = "Anchura de marco"
|
||||
L["Frequency"] = "Frecuencia"
|
||||
L["Full Bar"] = "Barra llena"
|
||||
L["Full Circle"] = "Círculo completo"
|
||||
L["Global Conditions"] = "Condiciones globales"
|
||||
@@ -447,14 +391,10 @@ Bleed classification via LibDispel]=] ] = "Filtrar solo los perjuicios/beneficio
|
||||
L["Glow Action"] = "Acción de Destello"
|
||||
L["Glow Anchor"] = "Ancla de resplandor"
|
||||
L["Glow Color"] = "Color del resplandor"
|
||||
L["Glow External Element"] = "Elemento externo del resplandor"
|
||||
L["Glow Frame Type"] = "Tipo de marco de resplandor"
|
||||
L["Glow Type"] = "Tipo de resplandor"
|
||||
L["Gradient End"] = "Fin del degradado"
|
||||
L["Gradient Orientation"] = "Orientación del degradado"
|
||||
L["Green Rune"] = "Runa verde"
|
||||
L["Grid direction"] = "Dirección de la rejilla"
|
||||
L["Group"] = "Grupo"
|
||||
L["Group (verb)"] = "Grupo (verbo)"
|
||||
L["Group Alpha"] = "Transparencia del grupo"
|
||||
L[ [=[Group and anchor each auras by frame.
|
||||
@@ -482,25 +422,18 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
|
||||
L["Group Role"] = "Rol de grupo"
|
||||
L["Group Scale"] = "Escala de grupo"
|
||||
L["Group Settings"] = "Configuración de grupo"
|
||||
L["Group Type"] = "Tipo de grupo"
|
||||
L["Grow"] = "Crecer"
|
||||
L["Hawk"] = "Halcón"
|
||||
L["Height"] = "Alto"
|
||||
L["Help"] = "Ayuda"
|
||||
L["Hide"] = "Ocultar"
|
||||
L["Hide Background"] = "Ocultar fondo"
|
||||
L["Hide Glows applied by this aura"] = "Ocultar resplandor aplicado por esta aura"
|
||||
L["Hide on"] = "Ocultar en"
|
||||
L["Hide this group's children"] = "Ocultar los hijos de este grupo"
|
||||
L["Hide Timer Text"] = "Ocultar texto del temporizador"
|
||||
L["Highlights"] = "Resaltados"
|
||||
L["Horizontal Align"] = "Alineado Horizontal"
|
||||
L["Horizontal Bar"] = "Barra horizontal"
|
||||
L["Hostility"] = "Hostilidad"
|
||||
L["Huge Icon"] = "Icono enorme"
|
||||
L["Hybrid Position"] = "Posición de híbrido"
|
||||
L["Hybrid Sort Mode"] = "Modo de orden híbrido"
|
||||
L["Icon"] = "Icono"
|
||||
L["Icon - The icon associated with the display"] = "Icono - El icono asociado con la visualización"
|
||||
L["Icon Info"] = "Información del Icono"
|
||||
L["Icon Inset"] = "Interior del Icono"
|
||||
@@ -519,11 +452,8 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
|
||||
L["If checked, then this space will span across multiple lines."] = "Si está marcada, este espacio abarcará varias líneas."
|
||||
L["If unchecked, then a default color will be used (usually yellow)"] = "Si no está marcada, se utilizará un color por defecto (normalmente amarillo)"
|
||||
L["If unchecked, then this space will fill the entire line it is on in User Mode."] = "Si no está marcada, este espacio ocupará toda la línea en la que se encuentre en Modo Usuario."
|
||||
L["Ignore Dead"] = "Ignorar muertos"
|
||||
L["Ignore Disconnected"] = "Ignorar desconectados"
|
||||
L["Ignore out of casting range"] = "Ignorar afuera de alcance"
|
||||
L["Ignore out of checking range"] = "Ignorar fuera de rango de comprobación"
|
||||
L["Ignore Self"] = "Ignorarse a sí mismo"
|
||||
L["Ignore Wago updates"] = "Ignorar actualizaciones de Wago"
|
||||
L["Ignored"] = "Ignorar"
|
||||
L["Ignored Aura Name"] = "Nombre de aura ignorado"
|
||||
@@ -540,11 +470,9 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
|
||||
L["Importing a group with %s child auras."] = "Importando un grupo con %s auras hijas."
|
||||
L["Importing a stand-alone aura."] = "Importar un aura independiente."
|
||||
L["Importing...."] = "Importando...."
|
||||
L["Include Pets"] = "Incluir mascotas"
|
||||
L["Incompatible changes to group region types detected"] = "Se detectaron cambios incompatibles en los tipos de regiones del grupo"
|
||||
L["Incompatible changes to group structure detected"] = "Se detectaron cambios incompatibles en la estructura del grupo"
|
||||
L["Indent Size"] = "Tamaño de sangría"
|
||||
L["Information"] = "Información"
|
||||
L["Inner"] = "Interior"
|
||||
L["Insert text replacement codes to make text dynamic."] = "Insertar códigos de reemplazo de texto para hacer el texto dinámico."
|
||||
L["Invalid Item ID"] = "ID de objeto no válido"
|
||||
@@ -554,7 +482,6 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
|
||||
L["Invalid target aura"] = "Aura objetivo no válida"
|
||||
L["Invalid type for '%s'. Expected 'bool', 'number', 'select', 'string', 'timer' or 'elapsedTimer'."] = "Tipo no válido para '%s'. Se esperaba 'bool', 'number', 'select', 'string', 'timer' o 'elapsedTimer'."
|
||||
L["Invalid type for property '%s' in '%s'. Expected '%s'"] = "Tipo no válido para la propiedad '%s' en '%s'. Se esperaba '%s'."
|
||||
L["Inverse"] = "Inverso"
|
||||
L["Inverse Slant"] = "Invertir inclinación"
|
||||
L["Invert the direction of progress"] = "Invertir la dirección del progreso"
|
||||
L["Is Boss Debuff"] = "Es perjuicio de jefe"
|
||||
@@ -566,47 +493,34 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
|
||||
L["Keep your Wago imports up to date with the Companion App."] = "Mantén tus importaciones de Wago actualizadas con la Companion App."
|
||||
L["Large Input"] = "Entrada grande"
|
||||
L["Leaf"] = "Hoja"
|
||||
L["Left"] = "Izquierda"
|
||||
L["Left 2 HUD position"] = "Posición de HUD izquierda 2"
|
||||
L["Left HUD position"] = "Posición de HUD izquierda"
|
||||
L["Length"] = "Longitud"
|
||||
L["Length of |cFFFF0000%s|r"] = "Longitud de |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["LibSharedMedia"] = "LibSharedMedia"
|
||||
L["Limit"] = "Límite"
|
||||
L["Line"] = "Línea"
|
||||
L["Linear Texture %s"] = "Textura lineal de %s"
|
||||
L["Lines & Particles"] = "Líneas y partículas"
|
||||
L["Linked aura: "] = "Aura vinculada:"
|
||||
L["Load"] = "Cargar"
|
||||
L["Loaded"] = "Cargado"
|
||||
L["Loaded/Standby"] = "Cargado/en espera"
|
||||
L["Lock Positions"] = "Bloquear posiciones"
|
||||
L["Loop"] = "Bucle"
|
||||
L["Low Mana"] = "Maná bajo"
|
||||
L["Magnetically Align"] = "Alineación magnética"
|
||||
L["Main"] = "Principal"
|
||||
L["Manual"] = "Manual"
|
||||
L["Manual Icon"] = "Icono manual"
|
||||
L["Manual with %i/%i"] = "Manual con %i/%i"
|
||||
L["Match Count"] = "Recuento de coincidencia"
|
||||
L["Match Count per Unit"] = "Recuento de coincidencia por unidad"
|
||||
L["Matches the height setting of a horizontal bar or width for a vertical bar."] = "Coincide con la altura de una barra horizontal o la anchura de una barra vertical."
|
||||
L["Max"] = "Máx."
|
||||
L["Max Length"] = "Longitud máx."
|
||||
L["Maximum"] = "Máximo"
|
||||
L["Media Type"] = "Tipo de media"
|
||||
L["Medium Icon"] = "Icono medio"
|
||||
L["Message"] = "Mensaje"
|
||||
L["Message Type"] = "Tipo de mensaje"
|
||||
L["Min"] = "Mín."
|
||||
L["Minimum"] = "Mínimo"
|
||||
L["Mirror"] = "Reflejar"
|
||||
L["Model"] = "Modelo"
|
||||
L["Model %s"] = "Modelo %s"
|
||||
L["Model Picker"] = "Selector de modelo"
|
||||
L["Model Settings"] = "Configuración de modelo"
|
||||
@@ -636,22 +550,18 @@ Sólo un valor coincidente puede ser escogido.]=]
|
||||
L["Name - The name of the display (usually an aura name), or the display's ID if there is no dynamic name"] = "Nombre - El nombre de la visualización (usualmente un nombre de aura), o el ID de la visualización si no hay un nombre dinámico"
|
||||
L["Name Info"] = "Información del Nombre"
|
||||
L["Name Pattern Match"] = "Coincidencia de patrón de nombre"
|
||||
L["Name(s)"] = "Nombre(s)"
|
||||
L["Name:"] = "Nombre:"
|
||||
L["Nameplates"] = "Placas"
|
||||
L["Negator"] = "Negar"
|
||||
L["New Aura"] = "Nueva aura"
|
||||
L["New Template"] = "Nueva plantilla"
|
||||
L["New Value"] = "Nuevo valor"
|
||||
L["No Children"] = "Sin dependientes"
|
||||
L["No Logs saved."] = "No hay registros guardados."
|
||||
L["None"] = "Ninguno"
|
||||
L["Not a table"] = "No es una tabla"
|
||||
L["Not all children have the same value for this option"] = "No todos los hijos contienen la misma configuración."
|
||||
L["Not Loaded"] = "No cargado"
|
||||
L["Note: Automated Messages to SAY and YELL are blocked outside of Instances."] = "Nota: los mensajes automáticos para DECIR y GRITAR están bloqueados fuera de las instancias."
|
||||
L["Note: This progress source does not provide a total value/duration. A total value/duration must be set via \"Set Maximum Progress\""] = "Nota: Esta fuente de progreso no proporciona un valor/duración total. Se debe establecer un valor/duración total mediante \"Establecer progreso máximo\"."
|
||||
L["Npc ID"] = "ID de pnj"
|
||||
L["Number of Entries"] = "Número de entradas"
|
||||
L[ [=[Occurrence of the event, reset when aura is unloaded
|
||||
Can be a range of values
|
||||
@@ -683,10 +593,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["or"] = "o"
|
||||
L["or %s"] = "o %s"
|
||||
L["Orange Rune"] = "Runa naranja"
|
||||
L["Orientation"] = "Orientación"
|
||||
L["Our translators (too many to name)"] = "Nuestros traductores (demasiados para nombrar)"
|
||||
L["Outer"] = "Exterior"
|
||||
L["Outline"] = "Contorno"
|
||||
L["Overflow"] = "Desbordamiento"
|
||||
L["Overlay %s Info"] = "Información de superposición %s"
|
||||
L["Overlays"] = "Superposiciones"
|
||||
@@ -710,7 +618,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Premade Auras"] = "Auras prediseñadas"
|
||||
L["Premade Snippets"] = "Snippets prefabricados"
|
||||
L["Preparing auras: "] = "Preparando auras:"
|
||||
L["Preset"] = "Preestablecido"
|
||||
L["Press Ctrl+C to copy"] = "Pulsa Ctrl+C para copiar"
|
||||
L["Press Ctrl+C to copy the URL"] = "Pulsa Ctrl+C para copiar la URL"
|
||||
L["Prevent Merging"] = "Evitar la fusión"
|
||||
@@ -718,13 +625,10 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Progress Bar"] = "Barra de progreso"
|
||||
L["Progress Bar Settings"] = "Configuración de la barra de progreso"
|
||||
L["Progress Settings"] = "Configuración de progreso"
|
||||
L["Progress Source"] = "Fuente de progreso"
|
||||
L["Progress Texture"] = "Textura de progreso"
|
||||
L["Progress Texture Settings"] = "Configuración de textura de progreso"
|
||||
L["Purple Rune"] = "Runa morada"
|
||||
L["Put this display in a group"] = "Pon esta visualización en un grupo."
|
||||
L["Radius"] = "Radio"
|
||||
L["Raid Role"] = "Rol de banda"
|
||||
L["Range in yards"] = "Rango en yardas"
|
||||
L["Ready for Install"] = "Listo para instalar"
|
||||
L["Ready for Update"] = "Listo para actualizar"
|
||||
@@ -732,7 +636,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Re-center Y"] = "Re-centrar Y"
|
||||
L["Reciprocal TRIGGER:# requests will be ignored!"] = "ACTIVADOR recíproco: # solicitudes serán ignoradas."
|
||||
L["Regions of type \"%s\" are not supported."] = "Las regiones del tipo \"%s\" no son compatibles."
|
||||
L["Remaining Time"] = "Tiempo restante"
|
||||
L["Remove"] = "Eliminar"
|
||||
L["Remove All Sounds"] = "Eliminar todos los sonidos"
|
||||
L["Remove All Text To Speech"] = "Eliminar todo el texto a voz"
|
||||
@@ -749,7 +652,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Reset all options to their default values."] = "Restablece todas las opciones a sus valores por defecto."
|
||||
L["Reset Entry"] = "Restablecer entrada"
|
||||
L["Reset to Defaults"] = "Restablecer valores"
|
||||
L["Right"] = "Derecho"
|
||||
L["Right 2 HUD position"] = "Posición de HUD derecha 2"
|
||||
L["Right HUD position"] = "Posición de HUD derecha"
|
||||
L["Right-click for more options"] = "Clic derecho para más opciones"
|
||||
@@ -757,7 +659,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Rotate In"] = "Rotar"
|
||||
L["Rotate Out"] = "Rotar"
|
||||
L["Rotate Text"] = "Rotar Texto"
|
||||
L["Rotation"] = "Rotación"
|
||||
L["Rotation Mode"] = "Modo de rotación"
|
||||
L["Row Space"] = "Espacio de fila"
|
||||
L["Row Width"] = "Anchura de fila"
|
||||
@@ -766,7 +667,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Same"] = "Igual"
|
||||
L["Same texture as Foreground"] = "Misma textura que primer plano"
|
||||
L["Saved Data"] = "Datos guardados"
|
||||
L["Scale"] = "Escala"
|
||||
L["Scale Factor"] = "Factor de escala"
|
||||
L["Search API"] = "API de búsqueda"
|
||||
L["Select Talent"] = "Seleccionar talento"
|
||||
@@ -799,7 +699,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Show Matches for Units"] = "Mostrar coincidencias para unidades"
|
||||
L["Show Model"] = "Mostrar modelo"
|
||||
L["Show model of unit "] = "Mostrar modelo de la unidad"
|
||||
L["Show On"] = "Mostrar en"
|
||||
L["Show Sound Setting"] = "Mostrar configuración de sonido"
|
||||
L["Show Spark"] = "Mostrar chispa"
|
||||
L["Show Stop Motion"] = "Mostrar stop motion"
|
||||
@@ -823,7 +722,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Shows a texture that changes based on duration"] = "Muestra una textura que cambia con el tiempo"
|
||||
L["Shows nothing, except sub elements"] = "No muestra nada, excepto los subelementos"
|
||||
L["Shows one or more lines of text, which can include dynamic information such as progress or stacks"] = "Muestra una o varias líneas de texto, que pueden incluir información dinámica como el progreso o las acumulaciones."
|
||||
L["Simple"] = "Simple"
|
||||
L["Size"] = "Tamaño"
|
||||
L["Slant Amount"] = "Cantidad inclinada"
|
||||
L["Slant Mode"] = "Modo inclinado"
|
||||
@@ -838,24 +736,15 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Soft Max"] = "Máx. flexible"
|
||||
L["Soft Min"] = "Mín. flexible"
|
||||
L["Sort"] = "Ordenar"
|
||||
L["Sound"] = "Sonido"
|
||||
L["Sound by Kit ID"] = "Sonido por ID de kit"
|
||||
L["Sound Channel"] = "Canal de Sonido"
|
||||
L["Sound File Path"] = "Ruta al Fichero de Sonido"
|
||||
L["Sound Kit ID"] = "ID del kit de sonido"
|
||||
L["Source"] = "Fuente"
|
||||
L["Space"] = "Espacio"
|
||||
L["Space Horizontally"] = "Espacio Horizontal"
|
||||
L["Space Vertically"] = "Espacio Vertical"
|
||||
L["Spark"] = "Chispa"
|
||||
L["Spark Settings"] = "Configuración de chispa"
|
||||
L["Spark Texture"] = "Textura de chispa"
|
||||
L["Specialization"] = "Especialización"
|
||||
L["Specific Currency ID"] = "ID de moneda específica"
|
||||
L["Specific Unit"] = "Unidad específica"
|
||||
L["Spell ID"] = "ID de Hechizo"
|
||||
L["Spell Selection Filters"] = "Filtros de selección de hechizo"
|
||||
L["Stack Count"] = "Recuento de acumulaciones"
|
||||
L["Stack Info"] = "Información de Acumulaciones"
|
||||
L["Stacks - The number of stacks of an aura (usually)"] = "Acumulaciones - El número de acumulaciones de un aura (usualmente)"
|
||||
L["Stagger"] = "Tambaleo"
|
||||
@@ -863,11 +752,9 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Star"] = "Estrella"
|
||||
L["Start"] = "Empezar"
|
||||
L["Start Angle"] = "Iniciar ángulo"
|
||||
L["Start Animation"] = "Iniciar animación"
|
||||
L["Start Collapsed"] = "Iniciar colapsado"
|
||||
L["Start of %s"] = "Inicio de %s"
|
||||
L["Step Size"] = "Tamaño de paso"
|
||||
L["Stop Motion"] = "Stop Motion"
|
||||
L["Stop Motion %s"] = "Stop motion de %"
|
||||
L["Stop Motion Settings"] = "Configuración de Stop Motion"
|
||||
L["Stop Sound"] = "Detener sonido"
|
||||
@@ -875,19 +762,14 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Sub Option %i"] = "Subopción %i"
|
||||
L["Subevent"] = "Subevento"
|
||||
L["Subevent Suffix"] = "Sufijo de subevento"
|
||||
L["Supports multiple entries, separated by commas"] = "Supports multiple entries, separated by commas"
|
||||
L["Swipe Overlay Settings"] = "Configuración de superposición de barrido"
|
||||
L["Templates could not be loaded, the addon is %s"] = "No se pudieron cargar las plantillas, el addon es %s"
|
||||
L["Temporary Group"] = "Grupo Temporal"
|
||||
L["Text"] = "Texto"
|
||||
L["Text %s"] = "Texto %s"
|
||||
L["Text Color"] = "Color del Texto"
|
||||
L["Text Settings"] = "Configuración de texto"
|
||||
L["Texture"] = "Textura"
|
||||
L["Texture %s"] = "Textura de %"
|
||||
L["Texture Info"] = "Información de textura"
|
||||
L["Texture Picker"] = "Selector de textura"
|
||||
L["Texture Rotation"] = "Rotación de textura"
|
||||
L["Texture Selection Mode"] = "Modo de selección de textura"
|
||||
L["Texture Settings"] = "Configuración de textura"
|
||||
L["Texture Wrap"] = "Envoltura de textura"
|
||||
@@ -905,7 +787,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
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"] = "La versión del addon WeakAuras Options %s no coincide con la versión de WeakAuras %s. Si actualizaste el addon mientras el juego estaba en ejecución, intenta reiniciar World of Warcraft. De lo contrario, intenta reinstalar WeakAuras."
|
||||
L["Then "] = "Entonces"
|
||||
L["There are several special codes available to make this text dynamic. Click to view a list with all dynamic text codes."] = "Hay varios códigos especiales disponibles para hacer que este texto sea dinámico. Haz clic para ver una lista con todos los códigos de texto dinámico."
|
||||
L["Thickness"] = "Espesor"
|
||||
L["This adds %raidMark as text replacements."] = "Esto agrega %raidMark como reemplazos de texto."
|
||||
L["This adds %role, %roleIcon as text replacements. Does nothing if the unit is not a group member."] = "Esto agrega %role, %roleIcon como reemplazos de texto. No hace nada si la unidad no es miembro del grupo."
|
||||
L["This adds %tooltip, %tooltip1, %tooltip2, %tooltip3 and %tooltip4 as text replacements and also allows filtering based on the tooltip content/values."] = "Esto agrega %tooltip, %tooltip1, %tooltip2, %tooltip3 y %tooltip4 como reemplazos de texto y también permite filtrar según el contenido/valores de tooltip."
|
||||
@@ -942,33 +823,23 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Toggle the visibility of all loaded displays"] = "Alterar la visibilidad de todas las auras cargadas"
|
||||
L["Toggle the visibility of all non-loaded displays"] = "Alterar la visibilidad de todas las auras no cargadas"
|
||||
L["Toggle the visibility of this display"] = "Alterar la visibilidad de esta aura"
|
||||
L["Tooltip"] = "Descripción emergente"
|
||||
L["Tooltip Content"] = "Contenido de la descripción emergente"
|
||||
L["Tooltip on Mouseover"] = "Tooltip al pasar el ratón"
|
||||
L["Tooltip Pattern Match"] = "Coincidencia de patrón de tooltip"
|
||||
L["Tooltip Text"] = "Texto de tooltip"
|
||||
L["Tooltip Value"] = "Valor de tooltip"
|
||||
L["Tooltip Value #"] = "Valor # de tooltip"
|
||||
L["Top"] = "Superior"
|
||||
L["Top HUD position"] = "Posición superior de la visualización (HUD)"
|
||||
L["Top Left"] = "Superior izquierda"
|
||||
L["Top Right"] = "Superior derecha"
|
||||
L["Total"] = "Total"
|
||||
L["Total - The maximum duration of a timer, or a maximum non-timer value"] = "Total - La duración máxima de un temporizador, o un valor máximo que no sea de temporizador"
|
||||
L["Total Angle"] = "Ángulo total"
|
||||
L["Total Time"] = "Tiempo total"
|
||||
L["Trigger"] = "Activador"
|
||||
L["Trigger %i"] = "Activador %i"
|
||||
L["Trigger %i: %s"] = "Activador %i:%s"
|
||||
L["Trigger Combination"] = "Combinación de activadores"
|
||||
L["True"] = "Verdad"
|
||||
L["Type"] = "Tipo"
|
||||
L["Type 'select' for '%s' requires a values member'"] = "Tipo 'select' para '%s' requiere un miembro de valores'"
|
||||
L["Ungroup"] = "Desagrupar"
|
||||
L["Unit"] = "Unidad"
|
||||
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "La unidad %s no es una unidad válida para RegisterUnitEvent"
|
||||
L["Unit Count"] = "Recuento de unidad"
|
||||
L["Unit Frames"] = "Marcos de unidad"
|
||||
L["Unknown"] = "Desconocido"
|
||||
L["Unknown Encounter's Spell Id"] = "ID de hechizo de encuentro desconocido"
|
||||
L["Unknown property '%s' found in '%s'"] = "Propiedad desconocida '%s' encontrada en '%s'"
|
||||
@@ -979,14 +850,11 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Update Custom Text On..."] = "Actualizar Texto Personalizado En..."
|
||||
L["URL"] = "URL"
|
||||
L["Url: %s"] = "URL: %s"
|
||||
L["Use Custom Color"] = "Utilizar color personalizado"
|
||||
L["Use Display Info Id"] = "Utilizar ID de información de la visualización"
|
||||
L["Use SetTransform"] = "Utilizar SetTransform"
|
||||
L["Use Texture"] = "Utilizar textura"
|
||||
L["Used in Auras:"] = "Utilizado en auras:"
|
||||
L["Used in auras:"] = "Utilizado en auras:"
|
||||
L["Uses Texture Coordinates to rotate the texture."] = "Utiliza coordenadas de textura para rotar la textura."
|
||||
L["Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."] = "Utiliza UnitInRange() para comprobar si está dentro de alcance. Coincide con el comportamiento predeterminado de los marcos de banda fuera de alcance, que oscila entre 25 y 40 metros dependiendo de tu clase y especialización."
|
||||
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."] = "Utiliza UnitIsVisible() para comprobar si el cliente del juego ha cargado un objeto para esta unidad. Esta distancia es de unos 100 metros. Esto se encuesta cada segundo."
|
||||
L["Value"] = "Valor"
|
||||
L["Value %i"] = "Valor %i"
|
||||
@@ -1005,19 +873,16 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["WeakAuras %s on WoW %s"] = "WeakAuras %s en WoW %s"
|
||||
L["What do you want to do?"] = "¿Qué es lo que quieres hacer?"
|
||||
L["Whole Area"] = "Área completa"
|
||||
L["Width"] = "Ancho"
|
||||
L["wrapping"] = "envolviendo"
|
||||
L["X Offset"] = "Desplazamiento X"
|
||||
L["X Rotation"] = "Rotación X"
|
||||
L["X Scale"] = "X Escala"
|
||||
L["x-Offset"] = "Desplazamiento x"
|
||||
L["X-Offset"] = "Desplazamiento X"
|
||||
L["Y Offset"] = "Desplazamiento Y"
|
||||
L["Y Rotation"] = "Rotación Y"
|
||||
L["Y Scale"] = "Y Escala"
|
||||
L["Yellow Rune"] = "Runa amarilla"
|
||||
L["y-Offset"] = "Desplazamiento y"
|
||||
L["Y-Offset"] = "Desplazamiento Y"
|
||||
L["You already have this group/aura. Importing will create a duplicate."] = "Ya tienes este grupo/aura. La importación creará un duplicado."
|
||||
L["You are about to delete %d aura(s). |cFFFF0000This cannot be undone!|r Would you like to continue?"] = "Estás a punto de eliminar aura(s) %d. |cFFFF0000¡Esto no se puede deshacer!|r ¿Te gustarías continuar?"
|
||||
L["You are about to delete a trigger. |cFFFF0000This cannot be undone!|r Would you like to continue?"] = "Estás a punto de eliminar un activador. |cFFFF0000¡Esto no se puede deshacer!|r ¿Te gustaría continuar?"
|
||||
@@ -1031,7 +896,6 @@ WeakAuras will always run custom grow code if you include 'changed' in this list
|
||||
L["Your Saved Snippets"] = "Tus snippets guardados"
|
||||
L["Z Offset"] = "Desplazamiento Z"
|
||||
L["Z Rotation"] = "Rotación Z"
|
||||
L["Zoom"] = "Ampliación"
|
||||
L["Zoom In"] = "Acercar"
|
||||
L["Zoom Out"] = "Alejar"
|
||||
|
||||
|
||||
@@ -113,10 +113,8 @@ local L = WeakAuras.L
|
||||
Enable this setting if you want this timer to be hidden, or when using a WeakAuras text to display the timer]=] ] = "Un temporizador se mostrará automáticamente de acuerdo con la configuración predeterminada de la interfaz (anulada por algunos addons). Activa esta opción si quieres que el temporizador esté oculto, o cuando utilices un texto de WeakAuras para mostrar el temporizador."
|
||||
L["A Unit ID (e.g., party1)."] = "Una ID de unidad (ej., party1)."
|
||||
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
|
||||
L["Actions"] = "Acciones"
|
||||
L["Active Aura Filters and Info"] = "Información y filtros del aura activa"
|
||||
L["Actual Spec"] = "Especialización actual"
|
||||
L["Add"] = "Añadir"
|
||||
L["Add %s"] = "Añadir %s"
|
||||
L["Add a new display"] = "Añadir una nueva aura"
|
||||
L["Add Condition"] = "Añadir condición"
|
||||
@@ -139,13 +137,12 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["All maintainers of the libraries we use, especially:"] = "Todos los responsables del mantenimiento de las bibliotecas que utilizamos, especialmente:"
|
||||
L["All of"] = "Todo"
|
||||
L["Allow Full Rotation"] = "Permitir rotación completa"
|
||||
L["Alpha"] = "Transparencia"
|
||||
L["Anchor"] = "Ancla"
|
||||
L["Anchor Mode"] = "Modo de anclaje"
|
||||
L["Anchor Point"] = "Punto de anclaje"
|
||||
L["Anchored To"] = "Anclado a"
|
||||
L["and"] = "y"
|
||||
L["And "] = "y"
|
||||
L["and"] = "y"
|
||||
L["and %s"] = "y %s"
|
||||
L["and aligned left"] = "y alineado a la izquierda"
|
||||
L["and aligned right"] = "y alineado a la derecha"
|
||||
@@ -169,7 +166,6 @@ Si la duración de la animación es |cFF00CC0010%|r, y el disparador del aura es
|
||||
]=]
|
||||
L["Animation Sequence"] = "Secuencia de Animación"
|
||||
L["Animation Start"] = "Inicio de la animación"
|
||||
L["Animations"] = "Animaciones"
|
||||
L["Any of"] = "Cualquiera de"
|
||||
L["Apply Template"] = "Aplicar plantilla"
|
||||
L["Arcane Orb"] = "Orbe arcano"
|
||||
@@ -178,38 +174,27 @@ Si la duración de la animación es |cFF00CC0010%|r, y el disparador del aura es
|
||||
L["At a position a bit left of Right HUD position"] = "En una posición un poco a la izquierda de la posición derecha del HUD"
|
||||
L["At the same position as Blizzard's spell alert"] = "En la misma posición que la alerta de hechizo de Blizzard"
|
||||
L["Attach to Foreground"] = "Adjuntar al primer plano"
|
||||
L["Aura"] = "Aura"
|
||||
L[ [=[Aura is
|
||||
Off Screen]=] ] = "Aura está fuera de la pantalla"
|
||||
L["Aura Name"] = "Nombre de aura"
|
||||
L["Aura Name Pattern"] = "Patrón del nombre del aura"
|
||||
L["Aura Order"] = "Orden de auras"
|
||||
L["Aura received from: %s"] = "Aura recibida de: %s"
|
||||
L["Aura Type"] = "Tipo de aura"
|
||||
L["Aura: '%s'"] = "Aura: '%s'"
|
||||
L["Author Options"] = "Opciones de autor"
|
||||
L["Auto-Clone (Show All Matches)"] = "Autoclonar (mostrar todas las coincidencias)"
|
||||
L["Automatic"] = "Automático"
|
||||
L["Automatic length"] = "Longitud automática"
|
||||
L["Available Voices are system specific"] = "Las voces disponibles son específicas del sistema"
|
||||
L["Backdrop Color"] = "Color de fondo"
|
||||
L["Backdrop in Front"] = "Fondo delante"
|
||||
L["Backdrop Style"] = "Estilo de fondo"
|
||||
L["Background"] = "Fondo"
|
||||
L["Background Color"] = "Color de Fondo"
|
||||
L["Background Inner"] = "Fondo interior"
|
||||
L["Background Offset"] = "Desplazamiento del Fondo"
|
||||
L["Background Texture"] = "Textura del Fondo"
|
||||
L["Bar Alpha"] = "Transparencia de la barra"
|
||||
L["Bar Color Settings"] = "Configuración de color de barra"
|
||||
L["Bar Color/Gradient Start"] = "Color de la barra/Inicio del degradado"
|
||||
L["Bar Texture"] = "Textura de la Barra"
|
||||
L["Big Icon"] = "Icono grande"
|
||||
L["Blend Mode"] = "Modo de mezcla"
|
||||
L["Blizzard Cooldown Reduction"] = "Reducción de reutilización de Blizzard"
|
||||
L["Blue Rune"] = "Runa azul"
|
||||
L["Blue Sparkle Orb"] = "Orbe de brillo azul"
|
||||
L["Border"] = "Borde"
|
||||
L["Border %s"] = "Borde %s"
|
||||
L["Border Anchor"] = "Ancla del borde"
|
||||
L["Border Color"] = "Color de borde"
|
||||
@@ -219,34 +204,26 @@ Off Screen]=] ] = "Aura está fuera de la pantalla"
|
||||
L["Border Settings"] = "Configuración de bordes"
|
||||
L["Border Size"] = "Tamaño del borde"
|
||||
L["Border Style"] = "Estilo de borde"
|
||||
L["Bottom"] = "Abajo"
|
||||
L["Bottom Left"] = "Abajo a la izquierda"
|
||||
L["Bottom Right"] = "Abajo a la derecha"
|
||||
L["Bracket Matching"] = "Coincidencia de soportes"
|
||||
L["Browse Wago, the largest collection of auras."] = "Explora Wago, la mayor colección de 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."] = "Por defecto, esto muestra la información del disparador seleccionado a través de información dinámica. La información de un disparador específico puede mostrarse mediante, por ejemplo, %2.p."
|
||||
L["Can be a UID (e.g., party1)."] = "Puede ser un UID (por ejemplo, party1)."
|
||||
L["Can set to 0 if Columns * Width equal File Width"] = "Puede ponerse a 0 si Columnas * Anchura es igual a Anchura de fila"
|
||||
L["Can set to 0 if Rows * Height equal File Height"] = "Puede ponerse a 0 si Filas * Altura es igual a Altura de fila"
|
||||
L["Cancel"] = "Cancelar"
|
||||
L["Case Insensitive"] = "Insensible a mayúsculas/minúsculas"
|
||||
L["Cast by a Player Character"] = "Lanzado por un personaje de jugador"
|
||||
L["Categories to Update"] = "Categorías a actualizar"
|
||||
L["Center"] = "Centro"
|
||||
L["Changelog"] = "Registro de cambios"
|
||||
L["Chat Message"] = "Mensaje del chat"
|
||||
L["Chat with WeakAuras experts on our Discord server."] = "Chatea con los expertos de WeakAuras en nuestro servidor Discord."
|
||||
L["Check On..."] = "Chequear..."
|
||||
L["Check out our wiki for a large collection of examples and snippets."] = "Consulta nuestra wiki para ver una amplia colección de ejemplos y snippets."
|
||||
L["Children:"] = "Hijo:"
|
||||
L["Choose"] = "Escoger"
|
||||
L["Circular Texture %s"] = "Textura circular de %s"
|
||||
L["Class"] = "Clase"
|
||||
L["Clear Debug Logs"] = "Borrar registros de depuración"
|
||||
L["Clear Saved Data"] = "Borrar datos guardados"
|
||||
L["Clip Overlays"] = "Superposiciones recortadas"
|
||||
L["Clipped by Foreground"] = "Recortado por el primer plano"
|
||||
L["Clockwise"] = "En sentido horario"
|
||||
L["Close"] = "Cerrar"
|
||||
L["Code Editor"] = "Editor de código"
|
||||
L["Collapse"] = "Contraer"
|
||||
@@ -254,7 +231,6 @@ Off Screen]=] ] = "Aura está fuera de la pantalla"
|
||||
L["Collapse all non-loaded displays"] = "Contraer todas las auras no cargadas"
|
||||
L["Collapse all pending Import"] = "Contraer todas las importaciones pendientes"
|
||||
L["Collapsible Group"] = "Grupo contraíble"
|
||||
L["Color"] = "Color"
|
||||
L["color"] = "color"
|
||||
L["Column Height"] = "Altura de columna"
|
||||
L["Column Space"] = "Espacio de columna"
|
||||
@@ -266,47 +242,32 @@ Off Screen]=] ] = "Aura está fuera de la pantalla"
|
||||
L["Compare against the number of units affected."] = "Comparar con el número de unidades afectadas."
|
||||
L["Compatibility Options"] = "Opciones de compatibilidad"
|
||||
L["Compress"] = "Comprimir"
|
||||
L["Conditions"] = "Condiciones"
|
||||
L["Configure what options appear on this panel."] = "Configura qué opciones aparecen en este panel."
|
||||
L["Constant Factor"] = "Factor Constante"
|
||||
L["Control-click to select multiple displays"] = "Control clic para seleccionar varias visualizaciones"
|
||||
L["Controls the positioning and configuration of multiple displays at the same time"] = "Controla la posición y configuración de varias auras a la vez"
|
||||
L["Convert to..."] = "Convertir a..."
|
||||
L["Cooldown Numbers might be added by WoW. You can configure these in the game settings."] = "Los números de reutilización pueden ser añadidos por WoW. Puedes configurarlos en los ajustes del juego."
|
||||
L["Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."] = "Reducción de reutilización cambia la duración de los segundos en lugar de mostrar los segundos en tiempo real."
|
||||
L["Copy"] = "Copiar"
|
||||
L["Copy settings..."] = "Copiar configuración..."
|
||||
L["Copy to all auras"] = "Copiar a todas las auras"
|
||||
L["Could not parse '%s'. Expected a table."] = "No se ha podido procesar '%s'. Se esperaba una tabla."
|
||||
L["Count"] = "Contar"
|
||||
L["Counts the number of matches over all units."] = "Cuenta el número de coincidencias en todas las unidades."
|
||||
L["Counts the number of matches per unit."] = "Cuenta el número de coincidencias por unidad."
|
||||
L["Create a Copy"] = "Crear una copia"
|
||||
L["Creating buttons: "] = "Crear pulsadores: "
|
||||
L["Creating options: "] = "Crear opciones: "
|
||||
L["Crop X"] = "Cortar X"
|
||||
L["Crop Y"] = "Cortar Y"
|
||||
L["Custom"] = "Personalizado"
|
||||
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."] = "Personalizado - Te permite definir una función Lua personalizada que devuelve una lista de valores en cadena. %c1 será reemplazado por el primer valor devuelto, %c2 por el segundo, etc."
|
||||
L["Custom Anchor"] = "Ancla personalizada"
|
||||
L["Custom Check"] = "Comprobación personalizada"
|
||||
L["Custom Code"] = "Código Personalizado"
|
||||
L["Custom Code Viewer"] = "Visor de código personalizado"
|
||||
L["Custom Color"] = "Color personalizado"
|
||||
L["Custom Configuration"] = "Configuración personalizada"
|
||||
L["Custom Frames"] = "Marcos personalizados"
|
||||
L["Custom Function"] = "Función personalizada"
|
||||
L["Custom Grow"] = "Crecimiento personalizado"
|
||||
L["Custom Options"] = "Opciones personalizadas"
|
||||
L["Custom Sort"] = "Orden personalizado"
|
||||
L["Custom Trigger"] = "Activador personalizado"
|
||||
L["Custom trigger event tooltip"] = "Información sobre eventos de activador personalizado"
|
||||
L["Custom trigger status tooltip"] = "Información sobre el estado del activador personalizado"
|
||||
L["Custom Trigger: Ignore Lua Errors on OPTIONS event"] = "Activador personalizado: ignorar errores de Lua en el evento OPCIONES"
|
||||
L["Custom Trigger: Send fake events instead of STATUS event"] = "Activador personalizado: enviar eventos falsos en lugar del evento STATUS"
|
||||
L["Custom Untrigger"] = "No-activador personalizado"
|
||||
L["Custom Variables"] = "Variables personalizadas"
|
||||
L["Debuff Type"] = "Tipo de perjuicio"
|
||||
L["Debug Log"] = "Registro de depuración"
|
||||
L["Debug Log:"] = "Registro de depuración:"
|
||||
L["Default"] = "Por defecto"
|
||||
@@ -317,14 +278,10 @@ Off Screen]=] ] = "Aura está fuera de la pantalla"
|
||||
L["Delete children and group"] = "Eliminar grupo e hijos"
|
||||
L["Delete Entry"] = "Eliminar entrada"
|
||||
L["Deleting auras: "] = "Eliminando auras:"
|
||||
L["Desaturate"] = "Desaturar"
|
||||
L["Description"] = "Descripción"
|
||||
L["Description Text"] = "Texto de descripción"
|
||||
L["Determines how many entries can be in the table."] = "Determina cuántas entradas puede haber en la tabla."
|
||||
L["Differences"] = "Diferencias"
|
||||
L["Disabled"] = "Desactivado"
|
||||
L["Disallow Entry Reordering"] = "No permitir la reordenación de entradas"
|
||||
L["Display"] = "Mostrar"
|
||||
L["Display Name"] = "Nombre de visualización"
|
||||
L["Display Text"] = "Mostrar Texto"
|
||||
L["Displays a text, works best in combination with other displays"] = "Muestra un texto, funciona mejor en combinación con otras visualizaciones"
|
||||
@@ -338,7 +295,6 @@ Off Screen]=] ] = "Aura está fuera de la pantalla"
|
||||
L["Drag to move"] = "Arrastra para mover"
|
||||
L["Duplicate"] = "Duplicar"
|
||||
L["Duplicate All"] = "Duplicar todo"
|
||||
L["Duration"] = "Duración"
|
||||
L["Duration (s)"] = "Duración (s)"
|
||||
L["Duration Info"] = "Información de Duración"
|
||||
L["Dynamic Duration"] = "Duración dinámica"
|
||||
@@ -350,7 +306,6 @@ Off Screen]=] ] = "Aura está fuera de la pantalla"
|
||||
L["Dynamic Text Replacements"] = "Reemplazos de texto dinámico"
|
||||
L["Ease Strength"] = "Fuerza"
|
||||
L["Ease type"] = "Tipo"
|
||||
L["Edge"] = "Borde"
|
||||
L["eliding"] = "omitiendo"
|
||||
L["Else If"] = "Si más"
|
||||
L["Else If %s"] = "Más si %s"
|
||||
@@ -377,10 +332,8 @@ Off Screen]=] ] = "Aura está fuera de la pantalla"
|
||||
L["Entry limit"] = "Límite de entrada"
|
||||
L["Entry Name Source"] = "Fuente del nombre de entrada"
|
||||
L["Event Type"] = "Tipo de Evento"
|
||||
L["Event(s)"] = "Evento(s)"
|
||||
L["Everything"] = "Todo"
|
||||
L["Exact Item Match"] = "Coincidencia exacta de objeto"
|
||||
L["Exact Spell ID(s)"] = "ID(s) exacta(s) de hechizo(s)"
|
||||
L["Exact Spell Match"] = "Coincidencia exacta de hechizo"
|
||||
L["Expand"] = "Ampliar"
|
||||
L["Expand all loaded displays"] = "Ampliar todas las auras"
|
||||
@@ -394,11 +347,8 @@ Off Screen]=] ] = "Aura está fuera de la pantalla"
|
||||
L["Extra Height"] = "Altura extra"
|
||||
L["Extra Width"] = "Anchura extra"
|
||||
L["Fade"] = "Apagar"
|
||||
L["Fade In"] = "Fundido de entrada"
|
||||
L["Fade Out"] = "Fundido de salida"
|
||||
L["Fadeout Sound"] = "Sonido de desvanecimiento"
|
||||
L["Fadeout Time (seconds)"] = "Tiempo de desvanecimiento (segundos)"
|
||||
L["False"] = "Falso"
|
||||
L["Fetch Affected/Unaffected Names and Units"] = "Obtener nombres y unidades afectados / no afectados"
|
||||
L["Fetch Raid Mark Information"] = "Obtener información sobre la marca de banda"
|
||||
L["Fetch Role Information"] = "Obtener información del rol"
|
||||
@@ -425,12 +375,7 @@ Bleed classification via LibDispel]=] ] = "Filtrar solo los perjuicios/beneficio
|
||||
L["Finishing..."] = "Finalizando..."
|
||||
L["Fire Orb"] = "Orbe de fuego"
|
||||
L["Flat Framelevels"] = "Niveles de marco plano"
|
||||
L["Font"] = "Fuente"
|
||||
L["Font Size"] = "Tamaño de fuente"
|
||||
L["Foreground"] = "Primer plano"
|
||||
L["Foreground Color"] = "Color Frontal"
|
||||
L["Foreground Texture"] = "Textura Frontal"
|
||||
L["Format"] = "Formato"
|
||||
L["Format for %s"] = "Formato para %s"
|
||||
L["Found a Bug?"] = "¿Has encontrado un error?"
|
||||
L["Frame"] = "Marco"
|
||||
@@ -439,7 +384,6 @@ Bleed classification via LibDispel]=] ] = "Filtrar solo los perjuicios/beneficio
|
||||
L["Frame Rate"] = "Cuadros por segundo"
|
||||
L["Frame Strata"] = "Estrato del marco"
|
||||
L["Frame Width"] = "Anchura de marco"
|
||||
L["Frequency"] = "Frecuencia"
|
||||
L["Full Bar"] = "Barra llena"
|
||||
L["Full Circle"] = "Círculo completo"
|
||||
L["Global Conditions"] = "Condiciones globales"
|
||||
@@ -447,14 +391,10 @@ Bleed classification via LibDispel]=] ] = "Filtrar solo los perjuicios/beneficio
|
||||
L["Glow Action"] = "Acción de Destello"
|
||||
L["Glow Anchor"] = "Ancla de resplandor"
|
||||
L["Glow Color"] = "Color del resplandor"
|
||||
L["Glow External Element"] = "Elemento externo del resplandor"
|
||||
L["Glow Frame Type"] = "Tipo de marco de resplandor"
|
||||
L["Glow Type"] = "Tipo de resplandor"
|
||||
L["Gradient End"] = "Fin del degradado"
|
||||
L["Gradient Orientation"] = "Orientación del degradado"
|
||||
L["Green Rune"] = "Runa verde"
|
||||
L["Grid direction"] = "Dirección de la rejilla"
|
||||
L["Group"] = "Grupo"
|
||||
L["Group (verb)"] = "Grupo (verbo)"
|
||||
L["Group Alpha"] = "Transparencia del grupo"
|
||||
L[ [=[Group and anchor each auras by frame.
|
||||
@@ -482,25 +422,18 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
|
||||
L["Group Role"] = "Rol de grupo"
|
||||
L["Group Scale"] = "Escala de grupo"
|
||||
L["Group Settings"] = "Configuración de grupo"
|
||||
L["Group Type"] = "Tipo de grupo"
|
||||
L["Grow"] = "Crecer"
|
||||
L["Hawk"] = "Halcón"
|
||||
L["Height"] = "Alto"
|
||||
L["Help"] = "Ayuda"
|
||||
L["Hide"] = "Ocultar"
|
||||
L["Hide Background"] = "Ocultar fondo"
|
||||
L["Hide Glows applied by this aura"] = "Ocultar resplandor aplicado por esta aura"
|
||||
L["Hide on"] = "Ocultar en"
|
||||
L["Hide this group's children"] = "Ocultar los hijos de este grupo"
|
||||
L["Hide Timer Text"] = "Ocultar texto del temporizador"
|
||||
L["Highlights"] = "Resaltados"
|
||||
L["Horizontal Align"] = "Alineado Horizontal"
|
||||
L["Horizontal Bar"] = "Barra horizontal"
|
||||
L["Hostility"] = "Hostilidad"
|
||||
L["Huge Icon"] = "Icono enorme"
|
||||
L["Hybrid Position"] = "Posición de híbrido"
|
||||
L["Hybrid Sort Mode"] = "Modo de orden híbrido"
|
||||
L["Icon"] = "Icono"
|
||||
L["Icon - The icon associated with the display"] = "Icono - El icono asociado con la visualización"
|
||||
L["Icon Info"] = "Información del Icono"
|
||||
L["Icon Inset"] = "Interior del Icono"
|
||||
@@ -519,11 +452,8 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
|
||||
L["If checked, then this space will span across multiple lines."] = "Si está marcada, este espacio abarcará varias líneas."
|
||||
L["If unchecked, then a default color will be used (usually yellow)"] = "Si no está marcada, se utilizará un color por defecto (normalmente amarillo)"
|
||||
L["If unchecked, then this space will fill the entire line it is on in User Mode."] = "Si no está marcada, este espacio ocupará toda la línea en la que se encuentre en Modo Usuario."
|
||||
L["Ignore Dead"] = "Ignorar muertos"
|
||||
L["Ignore Disconnected"] = "Ignorar desconectados"
|
||||
L["Ignore out of casting range"] = "Ignorar afuera de alcance"
|
||||
L["Ignore out of checking range"] = "Ignorar fuera de rango de comprobación"
|
||||
L["Ignore Self"] = "Ignorarse a sí mismo"
|
||||
L["Ignore Wago updates"] = "Ignorar actualizaciones de Wago"
|
||||
L["Ignored"] = "Ignorar"
|
||||
L["Ignored Aura Name"] = "Nombre de aura ignorado"
|
||||
@@ -540,11 +470,9 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
|
||||
L["Importing a group with %s child auras."] = "Importando un grupo con %s auras hijas."
|
||||
L["Importing a stand-alone aura."] = "Importar un aura independiente."
|
||||
L["Importing...."] = "Importando...."
|
||||
L["Include Pets"] = "Incluir mascotas"
|
||||
L["Incompatible changes to group region types detected"] = "Se detectaron cambios incompatibles en los tipos de regiones del grupo"
|
||||
L["Incompatible changes to group structure detected"] = "Se detectaron cambios incompatibles en la estructura del grupo"
|
||||
L["Indent Size"] = "Tamaño de sangría"
|
||||
L["Information"] = "Información"
|
||||
L["Inner"] = "Interior"
|
||||
L["Insert text replacement codes to make text dynamic."] = "Insertar códigos de reemplazo de texto para hacer el texto dinámico."
|
||||
L["Invalid Item ID"] = "ID de objeto no válido"
|
||||
@@ -554,7 +482,6 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
|
||||
L["Invalid target aura"] = "Aura objetivo no válida"
|
||||
L["Invalid type for '%s'. Expected 'bool', 'number', 'select', 'string', 'timer' or 'elapsedTimer'."] = "Tipo no válido para '%s'. Se esperaba 'bool', 'number', 'select', 'string', 'timer' o 'elapsedTimer'."
|
||||
L["Invalid type for property '%s' in '%s'. Expected '%s'"] = "Tipo no válido para la propiedad '%s' en '%s'. Se esperaba '%s'."
|
||||
L["Inverse"] = "Inverso"
|
||||
L["Inverse Slant"] = "Invertir inclinación"
|
||||
L["Invert the direction of progress"] = "Invertir la dirección del progreso"
|
||||
L["Is Boss Debuff"] = "Es perjuicio de jefe"
|
||||
@@ -566,47 +493,34 @@ Con |cFF00CC00>= 0|r se activará siempre.]=]
|
||||
L["Keep your Wago imports up to date with the Companion App."] = "Mantén tus importaciones de Wago actualizadas con la Companion App."
|
||||
L["Large Input"] = "Entrada grande"
|
||||
L["Leaf"] = "Hoja"
|
||||
L["Left"] = "Izquierda"
|
||||
L["Left 2 HUD position"] = "Posición de HUD izquierda 2"
|
||||
L["Left HUD position"] = "Posición de HUD izquierda"
|
||||
L["Length"] = "Longitud"
|
||||
L["Length of |cFFFF0000%s|r"] = "Longitud de |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["LibSharedMedia"] = "LibSharedMedia"
|
||||
L["Limit"] = "Límite"
|
||||
L["Line"] = "Línea"
|
||||
L["Linear Texture %s"] = "Textura lineal de %s"
|
||||
L["Lines & Particles"] = "Líneas y partículas"
|
||||
L["Linked aura: "] = "Aura vinculada:"
|
||||
L["Load"] = "Cargar"
|
||||
L["Loaded"] = "Cargado"
|
||||
L["Loaded/Standby"] = "Cargado/en espera"
|
||||
L["Lock Positions"] = "Bloquear posiciones"
|
||||
L["Loop"] = "Bucle"
|
||||
L["Low Mana"] = "Maná bajo"
|
||||
L["Magnetically Align"] = "Alineación magnética"
|
||||
L["Main"] = "Principal"
|
||||
L["Manual"] = "Manual"
|
||||
L["Manual Icon"] = "Icono manual"
|
||||
L["Manual with %i/%i"] = "Manual con %i/%i"
|
||||
L["Match Count"] = "Recuento de coincidencia"
|
||||
L["Match Count per Unit"] = "Recuento de coincidencia por unidad"
|
||||
L["Matches the height setting of a horizontal bar or width for a vertical bar."] = "Coincide con la altura de una barra horizontal o la anchura de una barra vertical."
|
||||
L["Max"] = "Máx."
|
||||
L["Max Length"] = "Longitud máx."
|
||||
L["Maximum"] = "Máximo"
|
||||
L["Media Type"] = "Tipo de media"
|
||||
L["Medium Icon"] = "Icono medio"
|
||||
L["Message"] = "Mensaje"
|
||||
L["Message Type"] = "Tipo de mensaje"
|
||||
L["Min"] = "Mín."
|
||||
L["Minimum"] = "Mínimo"
|
||||
L["Mirror"] = "Reflejar"
|
||||
L["Model"] = "Modelo"
|
||||
L["Model %s"] = "Modelo %s"
|
||||
L["Model Picker"] = "Selector de modelo"
|
||||
L["Model Settings"] = "Configuración de modelo"
|
||||
@@ -636,22 +550,18 @@ Sólo un valor coincidente puede ser escogido.]=]
|
||||
L["Name - The name of the display (usually an aura name), or the display's ID if there is no dynamic name"] = "Nombre - El nombre de la visualización (usualmente un nombre de aura), o el ID de la visualización si no hay un nombre dinámico"
|
||||
L["Name Info"] = "Información del Nombre"
|
||||
L["Name Pattern Match"] = "Coincidencia de patrón de nombre"
|
||||
L["Name(s)"] = "Nombre(s)"
|
||||
L["Name:"] = "Nombre:"
|
||||
L["Nameplates"] = "Placas"
|
||||
L["Negator"] = "Negar"
|
||||
L["New Aura"] = "Nueva aura"
|
||||
L["New Template"] = "Nueva plantilla"
|
||||
L["New Value"] = "Nuevo valor"
|
||||
L["No Children"] = "Sin dependientes"
|
||||
L["No Logs saved."] = "No hay registros guardados."
|
||||
L["None"] = "Ninguno"
|
||||
L["Not a table"] = "No es una tabla"
|
||||
L["Not all children have the same value for this option"] = "No todos los hijos contienen la misma configuración."
|
||||
L["Not Loaded"] = "No cargado"
|
||||
L["Note: Automated Messages to SAY and YELL are blocked outside of Instances."] = "Nota: los mensajes automáticos para DECIR y GRITAR están bloqueados fuera de las instancias."
|
||||
L["Note: This progress source does not provide a total value/duration. A total value/duration must be set via \"Set Maximum Progress\""] = "Nota: Esta fuente de progreso no proporciona un valor/duración total. Se debe establecer un valor/duración total mediante \"Establecer progreso máximo\"."
|
||||
L["Npc ID"] = "ID de pnj"
|
||||
L["Number of Entries"] = "Número de entradas"
|
||||
L[ [=[Occurrence of the event, reset when aura is unloaded
|
||||
Can be a range of values
|
||||
@@ -683,10 +593,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["or"] = "o"
|
||||
L["or %s"] = "o %s"
|
||||
L["Orange Rune"] = "Runa naranja"
|
||||
L["Orientation"] = "Orientación"
|
||||
L["Our translators (too many to name)"] = "Nuestros traductores (demasiados para nombrar)"
|
||||
L["Outer"] = "Exterior"
|
||||
L["Outline"] = "Contorno"
|
||||
L["Overflow"] = "Desbordamiento"
|
||||
L["Overlay %s Info"] = "Información de superposición %s"
|
||||
L["Overlays"] = "Superposiciones"
|
||||
@@ -710,7 +618,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Premade Auras"] = "Auras prediseñadas"
|
||||
L["Premade Snippets"] = "Snippets prefabricados"
|
||||
L["Preparing auras: "] = "Preparando auras:"
|
||||
L["Preset"] = "Preestablecido"
|
||||
L["Press Ctrl+C to copy"] = "Pulsa Ctrl+C para copiar"
|
||||
L["Press Ctrl+C to copy the URL"] = "Pulsa Ctrl+C para copiar la URL"
|
||||
L["Prevent Merging"] = "Evitar la fusión"
|
||||
@@ -718,13 +625,10 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Progress Bar"] = "Barra de progreso"
|
||||
L["Progress Bar Settings"] = "Configuración de la barra de progreso"
|
||||
L["Progress Settings"] = "Configuración de progreso"
|
||||
L["Progress Source"] = "Fuente de progreso"
|
||||
L["Progress Texture"] = "Textura de progreso"
|
||||
L["Progress Texture Settings"] = "Configuración de textura de progreso"
|
||||
L["Purple Rune"] = "Runa morada"
|
||||
L["Put this display in a group"] = "Pon esta visualización en un grupo."
|
||||
L["Radius"] = "Radio"
|
||||
L["Raid Role"] = "Rol de banda"
|
||||
L["Range in yards"] = "Rango en yardas"
|
||||
L["Ready for Install"] = "Listo para instalar"
|
||||
L["Ready for Update"] = "Listo para actualizar"
|
||||
@@ -732,7 +636,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Re-center Y"] = "Re-centrar Y"
|
||||
L["Reciprocal TRIGGER:# requests will be ignored!"] = "ACTIVADOR recíproco: # solicitudes serán ignoradas."
|
||||
L["Regions of type \"%s\" are not supported."] = "Las regiones del tipo \"%s\" no son compatibles."
|
||||
L["Remaining Time"] = "Tiempo restante"
|
||||
L["Remove"] = "Eliminar"
|
||||
L["Remove All Sounds"] = "Eliminar todos los sonidos"
|
||||
L["Remove All Text To Speech"] = "Eliminar todo el texto a voz"
|
||||
@@ -749,7 +652,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Reset all options to their default values."] = "Restablece todas las opciones a sus valores por defecto."
|
||||
L["Reset Entry"] = "Restablecer entrada"
|
||||
L["Reset to Defaults"] = "Restablecer valores"
|
||||
L["Right"] = "Derecho"
|
||||
L["Right 2 HUD position"] = "Posición de HUD derecha 2"
|
||||
L["Right HUD position"] = "Posición de HUD derecha"
|
||||
L["Right-click for more options"] = "Clic derecho para más opciones"
|
||||
@@ -757,7 +659,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Rotate In"] = "Rotar"
|
||||
L["Rotate Out"] = "Rotar"
|
||||
L["Rotate Text"] = "Rotar Texto"
|
||||
L["Rotation"] = "Rotación"
|
||||
L["Rotation Mode"] = "Modo de rotación"
|
||||
L["Row Space"] = "Espacio de fila"
|
||||
L["Row Width"] = "Anchura de fila"
|
||||
@@ -766,7 +667,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Same"] = "Igual"
|
||||
L["Same texture as Foreground"] = "Misma textura que primer plano"
|
||||
L["Saved Data"] = "Datos guardados"
|
||||
L["Scale"] = "Escala"
|
||||
L["Scale Factor"] = "Factor de escala"
|
||||
L["Search API"] = "API de búsqueda"
|
||||
L["Select Talent"] = "Seleccionar talento"
|
||||
@@ -799,7 +699,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Show Matches for Units"] = "Mostrar coincidencias para unidades"
|
||||
L["Show Model"] = "Mostrar modelo"
|
||||
L["Show model of unit "] = "Mostrar modelo de la unidad"
|
||||
L["Show On"] = "Mostrar en"
|
||||
L["Show Sound Setting"] = "Mostrar configuración de sonido"
|
||||
L["Show Spark"] = "Mostrar chispa"
|
||||
L["Show Stop Motion"] = "Mostrar stop motion"
|
||||
@@ -823,7 +722,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Shows a texture that changes based on duration"] = "Muestra una textura que cambia con el tiempo"
|
||||
L["Shows nothing, except sub elements"] = "No muestra nada, excepto los subelementos"
|
||||
L["Shows one or more lines of text, which can include dynamic information such as progress or stacks"] = "Muestra una o varias líneas de texto, que pueden incluir información dinámica como el progreso o las acumulaciones."
|
||||
L["Simple"] = "Simple"
|
||||
L["Size"] = "Tamaño"
|
||||
L["Slant Amount"] = "Cantidad inclinada"
|
||||
L["Slant Mode"] = "Modo inclinado"
|
||||
@@ -838,24 +736,15 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Soft Max"] = "Máx. flexible"
|
||||
L["Soft Min"] = "Mín. flexible"
|
||||
L["Sort"] = "Ordenar"
|
||||
L["Sound"] = "Sonido"
|
||||
L["Sound by Kit ID"] = "Sonido por ID de kit"
|
||||
L["Sound Channel"] = "Canal de Sonido"
|
||||
L["Sound File Path"] = "Ruta al Fichero de Sonido"
|
||||
L["Sound Kit ID"] = "ID del kit de sonido"
|
||||
L["Source"] = "Fuente"
|
||||
L["Space"] = "Espacio"
|
||||
L["Space Horizontally"] = "Espacio Horizontal"
|
||||
L["Space Vertically"] = "Espacio Vertical"
|
||||
L["Spark"] = "Chispa"
|
||||
L["Spark Settings"] = "Configuración de chispa"
|
||||
L["Spark Texture"] = "Textura de chispa"
|
||||
L["Specialization"] = "Especialización"
|
||||
L["Specific Currency ID"] = "ID de moneda específica"
|
||||
L["Specific Unit"] = "Unidad específica"
|
||||
L["Spell ID"] = "ID de Hechizo"
|
||||
L["Spell Selection Filters"] = "Filtros de selección de hechizo"
|
||||
L["Stack Count"] = "Recuento de acumulaciones"
|
||||
L["Stack Info"] = "Información de Acumulaciones"
|
||||
L["Stacks - The number of stacks of an aura (usually)"] = "Acumulaciones - El número de acumulaciones de un aura (usualmente)"
|
||||
L["Stagger"] = "Tambaleo"
|
||||
@@ -863,11 +752,9 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Star"] = "Estrella"
|
||||
L["Start"] = "Empezar"
|
||||
L["Start Angle"] = "Iniciar ángulo"
|
||||
L["Start Animation"] = "Iniciar animación"
|
||||
L["Start Collapsed"] = "Iniciar colapsado"
|
||||
L["Start of %s"] = "Inicio de %s"
|
||||
L["Step Size"] = "Tamaño de paso"
|
||||
L["Stop Motion"] = "Stop Motion"
|
||||
L["Stop Motion %s"] = "Stop motion de %"
|
||||
L["Stop Motion Settings"] = "Configuración de Stop Motion"
|
||||
L["Stop Sound"] = "Detener sonido"
|
||||
@@ -875,19 +762,14 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
L["Sub Option %i"] = "Subopción %i"
|
||||
L["Subevent"] = "Subevento"
|
||||
L["Subevent Suffix"] = "Sufijo de subevento"
|
||||
L["Supports multiple entries, separated by commas"] = "Supports multiple entries, separated by commas"
|
||||
L["Swipe Overlay Settings"] = "Configuración de superposición de barrido"
|
||||
L["Templates could not be loaded, the addon is %s"] = "No se pudieron cargar las plantillas, el addon es %s"
|
||||
L["Temporary Group"] = "Grupo Temporal"
|
||||
L["Text"] = "Texto"
|
||||
L["Text %s"] = "Texto %s"
|
||||
L["Text Color"] = "Color del Texto"
|
||||
L["Text Settings"] = "Configuración de texto"
|
||||
L["Texture"] = "Textura"
|
||||
L["Texture %s"] = "Textura de %"
|
||||
L["Texture Info"] = "Información de textura"
|
||||
L["Texture Picker"] = "Selector de textura"
|
||||
L["Texture Rotation"] = "Rotación de textura"
|
||||
L["Texture Selection Mode"] = "Modo de selección de textura"
|
||||
L["Texture Settings"] = "Configuración de textura"
|
||||
L["Texture Wrap"] = "Envoltura de textura"
|
||||
@@ -905,7 +787,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Ocurrencia d
|
||||
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"] = "La versión del addon WeakAuras Options %s no coincide con la versión de WeakAuras %s. Si actualizaste el addon mientras el juego estaba en ejecución, intenta reiniciar World of Warcraft. De lo contrario, intenta reinstalar WeakAuras."
|
||||
L["Then "] = "Entonces"
|
||||
L["There are several special codes available to make this text dynamic. Click to view a list with all dynamic text codes."] = "Hay varios códigos especiales disponibles para hacer que este texto sea dinámico. Haz clic para ver una lista con todos los códigos de texto dinámico."
|
||||
L["Thickness"] = "Espesor"
|
||||
L["This adds %raidMark as text replacements."] = "Esto agrega %raidMark como reemplazos de texto."
|
||||
L["This adds %role, %roleIcon as text replacements. Does nothing if the unit is not a group member."] = "Esto agrega %role, %roleIcon como reemplazos de texto. No hace nada si la unidad no es miembro del grupo."
|
||||
L["This adds %tooltip, %tooltip1, %tooltip2, %tooltip3 and %tooltip4 as text replacements and also allows filtering based on the tooltip content/values."] = "Esto agrega %tooltip, %tooltip1, %tooltip2, %tooltip3 y %tooltip4 como reemplazos de texto y también permite filtrar según el contenido/valores de tooltip."
|
||||
@@ -942,33 +823,23 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Toggle the visibility of all loaded displays"] = "Alterar la visibilidad de todas las auras cargadas"
|
||||
L["Toggle the visibility of all non-loaded displays"] = "Alterar la visibilidad de todas las auras no cargadas"
|
||||
L["Toggle the visibility of this display"] = "Alterar la visibilidad de esta aura"
|
||||
L["Tooltip"] = "Descripción emergente"
|
||||
L["Tooltip Content"] = "Contenido de la descripción emergente"
|
||||
L["Tooltip on Mouseover"] = "Tooltip al pasar el ratón"
|
||||
L["Tooltip Pattern Match"] = "Coincidencia de patrón de tooltip"
|
||||
L["Tooltip Text"] = "Texto de tooltip"
|
||||
L["Tooltip Value"] = "Valor de tooltip"
|
||||
L["Tooltip Value #"] = "Valor # de tooltip"
|
||||
L["Top"] = "Superior"
|
||||
L["Top HUD position"] = "Posición superior de la visualización (HUD)"
|
||||
L["Top Left"] = "Superior izquierda"
|
||||
L["Top Right"] = "Superior derecha"
|
||||
L["Total"] = "Total"
|
||||
L["Total - The maximum duration of a timer, or a maximum non-timer value"] = "Total - La duración máxima de un temporizador, o un valor máximo que no sea de temporizador"
|
||||
L["Total Angle"] = "Ángulo total"
|
||||
L["Total Time"] = "Tiempo total"
|
||||
L["Trigger"] = "Activador"
|
||||
L["Trigger %i"] = "Activador %i"
|
||||
L["Trigger %i: %s"] = "Activador %i:%s"
|
||||
L["Trigger Combination"] = "Combinación de activadores"
|
||||
L["True"] = "Verdad"
|
||||
L["Type"] = "Tipo"
|
||||
L["Type 'select' for '%s' requires a values member'"] = "Tipo 'select' para '%s' requiere un miembro de valores'"
|
||||
L["Ungroup"] = "Desagrupar"
|
||||
L["Unit"] = "Unidad"
|
||||
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "La unidad %s no es una unidad válida para RegisterUnitEvent"
|
||||
L["Unit Count"] = "Recuento de unidad"
|
||||
L["Unit Frames"] = "Marcos de unidad"
|
||||
L["Unknown"] = "Desconocido"
|
||||
L["Unknown Encounter's Spell Id"] = "ID de hechizo de encuentro desconocido"
|
||||
L["Unknown property '%s' found in '%s'"] = "Propiedad desconocida '%s' encontrada en '%s'"
|
||||
@@ -979,14 +850,11 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Update Custom Text On..."] = "Actualizar Texto Personalizado En..."
|
||||
L["URL"] = "URL"
|
||||
L["Url: %s"] = "URL: %s"
|
||||
L["Use Custom Color"] = "Utilizar color personalizado"
|
||||
L["Use Display Info Id"] = "Utilizar ID de información de la visualización"
|
||||
L["Use SetTransform"] = "Utilizar SetTransform"
|
||||
L["Use Texture"] = "Utilizar textura"
|
||||
L["Used in Auras:"] = "Utilizado en auras:"
|
||||
L["Used in auras:"] = "Utilizado en auras:"
|
||||
L["Uses Texture Coordinates to rotate the texture."] = "Utiliza coordenadas de textura para rotar la textura."
|
||||
L["Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."] = "Utiliza UnitInRange() para comprobar si está dentro de alcance. Coincide con el comportamiento predeterminado de los marcos de banda fuera de alcance, que oscila entre 25 y 40 metros dependiendo de tu clase y especialización."
|
||||
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."] = "Utiliza UnitIsVisible() para comprobar si el cliente del juego ha cargado un objeto para esta unidad. Esta distancia es de unos 100 metros. Esto se encuesta cada segundo."
|
||||
L["Value"] = "Valor"
|
||||
L["Value %i"] = "Valor %i"
|
||||
@@ -1005,18 +873,15 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["WeakAuras %s on WoW %s"] = "WeakAuras %s en WoW %s"
|
||||
L["What do you want to do?"] = "¿Qué es lo que quieres hacer?"
|
||||
L["Whole Area"] = "Área completa"
|
||||
L["Width"] = "Ancho"
|
||||
L["wrapping"] = "envolviendo"
|
||||
L["X Offset"] = "Desplazamiento X"
|
||||
L["X Rotation"] = "Rotación X"
|
||||
L["X Scale"] = "X Escala"
|
||||
L["X-Offset"] = "Desplazamiento X"
|
||||
L["x-Offset"] = "Desplazamiento x"
|
||||
L["Y Offset"] = "Desplazamiento Y"
|
||||
L["Y Rotation"] = "Rotación Y"
|
||||
L["Y Scale"] = "Y Escala"
|
||||
L["Yellow Rune"] = "Runa amarilla"
|
||||
L["Y-Offset"] = "Desplazamiento Y"
|
||||
L["y-Offset"] = "Desplazamiento y"
|
||||
L["You already have this group/aura. Importing will create a duplicate."] = "Ya tienes este grupo/aura. La importación creará un duplicado."
|
||||
L["You are about to delete %d aura(s). |cFFFF0000This cannot be undone!|r Would you like to continue?"] = "Estás a punto de eliminar aura(s) %d. |cFFFF0000¡Esto no se puede deshacer!|r ¿Te gustarías continuar?"
|
||||
@@ -1031,7 +896,6 @@ WeakAuras will always run custom grow code if you include 'changed' in this list
|
||||
L["Your Saved Snippets"] = "Tus snippets guardados"
|
||||
L["Z Offset"] = "Desplazamiento Z"
|
||||
L["Z Rotation"] = "Rotación Z"
|
||||
L["Zoom"] = "Ampliación"
|
||||
L["Zoom In"] = "Acercar"
|
||||
L["Zoom Out"] = "Alejar"
|
||||
|
||||
|
||||
@@ -138,12 +138,10 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["A Unit ID (e.g., party1)."] = "Un ID d'unité (par exemple, groupe1)."
|
||||
--[[Translation missing --]]
|
||||
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
|
||||
L["Actions"] = "Actions"
|
||||
--[[Translation missing --]]
|
||||
L["Active Aura Filters and Info"] = "Active Aura Filters and Info"
|
||||
--[[Translation missing --]]
|
||||
L["Actual Spec"] = "Actual Spec"
|
||||
L["Add"] = "Ajouter"
|
||||
L["Add %s"] = "Ajouter %s"
|
||||
L["Add a new display"] = "Ajouter un nouvel affichage"
|
||||
L["Add Condition"] = "Ajouter une Condition"
|
||||
@@ -169,14 +167,13 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["All of"] = "Tous vos"
|
||||
--[[Translation missing --]]
|
||||
L["Allow Full Rotation"] = "Allow Full Rotation"
|
||||
L["Alpha"] = "Opacité"
|
||||
L["Anchor"] = "Ancrage"
|
||||
--[[Translation missing --]]
|
||||
L["Anchor Mode"] = "Anchor Mode"
|
||||
L["Anchor Point"] = "Point d'ancrage"
|
||||
L["Anchored To"] = "Ancré à"
|
||||
L["and"] = "et"
|
||||
L["And "] = "Et"
|
||||
L["and"] = "et"
|
||||
--[[Translation missing --]]
|
||||
L["and %s"] = "and %s"
|
||||
L["and aligned left"] = "et aligné à gauche"
|
||||
@@ -205,7 +202,6 @@ Si la durée de l'animation est définie à |cFF00CC0010%|r, et le déclencheur
|
||||
]=]
|
||||
L["Animation Sequence"] = "Séquence d'animation"
|
||||
L["Animation Start"] = "Démarrer l'animation"
|
||||
L["Animations"] = "Animations"
|
||||
L["Any of"] = "Un de"
|
||||
L["Apply Template"] = "Appliquer le modèle"
|
||||
L["Arcane Orb"] = "Orbe d'arcane"
|
||||
@@ -217,47 +213,33 @@ Si la durée de l'animation est définie à |cFF00CC0010%|r, et le déclencheur
|
||||
--[[Translation missing --]]
|
||||
L["Attach to Foreground"] = "Attach to Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Aura"] = "Aura"
|
||||
--[[Translation missing --]]
|
||||
L[ [=[Aura is
|
||||
Off Screen]=] ] = [=[Aura is
|
||||
Off Screen]=]
|
||||
L["Aura Name"] = "Nom de l'aura"
|
||||
L["Aura Name Pattern"] = "Modèle de Nom de l'Aura"
|
||||
--[[Translation missing --]]
|
||||
L["Aura Order"] = "Aura Order"
|
||||
--[[Translation missing --]]
|
||||
L["Aura received from: %s"] = "Aura received from: %s"
|
||||
L["Aura Type"] = "Type de l'aura"
|
||||
--[[Translation missing --]]
|
||||
L["Aura: '%s'"] = "Aura: '%s'"
|
||||
L["Author Options"] = "Options de l'Auteur"
|
||||
L["Auto-Clone (Show All Matches)"] = "Clonage Automatique (Afficher tous les résultats)"
|
||||
L["Automatic"] = "Automatique"
|
||||
L["Automatic length"] = "Longueur automatique"
|
||||
--[[Translation missing --]]
|
||||
L["Available Voices are system specific"] = "Available Voices are system specific"
|
||||
L["Backdrop Color"] = "Couleur de Fond"
|
||||
L["Backdrop in Front"] = "Fond Devant"
|
||||
L["Backdrop Style"] = "Style de Fond"
|
||||
L["Background"] = "Arrière-plan"
|
||||
L["Background Color"] = "Couleur d'arrière-plan"
|
||||
--[[Translation missing --]]
|
||||
L["Background Inner"] = "Background Inner"
|
||||
L["Background Offset"] = "Décalage du Fond "
|
||||
L["Background Texture"] = "Texture d'arrière plan"
|
||||
L["Bar Alpha"] = "Opacité de la barre"
|
||||
L["Bar Color Settings"] = "Paramètres de la barre de couleur"
|
||||
--[[Translation missing --]]
|
||||
L["Bar Color/Gradient Start"] = "Bar Color/Gradient Start"
|
||||
L["Bar Texture"] = "Texture de barre"
|
||||
L["Big Icon"] = "Grande icône"
|
||||
L["Blend Mode"] = "Mode du fusion"
|
||||
--[[Translation missing --]]
|
||||
L["Blizzard Cooldown Reduction"] = "Blizzard Cooldown Reduction"
|
||||
L["Blue Rune"] = "Rune bleue"
|
||||
L["Blue Sparkle Orb"] = "Orbe pétillant bleu"
|
||||
L["Border"] = "Encadrement"
|
||||
L["Border %s"] = "Encadrement %s"
|
||||
L["Border Anchor"] = "Ancrage de l'encadrement"
|
||||
L["Border Color"] = "Couleur de l'encadrement"
|
||||
@@ -267,9 +249,6 @@ Off Screen]=]
|
||||
L["Border Settings"] = "Paramètres de l'encadrement"
|
||||
L["Border Size"] = "Taille de l'encadrement"
|
||||
L["Border Style"] = "Style d'encadrement"
|
||||
L["Bottom"] = "Bas"
|
||||
L["Bottom Left"] = "Bas gauche"
|
||||
L["Bottom Right"] = "Bas droit"
|
||||
L["Bracket Matching"] = "Crochet Correspondant"
|
||||
L["Browse Wago, the largest collection of auras."] = "Parcourez Wago, la plus grande collection d'auras."
|
||||
--[[Translation missing --]]
|
||||
@@ -279,17 +258,14 @@ Off Screen]=]
|
||||
L["Can set to 0 if Columns * Width equal File Width"] = "Can set to 0 if Columns * Width equal File Width"
|
||||
--[[Translation missing --]]
|
||||
L["Can set to 0 if Rows * Height equal File Height"] = "Can set to 0 if Rows * Height equal File Height"
|
||||
L["Cancel"] = "Annuler"
|
||||
--[[Translation missing --]]
|
||||
L["Case Insensitive"] = "Case Insensitive"
|
||||
--[[Translation missing --]]
|
||||
L["Cast by a Player Character"] = "Cast by a Player Character"
|
||||
--[[Translation missing --]]
|
||||
L["Categories to Update"] = "Categories to Update"
|
||||
L["Center"] = "Centre"
|
||||
--[[Translation missing --]]
|
||||
L["Changelog"] = "Changelog"
|
||||
L["Chat Message"] = "Message dans le chat"
|
||||
L["Chat with WeakAuras experts on our Discord server."] = "Discutez avec des experts de WeakAuras sur notre serveur Discord."
|
||||
L["Check On..."] = "Vérifier sur..."
|
||||
L["Check out our wiki for a large collection of examples and snippets."] = "Consultez notre wiki pour trouver une grande collection d'exemples et d'extraits."
|
||||
@@ -297,7 +273,6 @@ Off Screen]=]
|
||||
L["Choose"] = "Choisir"
|
||||
--[[Translation missing --]]
|
||||
L["Circular Texture %s"] = "Circular Texture %s"
|
||||
L["Class"] = "Classe"
|
||||
--[[Translation missing --]]
|
||||
L["Clear Debug Logs"] = "Clear Debug Logs"
|
||||
--[[Translation missing --]]
|
||||
@@ -305,8 +280,6 @@ Off Screen]=]
|
||||
L["Clip Overlays"] = "Superposition de l'attache "
|
||||
--[[Translation missing --]]
|
||||
L["Clipped by Foreground"] = "Clipped by Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Clockwise"] = "Clockwise"
|
||||
L["Close"] = "Fermer"
|
||||
--[[Translation missing --]]
|
||||
L["Code Editor"] = "Code Editor"
|
||||
@@ -318,7 +291,6 @@ Off Screen]=]
|
||||
--[[Translation missing --]]
|
||||
L["Collapsible Group"] = "Collapsible Group"
|
||||
L["color"] = "couleur"
|
||||
L["Color"] = "Couleur"
|
||||
L["Column Height"] = "Hauteur de colonne"
|
||||
L["Column Space"] = "Espace de colonne"
|
||||
L["Columns"] = "Colonnes"
|
||||
@@ -331,7 +303,6 @@ Off Screen]=]
|
||||
--[[Translation missing --]]
|
||||
L["Compatibility Options"] = "Compatibility Options"
|
||||
L["Compress"] = "Compresser"
|
||||
L["Conditions"] = "Conditions"
|
||||
--[[Translation missing --]]
|
||||
L["Configure what options appear on this panel."] = "Configure what options appear on this panel."
|
||||
L["Constant Factor"] = "Facteur constant"
|
||||
@@ -340,14 +311,11 @@ Off Screen]=]
|
||||
L["Convert to..."] = "Convertir en..."
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."] = "Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."
|
||||
L["Copy"] = "Copier"
|
||||
L["Copy settings..."] = "Copier les paramètres..."
|
||||
L["Copy to all auras"] = "Copier toutes les auras"
|
||||
--[[Translation missing --]]
|
||||
L["Could not parse '%s'. Expected a table."] = "Could not parse '%s'. Expected a table."
|
||||
L["Count"] = "Compte"
|
||||
L["Counts the number of matches over all units."] = "Comptes de tout le nombre de correspondances sur toutes les unités."
|
||||
--[[Translation missing --]]
|
||||
L["Counts the number of matches per unit."] = "Counts the number of matches per unit."
|
||||
@@ -355,24 +323,13 @@ Off Screen]=]
|
||||
L["Create a Copy"] = "Create a Copy"
|
||||
L["Creating buttons: "] = "Création de boutons :"
|
||||
L["Creating options: "] = "Création d'options :"
|
||||
L["Crop X"] = "Couper X"
|
||||
L["Crop Y"] = "Couper Y"
|
||||
L["Custom"] = "Personnalisé"
|
||||
--[[Translation missing --]]
|
||||
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 Anchor"] = "Ancrage personnalisé"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Check"] = "Custom Check"
|
||||
L["Custom Code"] = "Code personnalisé"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Code Viewer"] = "Custom Code Viewer"
|
||||
L["Custom Color"] = "Couleur personnalisée"
|
||||
L["Custom Configuration"] = "Configuration personnalisée"
|
||||
L["Custom Frames"] = "Cadres personnalisés"
|
||||
L["Custom Function"] = "Fonction personnalisée"
|
||||
L["Custom Grow"] = "Surbrillance personnalisée"
|
||||
L["Custom Options"] = "Options personnalisées"
|
||||
L["Custom Sort"] = "Tri personnalisé"
|
||||
L["Custom Trigger"] = "Déclencheur personnalisé"
|
||||
L["Custom trigger event tooltip"] = [=[
|
||||
Choisissez quels évènements peuvent activer le déclencheur.
|
||||
@@ -394,8 +351,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED
|
||||
--[[Translation missing --]]
|
||||
L["Custom Trigger: Send fake events instead of STATUS event"] = "Custom Trigger: Send fake events instead of STATUS event"
|
||||
L["Custom Untrigger"] = "Désactivation personnalisée"
|
||||
L["Custom Variables"] = "Variables personnalisées"
|
||||
L["Debuff Type"] = "Type d'affaiblissement"
|
||||
--[[Translation missing --]]
|
||||
L["Debug Log"] = "Debug Log"
|
||||
--[[Translation missing --]]
|
||||
@@ -410,16 +365,12 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED
|
||||
L["Delete Entry"] = "Supprimer l'entrée"
|
||||
--[[Translation missing --]]
|
||||
L["Deleting auras: "] = "Deleting auras: "
|
||||
L["Desaturate"] = "Dé-saturer"
|
||||
L["Description"] = "Description"
|
||||
L["Description Text"] = "Texte de Description"
|
||||
--[[Translation missing --]]
|
||||
L["Determines how many entries can be in the table."] = "Determines how many entries can be in the table."
|
||||
L["Differences"] = "Différences"
|
||||
L["Disabled"] = "Désactivé"
|
||||
--[[Translation missing --]]
|
||||
L["Disallow Entry Reordering"] = "Disallow Entry Reordering"
|
||||
L["Display"] = "Affichage"
|
||||
L["Display Name"] = "Nom de l'affichage"
|
||||
L["Display Text"] = "Texte d'affichage"
|
||||
L["Displays a text, works best in combination with other displays"] = "Affiche du texte, fonctionne mieux en combinaison avec d'autres affichages."
|
||||
@@ -435,8 +386,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED
|
||||
L["Drag to move"] = "Glisser pour déplacer"
|
||||
L["Duplicate"] = "Doubler"
|
||||
L["Duplicate All"] = "Doubler Tout"
|
||||
--[[Translation missing --]]
|
||||
L["Duration"] = "Duration"
|
||||
L["Duration (s)"] = "Durée (s)"
|
||||
L["Duration Info"] = "Info de durée"
|
||||
L["Dynamic Duration"] = "Durée Dynamique"
|
||||
@@ -452,8 +401,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED
|
||||
--[[Translation missing --]]
|
||||
L["Ease type"] = "Ease type"
|
||||
--[[Translation missing --]]
|
||||
L["Edge"] = "Edge"
|
||||
--[[Translation missing --]]
|
||||
L["eliding"] = "eliding"
|
||||
--[[Translation missing --]]
|
||||
L["Else If"] = "Else If"
|
||||
@@ -494,10 +441,8 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED
|
||||
--[[Translation missing --]]
|
||||
L["Entry Name Source"] = "Entry Name Source"
|
||||
L["Event Type"] = "Type d'évènement"
|
||||
L["Event(s)"] = "Évènement(s)"
|
||||
L["Everything"] = "Tous"
|
||||
L["Exact Item Match"] = "Correspondance exacte de l'objet"
|
||||
L["Exact Spell ID(s)"] = "Correspondance exacte de l'ID du/des sort(s)"
|
||||
L["Exact Spell Match"] = "Correspondance exacte du sort"
|
||||
L["Expand"] = "Agrandir"
|
||||
L["Expand all loaded displays"] = "Agrandir tous affichages chargés"
|
||||
@@ -517,13 +462,10 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED
|
||||
--[[Translation missing --]]
|
||||
L["Extra Width"] = "Extra Width"
|
||||
L["Fade"] = "Fondu"
|
||||
L["Fade In"] = "Fondu entrant"
|
||||
L["Fade Out"] = "Fondu sortant"
|
||||
--[[Translation missing --]]
|
||||
L["Fadeout Sound"] = "Fadeout Sound"
|
||||
--[[Translation missing --]]
|
||||
L["Fadeout Time (seconds)"] = "Fadeout Time (seconds)"
|
||||
L["False"] = "Faux"
|
||||
--[[Translation missing --]]
|
||||
L["Fetch Affected/Unaffected Names and Units"] = "Fetch Affected/Unaffected Names and Units"
|
||||
--[[Translation missing --]]
|
||||
@@ -571,12 +513,7 @@ Bleed classification via LibDispel]=]
|
||||
L["Fire Orb"] = "Orbe de feu"
|
||||
--[[Translation missing --]]
|
||||
L["Flat Framelevels"] = "Flat Framelevels"
|
||||
L["Font"] = "Police"
|
||||
L["Font Size"] = "Taille de Police"
|
||||
L["Foreground"] = "Premier plan"
|
||||
L["Foreground Color"] = "Couleur premier-plan"
|
||||
L["Foreground Texture"] = "Texture premier-plan"
|
||||
L["Format"] = "Format"
|
||||
L["Format for %s"] = "Format pour %s"
|
||||
L["Found a Bug?"] = "Vous avez découvert un bug ?"
|
||||
L["Frame"] = "Cadre"
|
||||
@@ -589,7 +526,6 @@ Bleed classification via LibDispel]=]
|
||||
L["Frame Strata"] = "Strate du cadre"
|
||||
--[[Translation missing --]]
|
||||
L["Frame Width"] = "Frame Width"
|
||||
L["Frequency"] = "Fréquence"
|
||||
--[[Translation missing --]]
|
||||
L["Full Bar"] = "Full Bar"
|
||||
L["Full Circle"] = "Cercle Complet"
|
||||
@@ -598,16 +534,10 @@ Bleed classification via LibDispel]=]
|
||||
L["Glow Action"] = "Action de la brillance"
|
||||
L["Glow Anchor"] = "Ancre de la brillance"
|
||||
L["Glow Color"] = "Couleur de la brillance"
|
||||
L["Glow External Element"] = "Élément externe brillant"
|
||||
L["Glow Frame Type"] = "Type de cadre brillant"
|
||||
L["Glow Type"] = "Type de la brillance"
|
||||
--[[Translation missing --]]
|
||||
L["Gradient End"] = "Gradient End"
|
||||
--[[Translation missing --]]
|
||||
L["Gradient Orientation"] = "Gradient Orientation"
|
||||
L["Green Rune"] = "Rune verte"
|
||||
L["Grid direction"] = "Direction de la grille"
|
||||
L["Group"] = "Groupe"
|
||||
L["Group (verb)"] = "Groupe (verbe)"
|
||||
--[[Translation missing --]]
|
||||
L["Group Alpha"] = "Group Alpha"
|
||||
@@ -646,27 +576,20 @@ Si le nombre entré est decimal (ex. 0.5), une fraction (ex. 1/2), ou un pourcen
|
||||
L["Group Role"] = "Rôle du groupe"
|
||||
L["Group Scale"] = "Échelle du Groupe"
|
||||
L["Group Settings"] = "Paramètres du groupe"
|
||||
L["Group Type"] = "Type de groupe"
|
||||
L["Grow"] = "Grandir"
|
||||
L["Hawk"] = "Faucon"
|
||||
L["Height"] = "Hauteur"
|
||||
L["Help"] = "Aide"
|
||||
L["Hide"] = "Cacher"
|
||||
--[[Translation missing --]]
|
||||
L["Hide Background"] = "Hide Background"
|
||||
L["Hide Glows applied by this aura"] = "Cacher les brillances appliquées par cette aura"
|
||||
L["Hide on"] = "Cacher à"
|
||||
L["Hide this group's children"] = "Cacher les enfants de ce groupe"
|
||||
L["Hide Timer Text"] = "Masquer le texte du minuteur"
|
||||
--[[Translation missing --]]
|
||||
L["Highlights"] = "Highlights"
|
||||
L["Horizontal Align"] = "Aligner horizontalement"
|
||||
L["Horizontal Bar"] = "Barre horizontale"
|
||||
L["Hostility"] = "Hostilité"
|
||||
L["Huge Icon"] = "Énorme icône"
|
||||
L["Hybrid Position"] = "Position hybride"
|
||||
L["Hybrid Sort Mode"] = "Mode de tri hybride"
|
||||
L["Icon"] = "Icône"
|
||||
--[[Translation missing --]]
|
||||
L["Icon - The icon associated with the display"] = "Icon - The icon associated with the display"
|
||||
L["Icon Info"] = "Info d'icône"
|
||||
@@ -695,12 +618,9 @@ Si cette case est cochée, ce séparateur inclura du texte. Sinon, ce sera juste
|
||||
L["If checked, then this space will span across multiple lines."] = "Si cette case est cochée, cet espace s'étendra sur plusieurs lignes."
|
||||
L["If unchecked, then a default color will be used (usually yellow)"] = "Si cette case n'est pas cochée, une couleur par défaut sera utilisée (généralement jaune)"
|
||||
L["If unchecked, then this space will fill the entire line it is on in User Mode."] = "Si cette case n'est pas cochée, cet espace remplira toute la ligne sur laquelle il se trouve en mode utilisateur."
|
||||
L["Ignore Dead"] = "Ignorer la mort"
|
||||
L["Ignore Disconnected"] = "Ignorer les déconnectés"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore out of casting range"] = "Ignore out of casting range"
|
||||
L["Ignore out of checking range"] = "Ignorer hors de la plage de vérification"
|
||||
L["Ignore Self"] = "Ignorer soi-même"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Wago updates"] = "Ignore Wago updates"
|
||||
L["Ignored"] = "Ignoré"
|
||||
@@ -726,14 +646,12 @@ Si cette case est cochée, ce séparateur inclura du texte. Sinon, ce sera juste
|
||||
L["Importing a stand-alone aura."] = "Importing a stand-alone aura."
|
||||
--[[Translation missing --]]
|
||||
L["Importing...."] = "Importing...."
|
||||
L["Include Pets"] = "Inclure les familiers"
|
||||
--[[Translation missing --]]
|
||||
L["Incompatible changes to group region types detected"] = "Incompatible changes to group region types detected"
|
||||
--[[Translation missing --]]
|
||||
L["Incompatible changes to group structure detected"] = "Incompatible changes to group structure detected"
|
||||
--[[Translation missing --]]
|
||||
L["Indent Size"] = "Indent Size"
|
||||
L["Information"] = "Information"
|
||||
L["Inner"] = "Intérieur"
|
||||
--[[Translation missing --]]
|
||||
L["Insert text replacement codes to make text dynamic."] = "Insert text replacement codes to make text dynamic."
|
||||
@@ -747,7 +665,6 @@ Si cette case est cochée, ce séparateur inclura du texte. Sinon, ce sera juste
|
||||
--[[Translation missing --]]
|
||||
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'"] = "Type non valide pour la propriété '%s' dans '%s'. Attendu '%s'."
|
||||
L["Inverse"] = "Inverser"
|
||||
L["Inverse Slant"] = "Inverser l'Inclinaison"
|
||||
--[[Translation missing --]]
|
||||
L["Invert the direction of progress"] = "Invert the direction of progress"
|
||||
@@ -764,10 +681,8 @@ Si cette case est cochée, ce séparateur inclura du texte. Sinon, ce sera juste
|
||||
--[[Translation missing --]]
|
||||
L["Large Input"] = "Large Input"
|
||||
L["Leaf"] = "Feuille"
|
||||
L["Left"] = "Gauche"
|
||||
L["Left 2 HUD position"] = "Position ATH Gauche 2"
|
||||
L["Left HUD position"] = "Position ATH Gauche"
|
||||
L["Length"] = "Longueur"
|
||||
--[[Translation missing --]]
|
||||
L["Length of |cFFFF0000%s|r"] = "Length of |cFFFF0000%s|r"
|
||||
--[[Translation missing --]]
|
||||
@@ -781,35 +696,23 @@ 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["LibSharedMedia"] = "LibSharedMedia"
|
||||
L["Limit"] = "Limite"
|
||||
--[[Translation missing --]]
|
||||
L["Line"] = "Line"
|
||||
--[[Translation missing --]]
|
||||
L["Linear Texture %s"] = "Linear Texture %s"
|
||||
--[[Translation missing --]]
|
||||
L["Lines & Particles"] = "Lines & Particles"
|
||||
--[[Translation missing --]]
|
||||
L["Linked aura: "] = "Linked aura: "
|
||||
L["Load"] = "Chargement"
|
||||
L["Loaded"] = "Chargé"
|
||||
--[[Translation missing --]]
|
||||
L["Loaded/Standby"] = "Loaded/Standby"
|
||||
L["Lock Positions"] = "Verrouiller les positions"
|
||||
L["Loop"] = "Boucle"
|
||||
L["Low Mana"] = "Mana bas"
|
||||
L["Magnetically Align"] = "Alignement magnétique"
|
||||
L["Main"] = "Principal"
|
||||
--[[Translation missing --]]
|
||||
L["Manual"] = "Manual"
|
||||
--[[Translation missing --]]
|
||||
L["Manual Icon"] = "Manual Icon"
|
||||
--[[Translation missing --]]
|
||||
L["Manual with %i/%i"] = "Manual with %i/%i"
|
||||
--[[Translation missing --]]
|
||||
L["Match Count"] = "Match Count"
|
||||
--[[Translation missing --]]
|
||||
L["Match Count per Unit"] = "Match Count per Unit"
|
||||
L["Matches the height setting of a horizontal bar or width for a vertical bar."] = "Correspond au paramètre de hauteur d'une barre horizontale ou de largeur pour une barre verticale."
|
||||
L["Max"] = "Max"
|
||||
L["Max Length"] = "Longueur max"
|
||||
@@ -818,13 +721,9 @@ Si cette case est cochée, ce séparateur inclura du texte. Sinon, ce sera juste
|
||||
--[[Translation missing --]]
|
||||
L["Media Type"] = "Media Type"
|
||||
L["Medium Icon"] = "Icône moyenne"
|
||||
L["Message"] = "Message"
|
||||
L["Message Type"] = "Type de message"
|
||||
L["Min"] = "Min (minutes?)"
|
||||
--[[Translation missing --]]
|
||||
L["Minimum"] = "Minimum"
|
||||
L["Mirror"] = "Miroir"
|
||||
L["Model"] = "Modèle"
|
||||
L["Model %s"] = "Modèle %s"
|
||||
--[[Translation missing --]]
|
||||
L["Model Picker"] = "Model Picker"
|
||||
@@ -859,9 +758,7 @@ Seule une unique valeur peut être choisie]=]
|
||||
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"] = "Info du nom"
|
||||
L["Name Pattern Match"] = "Correspondance de modèle de nom"
|
||||
L["Name(s)"] = "Nom(s)"
|
||||
L["Name:"] = "Nom:"
|
||||
L["Nameplates"] = "Barres de vie"
|
||||
L["Negator"] = "Pas"
|
||||
L["New Aura"] = "Nouvelle aura"
|
||||
--[[Translation missing --]]
|
||||
@@ -870,7 +767,6 @@ Seule une unique valeur peut être choisie]=]
|
||||
L["No Children"] = "Aucun enfant"
|
||||
--[[Translation missing --]]
|
||||
L["No Logs saved."] = "No Logs saved."
|
||||
L["None"] = "Aucun"
|
||||
L["Not a table"] = "N'est pas une table"
|
||||
L["Not all children have the same value for this option"] = "Tous les enfants n'ont pas la même valeur pour cette option"
|
||||
L["Not Loaded"] = "Non chargé"
|
||||
@@ -878,8 +774,6 @@ Seule une unique valeur peut être choisie]=]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
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\""
|
||||
--[[Translation missing --]]
|
||||
L["Npc ID"] = "Npc ID"
|
||||
L["Number of Entries"] = "Nombre d'entrées"
|
||||
--[[Translation missing --]]
|
||||
L[ [=[Occurrence of the event, reset when aura is unloaded
|
||||
@@ -929,11 +823,9 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["or %s"] = "or %s"
|
||||
L["Orange Rune"] = "Rune orange"
|
||||
L["Orientation"] = "Orientation"
|
||||
--[[Translation missing --]]
|
||||
L["Our translators (too many to name)"] = "Our translators (too many to name)"
|
||||
L["Outer"] = "Extérieur"
|
||||
L["Outline"] = "Contour"
|
||||
L["Overflow"] = "Débordement"
|
||||
L["Overlay %s Info"] = "%s Infos en Superposition"
|
||||
L["Overlays"] = "Superpositions"
|
||||
@@ -963,7 +855,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Premade Snippets"] = "Premade Snippets"
|
||||
--[[Translation missing --]]
|
||||
L["Preparing auras: "] = "Preparing auras: "
|
||||
L["Preset"] = "Préréglé"
|
||||
L["Press Ctrl+C to copy"] = "Appuyer sur Ctrl+C pour copier"
|
||||
L["Press Ctrl+C to copy the URL"] = "Appuyer sur Ctrl+C pour copier l'URL"
|
||||
--[[Translation missing --]]
|
||||
@@ -974,14 +865,10 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Progress Bar Settings"] = "Paramètres de la barre de progression"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Settings"] = "Progress Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Source"] = "Progress Source"
|
||||
L["Progress Texture"] = "Texture de progression"
|
||||
L["Progress Texture Settings"] = "Paramètres de la texture de progression"
|
||||
L["Purple Rune"] = "Rune violette"
|
||||
L["Put this display in a group"] = "Placer cet affichage dans un groupe"
|
||||
L["Radius"] = "Rayon"
|
||||
L["Raid Role"] = "Rôle de raid"
|
||||
--[[Translation missing --]]
|
||||
L["Range in yards"] = "Range in yards"
|
||||
--[[Translation missing --]]
|
||||
@@ -993,7 +880,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Reciprocal TRIGGER:# requests will be ignored!"] = "Reciprocal TRIGGER:# requests will be ignored!"
|
||||
L["Regions of type \"%s\" are not supported."] = "Les régions de type \"%s\" ne sont pas prises en charge."
|
||||
L["Remaining Time"] = "Temps restant"
|
||||
L["Remove"] = "Retirer"
|
||||
--[[Translation missing --]]
|
||||
L["Remove All Sounds"] = "Remove All Sounds"
|
||||
@@ -1016,7 +902,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Reset Entry"] = "Reset Entry"
|
||||
L["Reset to Defaults"] = "Réinitialiser les paramètres par défaut"
|
||||
L["Right"] = "Droite"
|
||||
L["Right 2 HUD position"] = "Position ATH Droite 2"
|
||||
L["Right HUD position"] = "Position ATH Droite"
|
||||
L["Right-click for more options"] = "Clic-Droit pour plus d'options"
|
||||
@@ -1024,7 +909,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Rotate In"] = "Rotation entrante"
|
||||
L["Rotate Out"] = "Rotation sortante"
|
||||
L["Rotate Text"] = "Tourner le texte"
|
||||
L["Rotation"] = "Rotation"
|
||||
L["Rotation Mode"] = "Mode de rotation"
|
||||
--[[Translation missing --]]
|
||||
L["Row Space"] = "Row Space"
|
||||
@@ -1038,7 +922,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Same texture as Foreground"] = "Same texture as Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Saved Data"] = "Saved Data"
|
||||
L["Scale"] = "Échelle"
|
||||
--[[Translation missing --]]
|
||||
L["Scale Factor"] = "Scale Factor"
|
||||
--[[Translation missing --]]
|
||||
@@ -1088,7 +971,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Show Model"] = "Show Model"
|
||||
L["Show model of unit "] = "Montrer le modèle de l'unité"
|
||||
L["Show On"] = "Afficher Sur"
|
||||
--[[Translation missing --]]
|
||||
L["Show Sound Setting"] = "Show Sound Setting"
|
||||
L["Show Spark"] = "Afficher l'étincelle"
|
||||
@@ -1123,7 +1005,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
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"] = "Affiche une ligne de texte ou plus, qui peut inclure des infos dynamiques telles que progression ou piles."
|
||||
L["Simple"] = "Basique"
|
||||
L["Size"] = "Taille"
|
||||
--[[Translation missing --]]
|
||||
L["Slant Amount"] = "Slant Amount"
|
||||
@@ -1144,28 +1025,17 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Soft Min"] = "Soft Min"
|
||||
L["Sort"] = "Trier"
|
||||
L["Sound"] = "Son"
|
||||
--[[Translation missing --]]
|
||||
L["Sound by Kit ID"] = "Sound by Kit ID"
|
||||
L["Sound Channel"] = "Canal sonore"
|
||||
L["Sound File Path"] = "Chemin fichier son"
|
||||
L["Sound Kit ID"] = "ID Kit Son"
|
||||
L["Source"] = "Source"
|
||||
L["Space"] = "Espacer"
|
||||
L["Space Horizontally"] = "Espacer horizontalement"
|
||||
L["Space Vertically"] = "Espacer verticalement"
|
||||
L["Spark"] = "Étincelle"
|
||||
L["Spark Settings"] = "Paramètres de l'étincelle"
|
||||
L["Spark Texture"] = "Texture de l'étincelle"
|
||||
--[[Translation missing --]]
|
||||
L["Specialization"] = "Specialization"
|
||||
--[[Translation missing --]]
|
||||
L["Specific Currency ID"] = "Specific Currency ID"
|
||||
L["Specific Unit"] = "Unité spécifique"
|
||||
L["Spell ID"] = "ID de sort"
|
||||
--[[Translation missing --]]
|
||||
L["Spell Selection Filters"] = "Spell Selection Filters"
|
||||
L["Stack Count"] = "Nombre de Piles"
|
||||
L["Stack Info"] = "Info de Piles"
|
||||
--[[Translation missing --]]
|
||||
L["Stacks - The number of stacks of an aura (usually)"] = "Stacks - The number of stacks of an aura (usually)"
|
||||
@@ -1176,16 +1046,12 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Start"] = "Début"
|
||||
L["Start Angle"] = "Angle de départ"
|
||||
--[[Translation missing --]]
|
||||
L["Start Animation"] = "Start Animation"
|
||||
--[[Translation missing --]]
|
||||
L["Start Collapsed"] = "Start Collapsed"
|
||||
--[[Translation missing --]]
|
||||
L["Start of %s"] = "Start of %s"
|
||||
--[[Translation missing --]]
|
||||
L["Step Size"] = "Step Size"
|
||||
--[[Translation missing --]]
|
||||
L["Stop Motion"] = "Stop Motion"
|
||||
--[[Translation missing --]]
|
||||
L["Stop Motion %s"] = "Stop Motion %s"
|
||||
--[[Translation missing --]]
|
||||
L["Stop Motion Settings"] = "Stop Motion Settings"
|
||||
@@ -1198,25 +1064,17 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Subevent"] = "Subevent"
|
||||
--[[Translation missing --]]
|
||||
L["Subevent Suffix"] = "Subevent Suffix"
|
||||
--[[Translation missing --]]
|
||||
L["Supports multiple entries, separated by commas"] = "Supports multiple entries, separated by commas"
|
||||
L["Swipe Overlay Settings"] = "Paramètres de la superposition des balayages"
|
||||
--[[Translation missing --]]
|
||||
L["Templates could not be loaded, the addon is %s"] = "Templates could not be loaded, the addon is %s"
|
||||
L["Temporary Group"] = "Groupe temporaire"
|
||||
L["Text"] = "Texte"
|
||||
L["Text %s"] = "Texte %s"
|
||||
L["Text Color"] = "Couleur Texte"
|
||||
L["Text Settings"] = "Paramètres du texte"
|
||||
L["Texture"] = "Texture"
|
||||
--[[Translation missing --]]
|
||||
L["Texture %s"] = "Texture %s"
|
||||
L["Texture Info"] = "Info Texture"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Picker"] = "Texture Picker"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Rotation"] = "Texture Rotation"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Selection Mode"] = "Texture Selection Mode"
|
||||
L["Texture Settings"] = "Paramètres de la texture"
|
||||
L["Texture Wrap"] = "Enveloppe de texture"
|
||||
@@ -1242,7 +1100,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Then "] = "Alors"
|
||||
--[[Translation missing --]]
|
||||
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["Thickness"] = "Épaisseur"
|
||||
--[[Translation missing --]]
|
||||
L["This adds %raidMark as text replacements."] = "This adds %raidMark as text replacements."
|
||||
--[[Translation missing --]]
|
||||
@@ -1300,17 +1157,13 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Toggle the visibility of all loaded displays"] = "Change la visibilité de tous les affichages chargés"
|
||||
L["Toggle the visibility of all non-loaded displays"] = "Change la visibilité de tous les affichages non-chargés"
|
||||
L["Toggle the visibility of this display"] = "Activer/Désactiver la visibilité de cet affichage"
|
||||
L["Tooltip"] = "Infobulle"
|
||||
L["Tooltip Content"] = "Contenu de l'info-bulle"
|
||||
L["Tooltip on Mouseover"] = "Infobulle à la souris"
|
||||
L["Tooltip Pattern Match"] = "Correspondance de modèle de l'info-bulle"
|
||||
L["Tooltip Text"] = "Texte de l'Info-bulle."
|
||||
L["Tooltip Value"] = "Valeur de l'info-bulle"
|
||||
L["Tooltip Value #"] = "Valeur de l'info-bulle #"
|
||||
L["Top"] = "Haut"
|
||||
L["Top HUD position"] = "Position ATH Haute"
|
||||
L["Top Left"] = "Haut gauche"
|
||||
L["Top Right"] = "Haut droite"
|
||||
--[[Translation missing --]]
|
||||
L["Total"] = "Total"
|
||||
--[[Translation missing --]]
|
||||
@@ -1319,23 +1172,16 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Total Angle"] = "Total Angle"
|
||||
--[[Translation missing --]]
|
||||
L["Total Time"] = "Total Time"
|
||||
L["Trigger"] = "Déclencheur"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger %i"] = "Trigger %i"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger %i: %s"] = "Trigger %i: %s"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger Combination"] = "Trigger Combination"
|
||||
L["True"] = "Vrai"
|
||||
L["Type"] = "Type"
|
||||
--[[Translation missing --]]
|
||||
L["Type 'select' for '%s' requires a values member'"] = "Type 'select' for '%s' requires a values member'"
|
||||
L["Ungroup"] = "Dissocier"
|
||||
L["Unit"] = "Unité"
|
||||
--[[Translation missing --]]
|
||||
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "Unit %s is not a valid unit for RegisterUnitEvent"
|
||||
L["Unit Count"] = "Nombre d'unité"
|
||||
L["Unit Frames"] = "Cadre d'unité"
|
||||
--[[Translation missing --]]
|
||||
L["Unknown"] = "Unknown"
|
||||
--[[Translation missing --]]
|
||||
@@ -1352,17 +1198,13 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["URL"] = "URL"
|
||||
--[[Translation missing --]]
|
||||
L["Url: %s"] = "Url: %s"
|
||||
L["Use Custom Color"] = "Utiliser une couleur personnalisée"
|
||||
L["Use Display Info Id"] = "Utiliser les informations d'identifiant de l'affichage"
|
||||
L["Use SetTransform"] = "Utiliser SetTransform"
|
||||
L["Use Texture"] = "Utiliser une texture"
|
||||
L["Used in auras:"] = "Utilisé dans les auras:"
|
||||
L["Used in Auras:"] = "Utilisé(e) dans les Auras:"
|
||||
L["Used in auras:"] = "Utilisé dans les auras:"
|
||||
--[[Translation missing --]]
|
||||
L["Uses Texture Coordinates to rotate the texture."] = "Uses Texture Coordinates to rotate the texture."
|
||||
--[[Translation missing --]]
|
||||
L["Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."] = "Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Value"] = "Value"
|
||||
@@ -1391,20 +1233,17 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["What do you want to do?"] = "What do you want to do?"
|
||||
--[[Translation missing --]]
|
||||
L["Whole Area"] = "Whole Area"
|
||||
L["Width"] = "Largeur"
|
||||
--[[Translation missing --]]
|
||||
L["wrapping"] = "wrapping"
|
||||
L["X Offset"] = "Décalage X"
|
||||
L["X Rotation"] = "Rotation X"
|
||||
L["X Scale"] = "Echelle X"
|
||||
L["X-Offset"] = "Décalage X"
|
||||
L["x-Offset"] = "x-Décalage"
|
||||
L["Y Offset"] = "Décalage Y"
|
||||
L["Y Rotation"] = "Rotation Y"
|
||||
L["Y Scale"] = "Echelle Y"
|
||||
L["Yellow Rune"] = "Rune jaune"
|
||||
L["y-Offset"] = "y-Décalage"
|
||||
L["Y-Offset"] = "Décalage Y"
|
||||
--[[Translation missing --]]
|
||||
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?"] = "Vous êtes sur le point de supprimer %d aura(s). |cFFFF0000Cela ne peut pas être annulé !|r Voulez-vous continuer ?"
|
||||
@@ -1428,7 +1267,6 @@ WeakAuras will always run custom grow code if you include 'changed' in this list
|
||||
L["Your Saved Snippets"] = "Your Saved Snippets"
|
||||
L["Z Offset"] = "Décalage Z"
|
||||
L["Z Rotation"] = "Rotation Z"
|
||||
L["Zoom"] = "Zoom"
|
||||
L["Zoom In"] = "Zoom avant"
|
||||
L["Zoom Out"] = "Zoom arrière"
|
||||
|
||||
|
||||
@@ -121,10 +121,8 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["A Unit ID (e.g., party1)."] = "Un Unit ID (p.es., party1)"
|
||||
--[[Translation missing --]]
|
||||
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
|
||||
L["Actions"] = "Azioni"
|
||||
L["Active Aura Filters and Info"] = "Filtri e informazioni sull'aura attiva"
|
||||
L["Actual Spec"] = "Attuale Spec"
|
||||
L["Add"] = "Aggiungi"
|
||||
L["Add %s"] = "Aggiungi %s"
|
||||
L["Add a new display"] = "Aggiungi un nuovo display"
|
||||
L["Add Condition"] = "Aggiungi Condizione"
|
||||
@@ -148,7 +146,6 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["All maintainers of the libraries we use, especially:"] = "All maintainers of the libraries we use, especially:"
|
||||
L["All of"] = "Tutto di"
|
||||
L["Allow Full Rotation"] = "Consenti rotazione completa"
|
||||
L["Alpha"] = "Alfa"
|
||||
L["Anchor"] = "Ancora"
|
||||
--[[Translation missing --]]
|
||||
L["Anchor Mode"] = "Anchor Mode"
|
||||
@@ -174,7 +171,6 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["Animation relative duration description"] = "Descrizione della durata relativa dell'animazione"
|
||||
L["Animation Sequence"] = "Sequenza di Animazione"
|
||||
L["Animation Start"] = "Start Animazione "
|
||||
L["Animations"] = "Animazioni"
|
||||
L["Any of"] = "Qualsiasi tra"
|
||||
L["Apply Template"] = "Applica Template"
|
||||
L["Arcane Orb"] = "Globo Arcano"
|
||||
@@ -185,40 +181,28 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["At the same position as Blizzard's spell alert"] = "Nella stessa posizione dell'avviso magia della Blizzard"
|
||||
--[[Translation missing --]]
|
||||
L["Attach to Foreground"] = "Attach to Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Aura"] = "Aura"
|
||||
L[ [=[Aura is
|
||||
Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
L["Aura Name"] = "Nome Aura"
|
||||
L["Aura Name Pattern"] = "Schema del Nome Aura"
|
||||
L["Aura Order"] = "Ordine dell'Aura"
|
||||
L["Aura received from: %s"] = "Aura ricevuta da: %s"
|
||||
L["Aura Type"] = "Tipo di aura"
|
||||
--[[Translation missing --]]
|
||||
L["Aura: '%s'"] = "Aura: '%s'"
|
||||
L["Author Options"] = "Opzioni Autore"
|
||||
L["Auto-Clone (Show All Matches)"] = "Auto-Clona (Mostra tutte le corrispondenze)"
|
||||
L["Automatic"] = "Automatico"
|
||||
L["Automatic length"] = "Lunghezza automatica"
|
||||
L["Available Voices are system specific"] = "Le voci disponibili sono specifiche del sistema"
|
||||
L["Backdrop Color"] = "Colore Fondale"
|
||||
L["Backdrop in Front"] = "Fondale d'avanti"
|
||||
L["Backdrop Style"] = "Stile Fondale"
|
||||
L["Background"] = "Sfondo"
|
||||
L["Background Color"] = "Colore Sfondo"
|
||||
L["Background Inner"] = "Sfondo interno"
|
||||
L["Background Offset"] = "Deviazione Sfondo"
|
||||
L["Background Texture"] = "Texture dello Sfondo"
|
||||
L["Bar Alpha"] = "Alfa della Barra"
|
||||
L["Bar Color Settings"] = "Impostazioni Colore Barra"
|
||||
L["Bar Color/Gradient Start"] = "Inizio Colore/Inclinazione della Barra"
|
||||
L["Bar Texture"] = "Texture della Barra"
|
||||
L["Big Icon"] = "Icone Grandi"
|
||||
L["Blend Mode"] = "Modalità di Fusione"
|
||||
L["Blizzard Cooldown Reduction"] = "Riduzione Cooldown Blizzard"
|
||||
L["Blue Rune"] = "Runa Blu"
|
||||
L["Blue Sparkle Orb"] = "Sfera Luccicante Blu"
|
||||
L["Border"] = "Bordo"
|
||||
L["Border %s"] = "Bordo %s"
|
||||
L["Border Anchor"] = "Ancora Bordo"
|
||||
L["Border Color"] = "Colore Bordo"
|
||||
@@ -228,9 +212,6 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
L["Border Settings"] = "Imbostazioni Bordo"
|
||||
L["Border Size"] = "Dimensioni Bordo"
|
||||
L["Border Style"] = "Stile Bordo"
|
||||
L["Bottom"] = "Basso"
|
||||
L["Bottom Left"] = "Basso a Sinistra"
|
||||
L["Bottom Right"] = "Basso a Destra"
|
||||
L["Bracket Matching"] = "Corrispondenza Parentesi"
|
||||
L["Browse Wago, the largest collection of auras."] = "Sfoglia Wago, la più grande collezione di aure."
|
||||
--[[Translation missing --]]
|
||||
@@ -238,15 +219,12 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
L["Can be a UID (e.g., party1)."] = "Può essere un UID (ad esempio, party1)."
|
||||
L["Can set to 0 if Columns * Width equal File Width"] = "Può essere impostato su 0 se Colonne * Larghezza è uguale alla Larghezza file"
|
||||
L["Can set to 0 if Rows * Height equal File Height"] = "Può essere impostato su 0 se Righe * Altezza è uguale all'altezza del file"
|
||||
L["Cancel"] = "Cancella"
|
||||
--[[Translation missing --]]
|
||||
L["Case Insensitive"] = "Case Insensitive"
|
||||
L["Cast by a Player Character"] = "Cast da un personaggio giocante"
|
||||
L["Categories to Update"] = "Categorie da aggiornare"
|
||||
L["Center"] = "Centro"
|
||||
--[[Translation missing --]]
|
||||
L["Changelog"] = "Changelog"
|
||||
L["Chat Message"] = "Messaggio di Chat"
|
||||
L["Chat with WeakAuras experts on our Discord server."] = "Chatta con gli esperti WeakAuras sul nostro server Discord."
|
||||
L["Check On..."] = "Controllare..."
|
||||
L["Check out our wiki for a large collection of examples and snippets."] = "Controlla la nostra wiki per un'ampia raccolta di esempi e frammenti."
|
||||
@@ -254,14 +232,11 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
L["Choose"] = "Scegliere"
|
||||
--[[Translation missing --]]
|
||||
L["Circular Texture %s"] = "Circular Texture %s"
|
||||
L["Class"] = "Classe"
|
||||
L["Clear Debug Logs"] = "Cancella registri di debug"
|
||||
L["Clear Saved Data"] = "Cancella dati salvati"
|
||||
L["Clip Overlays"] = "Sovrapposizioni di clip"
|
||||
--[[Translation missing --]]
|
||||
L["Clipped by Foreground"] = "Clipped by Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Clockwise"] = "Clockwise"
|
||||
L["Close"] = "Chiudi"
|
||||
L["Code Editor"] = "Editore di codice"
|
||||
L["Collapse"] = "Comprimi"
|
||||
@@ -269,7 +244,6 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
L["Collapse all non-loaded displays"] = "Comprimi tutti i display non caricati"
|
||||
L["Collapse all pending Import"] = "Comprimi tutto in attesa di importazione"
|
||||
L["Collapsible Group"] = "Comprimi Gruppo"
|
||||
L["Color"] = "Colore"
|
||||
L["color"] = "Colore"
|
||||
L["Column Height"] = "Altezza Colonna"
|
||||
L["Column Space"] = "Spazio colonna"
|
||||
@@ -281,54 +255,33 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
L["Compare against the number of units affected."] = "Confrontare con il numero di unità interessate."
|
||||
L["Compatibility Options"] = "Opzioni di compatibilità"
|
||||
L["Compress"] = "Comprimi"
|
||||
L["Conditions"] = "Condizioni"
|
||||
L["Configure what options appear on this panel."] = "Configura quali opzioni appaiono in questo pannello."
|
||||
L["Constant Factor"] = "Fattore Costante"
|
||||
L["Control-click to select multiple displays"] = "Fare clic tenendo premuto il tasto Control per selezionare più display"
|
||||
L["Controls the positioning and configuration of multiple displays at the same time"] = "Controlla il posizionamento e la configurazione di più display contemporaneamente"
|
||||
L["Convert to..."] = "Converti in..."
|
||||
L["Cooldown Numbers might be added by WoW. You can configure these in the game settings."] = "I numeri di Cooldown potrebbero essere aggiunti da WoW. Puoi configurarli nelle impostazioni del gioco."
|
||||
L["Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."] = "La riduzione del Cooldown modifica la durata dei secondi invece di mostrare i secondi in tempo reale."
|
||||
L["Copy"] = "Copia"
|
||||
L["Copy settings..."] = "Copia impostazioni..."
|
||||
L["Copy to all auras"] = "Copia in tutte le aure"
|
||||
--[[Translation missing --]]
|
||||
L["Could not parse '%s'. Expected a table."] = "Could not parse '%s'. Expected a table."
|
||||
L["Count"] = "Conteggio "
|
||||
L["Counts the number of matches over all units."] = "Conta il numero di corrispondenze su tutte le unità."
|
||||
L["Counts the number of matches per unit."] = "Conta il numero di corrispondenze per unità."
|
||||
L["Create a Copy"] = "Crea una copia"
|
||||
L["Creating buttons: "] = "Crea bottoni:"
|
||||
L["Creating options: "] = "Crea opzioni:"
|
||||
L["Crop X"] = "Raccolta X"
|
||||
L["Crop Y"] = "Raccolta Y"
|
||||
--[[Translation missing --]]
|
||||
L["Custom"] = "Custom"
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Custom Anchor"] = "Custom Anchor"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Check"] = "Custom Check"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Code"] = "Custom Code"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Code Viewer"] = "Custom Code Viewer"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Color"] = "Custom Color"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Configuration"] = "Custom Configuration"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Frames"] = "Custom Frames"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Function"] = "Custom Function"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Grow"] = "Custom Grow"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Options"] = "Custom Options"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Sort"] = "Custom Sort"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Trigger"] = "Custom Trigger"
|
||||
--[[Translation missing --]]
|
||||
L["Custom trigger event tooltip"] = "Custom trigger event tooltip"
|
||||
@@ -341,10 +294,6 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Untrigger"] = "Custom Untrigger"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Variables"] = "Custom Variables"
|
||||
--[[Translation missing --]]
|
||||
L["Debuff Type"] = "Debuff Type"
|
||||
--[[Translation missing --]]
|
||||
L["Debug Log"] = "Debug Log"
|
||||
--[[Translation missing --]]
|
||||
L["Debug Log:"] = "Debug Log:"
|
||||
@@ -365,20 +314,14 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
--[[Translation missing --]]
|
||||
L["Deleting auras: "] = "Deleting auras: "
|
||||
--[[Translation missing --]]
|
||||
L["Desaturate"] = "Desaturate"
|
||||
L["Description"] = "Descrizione"
|
||||
--[[Translation missing --]]
|
||||
L["Description Text"] = "Description Text"
|
||||
--[[Translation missing --]]
|
||||
L["Determines how many entries can be in the table."] = "Determines how many entries can be in the table."
|
||||
--[[Translation missing --]]
|
||||
L["Differences"] = "Differences"
|
||||
L["Disabled"] = "Disabilitato"
|
||||
--[[Translation missing --]]
|
||||
L["Disallow Entry Reordering"] = "Disallow Entry Reordering"
|
||||
--[[Translation missing --]]
|
||||
L["Display"] = "Display"
|
||||
--[[Translation missing --]]
|
||||
L["Display Name"] = "Display Name"
|
||||
--[[Translation missing --]]
|
||||
L["Display Text"] = "Display Text"
|
||||
@@ -405,8 +348,6 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
--[[Translation missing --]]
|
||||
L["Duplicate All"] = "Duplicate All"
|
||||
--[[Translation missing --]]
|
||||
L["Duration"] = "Duration"
|
||||
--[[Translation missing --]]
|
||||
L["Duration (s)"] = "Duration (s)"
|
||||
--[[Translation missing --]]
|
||||
L["Duration Info"] = "Duration Info"
|
||||
@@ -429,8 +370,6 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
--[[Translation missing --]]
|
||||
L["Ease type"] = "Ease type"
|
||||
--[[Translation missing --]]
|
||||
L["Edge"] = "Edge"
|
||||
--[[Translation missing --]]
|
||||
L["eliding"] = "eliding"
|
||||
--[[Translation missing --]]
|
||||
L["Else If"] = "Else If"
|
||||
@@ -482,14 +421,10 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
L["Entry Name Source"] = "Entry Name Source"
|
||||
L["Event Type"] = "Tipo di Evento"
|
||||
--[[Translation missing --]]
|
||||
L["Event(s)"] = "Event(s)"
|
||||
--[[Translation missing --]]
|
||||
L["Everything"] = "Everything"
|
||||
--[[Translation missing --]]
|
||||
L["Exact Item Match"] = "Exact Item Match"
|
||||
--[[Translation missing --]]
|
||||
L["Exact Spell ID(s)"] = "Exact Spell ID(s)"
|
||||
--[[Translation missing --]]
|
||||
L["Exact Spell Match"] = "Exact Spell Match"
|
||||
--[[Translation missing --]]
|
||||
L["Expand"] = "Expand"
|
||||
@@ -516,16 +451,10 @@ Off Screen]=] ] = "L'aura è fuori dallo schermo"
|
||||
--[[Translation missing --]]
|
||||
L["Fade"] = "Fade"
|
||||
--[[Translation missing --]]
|
||||
L["Fade In"] = "Fade In"
|
||||
--[[Translation missing --]]
|
||||
L["Fade Out"] = "Fade Out"
|
||||
--[[Translation missing --]]
|
||||
L["Fadeout Sound"] = "Fadeout Sound"
|
||||
--[[Translation missing --]]
|
||||
L["Fadeout Time (seconds)"] = "Fadeout Time (seconds)"
|
||||
--[[Translation missing --]]
|
||||
L["False"] = "False"
|
||||
--[[Translation missing --]]
|
||||
L["Fetch Affected/Unaffected Names and Units"] = "Fetch Affected/Unaffected Names and Units"
|
||||
--[[Translation missing --]]
|
||||
L["Fetch Raid Mark Information"] = "Fetch Raid Mark Information"
|
||||
@@ -578,18 +507,8 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Flat Framelevels"] = "Flat Framelevels"
|
||||
--[[Translation missing --]]
|
||||
L["Font"] = "Font"
|
||||
--[[Translation missing --]]
|
||||
L["Font Size"] = "Font Size"
|
||||
--[[Translation missing --]]
|
||||
L["Foreground"] = "Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Foreground Color"] = "Foreground Color"
|
||||
--[[Translation missing --]]
|
||||
L["Foreground Texture"] = "Foreground Texture"
|
||||
--[[Translation missing --]]
|
||||
L["Format"] = "Format"
|
||||
--[[Translation missing --]]
|
||||
L["Format for %s"] = "Format for %s"
|
||||
--[[Translation missing --]]
|
||||
L["Found a Bug?"] = "Found a Bug?"
|
||||
@@ -606,8 +525,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Frame Width"] = "Frame Width"
|
||||
--[[Translation missing --]]
|
||||
L["Frequency"] = "Frequency"
|
||||
--[[Translation missing --]]
|
||||
L["Full Bar"] = "Full Bar"
|
||||
--[[Translation missing --]]
|
||||
L["Full Circle"] = "Full Circle"
|
||||
@@ -622,22 +539,14 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Glow Color"] = "Glow Color"
|
||||
--[[Translation missing --]]
|
||||
L["Glow External Element"] = "Glow External Element"
|
||||
--[[Translation missing --]]
|
||||
L["Glow Frame Type"] = "Glow Frame Type"
|
||||
--[[Translation missing --]]
|
||||
L["Glow Type"] = "Glow Type"
|
||||
--[[Translation missing --]]
|
||||
L["Gradient End"] = "Gradient End"
|
||||
--[[Translation missing --]]
|
||||
L["Gradient Orientation"] = "Gradient Orientation"
|
||||
--[[Translation missing --]]
|
||||
L["Green Rune"] = "Green Rune"
|
||||
--[[Translation missing --]]
|
||||
L["Grid direction"] = "Grid direction"
|
||||
--[[Translation missing --]]
|
||||
L["Group"] = "Group"
|
||||
--[[Translation missing --]]
|
||||
L["Group (verb)"] = "Group (verb)"
|
||||
--[[Translation missing --]]
|
||||
L["Group Alpha"] = "Group Alpha"
|
||||
@@ -672,18 +581,10 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Group Settings"] = "Group Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Group Type"] = "Group Type"
|
||||
--[[Translation missing --]]
|
||||
L["Grow"] = "Grow"
|
||||
--[[Translation missing --]]
|
||||
L["Hawk"] = "Hawk"
|
||||
--[[Translation missing --]]
|
||||
L["Height"] = "Height"
|
||||
--[[Translation missing --]]
|
||||
L["Help"] = "Help"
|
||||
--[[Translation missing --]]
|
||||
L["Hide"] = "Hide"
|
||||
--[[Translation missing --]]
|
||||
L["Hide Background"] = "Hide Background"
|
||||
--[[Translation missing --]]
|
||||
L["Hide Glows applied by this aura"] = "Hide Glows applied by this aura"
|
||||
@@ -692,24 +593,18 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Hide this group's children"] = "Hide this group's children"
|
||||
--[[Translation missing --]]
|
||||
L["Hide Timer Text"] = "Hide Timer Text"
|
||||
--[[Translation missing --]]
|
||||
L["Highlights"] = "Highlights"
|
||||
--[[Translation missing --]]
|
||||
L["Horizontal Align"] = "Horizontal Align"
|
||||
--[[Translation missing --]]
|
||||
L["Horizontal Bar"] = "Horizontal Bar"
|
||||
--[[Translation missing --]]
|
||||
L["Hostility"] = "Hostility"
|
||||
--[[Translation missing --]]
|
||||
L["Huge Icon"] = "Huge Icon"
|
||||
--[[Translation missing --]]
|
||||
L["Hybrid Position"] = "Hybrid Position"
|
||||
--[[Translation missing --]]
|
||||
L["Hybrid Sort Mode"] = "Hybrid Sort Mode"
|
||||
--[[Translation missing --]]
|
||||
L["Icon"] = "Icon"
|
||||
--[[Translation missing --]]
|
||||
L["Icon - The icon associated with the display"] = "Icon - The icon associated with the display"
|
||||
--[[Translation missing --]]
|
||||
L["Icon Info"] = "Icon Info"
|
||||
@@ -746,16 +641,10 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Dead"] = "Ignore Dead"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Disconnected"] = "Ignore Disconnected"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore out of casting range"] = "Ignore out of casting range"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore out of checking range"] = "Ignore out of checking range"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Self"] = "Ignore Self"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Wago updates"] = "Ignore Wago updates"
|
||||
--[[Translation missing --]]
|
||||
L["Ignored"] = "Ignored"
|
||||
@@ -788,16 +677,12 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Importing...."] = "Importing...."
|
||||
--[[Translation missing --]]
|
||||
L["Include Pets"] = "Include Pets"
|
||||
--[[Translation missing --]]
|
||||
L["Incompatible changes to group region types detected"] = "Incompatible changes to group region types detected"
|
||||
--[[Translation missing --]]
|
||||
L["Incompatible changes to group structure detected"] = "Incompatible changes to group structure detected"
|
||||
--[[Translation missing --]]
|
||||
L["Indent Size"] = "Indent Size"
|
||||
--[[Translation missing --]]
|
||||
L["Information"] = "Information"
|
||||
--[[Translation missing --]]
|
||||
L["Inner"] = "Inner"
|
||||
--[[Translation missing --]]
|
||||
L["Insert text replacement codes to make text dynamic."] = "Insert text replacement codes to make text dynamic."
|
||||
@@ -816,8 +701,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Invalid type for property '%s' in '%s'. Expected '%s'"] = "Invalid type for property '%s' in '%s'. Expected '%s'"
|
||||
--[[Translation missing --]]
|
||||
L["Inverse"] = "Inverse"
|
||||
--[[Translation missing --]]
|
||||
L["Inverse Slant"] = "Inverse Slant"
|
||||
--[[Translation missing --]]
|
||||
L["Invert the direction of progress"] = "Invert the direction of progress"
|
||||
@@ -840,14 +723,10 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Leaf"] = "Leaf"
|
||||
--[[Translation missing --]]
|
||||
L["Left"] = "Left"
|
||||
--[[Translation missing --]]
|
||||
L["Left 2 HUD position"] = "Left 2 HUD position"
|
||||
--[[Translation missing --]]
|
||||
L["Left HUD position"] = "Left HUD position"
|
||||
--[[Translation missing --]]
|
||||
L["Length"] = "Length"
|
||||
--[[Translation missing --]]
|
||||
L["Length of |cFFFF0000%s|r"] = "Length of |cFFFF0000%s|r"
|
||||
--[[Translation missing --]]
|
||||
L["LibCompress: Galmok"] = "LibCompress: Galmok"
|
||||
@@ -860,7 +739,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
|
||||
--[[Translation missing --]]
|
||||
L["LibSharedMedia"] = "LibSharedMedia"
|
||||
--[[Translation missing --]]
|
||||
L["Limit"] = "Limit"
|
||||
--[[Translation missing --]]
|
||||
@@ -868,8 +746,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Linear Texture %s"] = "Linear Texture %s"
|
||||
--[[Translation missing --]]
|
||||
L["Lines & Particles"] = "Lines & Particles"
|
||||
--[[Translation missing --]]
|
||||
L["Linked aura: "] = "Linked aura: "
|
||||
--[[Translation missing --]]
|
||||
L["Load"] = "Load"
|
||||
@@ -880,24 +756,14 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Lock Positions"] = "Lock Positions"
|
||||
--[[Translation missing --]]
|
||||
L["Loop"] = "Loop"
|
||||
--[[Translation missing --]]
|
||||
L["Low Mana"] = "Low Mana"
|
||||
--[[Translation missing --]]
|
||||
L["Magnetically Align"] = "Magnetically Align"
|
||||
--[[Translation missing --]]
|
||||
L["Main"] = "Main"
|
||||
--[[Translation missing --]]
|
||||
L["Manual"] = "Manual"
|
||||
--[[Translation missing --]]
|
||||
L["Manual Icon"] = "Manual Icon"
|
||||
--[[Translation missing --]]
|
||||
L["Manual with %i/%i"] = "Manual with %i/%i"
|
||||
--[[Translation missing --]]
|
||||
L["Match Count"] = "Match Count"
|
||||
--[[Translation missing --]]
|
||||
L["Match Count per Unit"] = "Match Count per Unit"
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Max"] = "Max"
|
||||
@@ -910,18 +776,10 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Medium Icon"] = "Medium Icon"
|
||||
--[[Translation missing --]]
|
||||
L["Message"] = "Message"
|
||||
--[[Translation missing --]]
|
||||
L["Message Type"] = "Message Type"
|
||||
--[[Translation missing --]]
|
||||
L["Min"] = "Min"
|
||||
--[[Translation missing --]]
|
||||
L["Minimum"] = "Minimum"
|
||||
--[[Translation missing --]]
|
||||
L["Mirror"] = "Mirror"
|
||||
--[[Translation missing --]]
|
||||
L["Model"] = "Model"
|
||||
--[[Translation missing --]]
|
||||
L["Model %s"] = "Model %s"
|
||||
--[[Translation missing --]]
|
||||
L["Model Picker"] = "Model Picker"
|
||||
@@ -968,12 +826,8 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Name Pattern Match"] = "Name Pattern Match"
|
||||
--[[Translation missing --]]
|
||||
L["Name(s)"] = "Name(s)"
|
||||
--[[Translation missing --]]
|
||||
L["Name:"] = "Name:"
|
||||
--[[Translation missing --]]
|
||||
L["Nameplates"] = "Nameplates"
|
||||
--[[Translation missing --]]
|
||||
L["Negator"] = "Negator"
|
||||
--[[Translation missing --]]
|
||||
L["New Aura"] = "New Aura"
|
||||
@@ -986,8 +840,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["No Logs saved."] = "No Logs saved."
|
||||
--[[Translation missing --]]
|
||||
L["None"] = "None"
|
||||
--[[Translation missing --]]
|
||||
L["Not a table"] = "Not a table"
|
||||
--[[Translation missing --]]
|
||||
L["Not all children have the same value for this option"] = "Not all children have the same value for this option"
|
||||
@@ -998,8 +850,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
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\""
|
||||
--[[Translation missing --]]
|
||||
L["Npc ID"] = "Npc ID"
|
||||
--[[Translation missing --]]
|
||||
L["Number of Entries"] = "Number of Entries"
|
||||
--[[Translation missing --]]
|
||||
L[ [=[Occurrence of the event, reset when aura is unloaded
|
||||
@@ -1062,14 +912,10 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Orange Rune"] = "Orange Rune"
|
||||
--[[Translation missing --]]
|
||||
L["Orientation"] = "Orientation"
|
||||
--[[Translation missing --]]
|
||||
L["Our translators (too many to name)"] = "Our translators (too many to name)"
|
||||
--[[Translation missing --]]
|
||||
L["Outer"] = "Outer"
|
||||
--[[Translation missing --]]
|
||||
L["Outline"] = "Outline"
|
||||
--[[Translation missing --]]
|
||||
L["Overflow"] = "Overflow"
|
||||
--[[Translation missing --]]
|
||||
L["Overlay %s Info"] = "Overlay %s Info"
|
||||
@@ -1116,8 +962,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Preparing auras: "] = "Preparing auras: "
|
||||
--[[Translation missing --]]
|
||||
L["Preset"] = "Preset"
|
||||
--[[Translation missing --]]
|
||||
L["Press Ctrl+C to copy"] = "Press Ctrl+C to copy"
|
||||
--[[Translation missing --]]
|
||||
L["Press Ctrl+C to copy the URL"] = "Press Ctrl+C to copy the URL"
|
||||
@@ -1132,8 +976,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Progress Settings"] = "Progress Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Source"] = "Progress Source"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Texture"] = "Progress Texture"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Texture Settings"] = "Progress Texture Settings"
|
||||
@@ -1142,10 +984,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Put this display in a group"] = "Put this display in a group"
|
||||
--[[Translation missing --]]
|
||||
L["Radius"] = "Radius"
|
||||
--[[Translation missing --]]
|
||||
L["Raid Role"] = "Raid Role"
|
||||
--[[Translation missing --]]
|
||||
L["Range in yards"] = "Range in yards"
|
||||
--[[Translation missing --]]
|
||||
L["Ready for Install"] = "Ready for Install"
|
||||
@@ -1160,8 +998,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Regions of type \"%s\" are not supported."] = "Regions of type \"%s\" are not supported."
|
||||
--[[Translation missing --]]
|
||||
L["Remaining Time"] = "Remaining Time"
|
||||
--[[Translation missing --]]
|
||||
L["Remove"] = "Remove"
|
||||
--[[Translation missing --]]
|
||||
L["Remove All Sounds"] = "Remove All Sounds"
|
||||
@@ -1194,8 +1030,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Reset to Defaults"] = "Reset to Defaults"
|
||||
--[[Translation missing --]]
|
||||
L["Right"] = "Right"
|
||||
--[[Translation missing --]]
|
||||
L["Right 2 HUD position"] = "Right 2 HUD position"
|
||||
--[[Translation missing --]]
|
||||
L["Right HUD position"] = "Right HUD position"
|
||||
@@ -1210,8 +1044,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Rotate Text"] = "Rotate Text"
|
||||
--[[Translation missing --]]
|
||||
L["Rotation"] = "Rotation"
|
||||
--[[Translation missing --]]
|
||||
L["Rotation Mode"] = "Rotation Mode"
|
||||
--[[Translation missing --]]
|
||||
L["Row Space"] = "Row Space"
|
||||
@@ -1228,8 +1060,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Saved Data"] = "Saved Data"
|
||||
--[[Translation missing --]]
|
||||
L["Scale"] = "Scale"
|
||||
--[[Translation missing --]]
|
||||
L["Scale Factor"] = "Scale Factor"
|
||||
--[[Translation missing --]]
|
||||
L["Search API"] = "Search API"
|
||||
@@ -1294,8 +1124,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Show model of unit "] = "Show model of unit "
|
||||
--[[Translation missing --]]
|
||||
L["Show On"] = "Show On"
|
||||
--[[Translation missing --]]
|
||||
L["Show Sound Setting"] = "Show Sound Setting"
|
||||
--[[Translation missing --]]
|
||||
L["Show Spark"] = "Show Spark"
|
||||
@@ -1342,8 +1170,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
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"
|
||||
--[[Translation missing --]]
|
||||
L["Simple"] = "Simple"
|
||||
--[[Translation missing --]]
|
||||
L["Size"] = "Size"
|
||||
--[[Translation missing --]]
|
||||
L["Slant Amount"] = "Slant Amount"
|
||||
@@ -1372,42 +1198,24 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Sort"] = "Sort"
|
||||
--[[Translation missing --]]
|
||||
L["Sound"] = "Sound"
|
||||
--[[Translation missing --]]
|
||||
L["Sound by Kit ID"] = "Sound by Kit ID"
|
||||
--[[Translation missing --]]
|
||||
L["Sound Channel"] = "Sound Channel"
|
||||
--[[Translation missing --]]
|
||||
L["Sound File Path"] = "Sound File Path"
|
||||
--[[Translation missing --]]
|
||||
L["Sound Kit ID"] = "Sound Kit ID"
|
||||
--[[Translation missing --]]
|
||||
L["Source"] = "Source"
|
||||
--[[Translation missing --]]
|
||||
L["Space"] = "Space"
|
||||
--[[Translation missing --]]
|
||||
L["Space Horizontally"] = "Space Horizontally"
|
||||
--[[Translation missing --]]
|
||||
L["Space Vertically"] = "Space Vertically"
|
||||
--[[Translation missing --]]
|
||||
L["Spark"] = "Spark"
|
||||
--[[Translation missing --]]
|
||||
L["Spark Settings"] = "Spark Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Spark Texture"] = "Spark Texture"
|
||||
--[[Translation missing --]]
|
||||
L["Specialization"] = "Specialization"
|
||||
--[[Translation missing --]]
|
||||
L["Specific Currency ID"] = "Specific Currency ID"
|
||||
--[[Translation missing --]]
|
||||
L["Specific Unit"] = "Specific Unit"
|
||||
--[[Translation missing --]]
|
||||
L["Spell ID"] = "Spell ID"
|
||||
--[[Translation missing --]]
|
||||
L["Spell Selection Filters"] = "Spell Selection Filters"
|
||||
--[[Translation missing --]]
|
||||
L["Stack Count"] = "Stack Count"
|
||||
--[[Translation missing --]]
|
||||
L["Stack Info"] = "Stack Info"
|
||||
--[[Translation missing --]]
|
||||
L["Stacks - The number of stacks of an aura (usually)"] = "Stacks - The number of stacks of an aura (usually)"
|
||||
@@ -1422,16 +1230,12 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Start Angle"] = "Start Angle"
|
||||
--[[Translation missing --]]
|
||||
L["Start Animation"] = "Start Animation"
|
||||
--[[Translation missing --]]
|
||||
L["Start Collapsed"] = "Start Collapsed"
|
||||
--[[Translation missing --]]
|
||||
L["Start of %s"] = "Start of %s"
|
||||
--[[Translation missing --]]
|
||||
L["Step Size"] = "Step Size"
|
||||
--[[Translation missing --]]
|
||||
L["Stop Motion"] = "Stop Motion"
|
||||
--[[Translation missing --]]
|
||||
L["Stop Motion %s"] = "Stop Motion %s"
|
||||
--[[Translation missing --]]
|
||||
L["Stop Motion Settings"] = "Stop Motion Settings"
|
||||
@@ -1446,32 +1250,22 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Subevent Suffix"] = "Subevent Suffix"
|
||||
--[[Translation missing --]]
|
||||
L["Supports multiple entries, separated by commas"] = "Supports multiple entries, separated by commas"
|
||||
--[[Translation missing --]]
|
||||
L["Swipe Overlay Settings"] = "Swipe Overlay Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Templates could not be loaded, the addon is %s"] = "Templates could not be loaded, the addon is %s"
|
||||
--[[Translation missing --]]
|
||||
L["Temporary Group"] = "Temporary Group"
|
||||
--[[Translation missing --]]
|
||||
L["Text"] = "Text"
|
||||
--[[Translation missing --]]
|
||||
L["Text %s"] = "Text %s"
|
||||
--[[Translation missing --]]
|
||||
L["Text Color"] = "Text Color"
|
||||
--[[Translation missing --]]
|
||||
L["Text Settings"] = "Text Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Texture"] = "Texture"
|
||||
--[[Translation missing --]]
|
||||
L["Texture %s"] = "Texture %s"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Info"] = "Texture Info"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Picker"] = "Texture Picker"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Rotation"] = "Texture Rotation"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Selection Mode"] = "Texture Selection Mode"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Settings"] = "Texture Settings"
|
||||
@@ -1504,8 +1298,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Thickness"] = "Thickness"
|
||||
--[[Translation missing --]]
|
||||
L["This adds %raidMark as text replacements."] = "This adds %raidMark as text replacements."
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
@@ -1576,8 +1368,6 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["Toggle the visibility of this display"] = "Toggle the visibility of this display"
|
||||
--[[Translation missing --]]
|
||||
L["Tooltip"] = "Tooltip"
|
||||
--[[Translation missing --]]
|
||||
L["Tooltip Content"] = "Tooltip Content"
|
||||
--[[Translation missing --]]
|
||||
L["Tooltip on Mouseover"] = "Tooltip on Mouseover"
|
||||
@@ -1590,14 +1380,8 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["Tooltip Value #"] = "Tooltip Value #"
|
||||
--[[Translation missing --]]
|
||||
L["Top"] = "Top"
|
||||
--[[Translation missing --]]
|
||||
L["Top HUD position"] = "Top HUD position"
|
||||
--[[Translation missing --]]
|
||||
L["Top Left"] = "Top Left"
|
||||
--[[Translation missing --]]
|
||||
L["Top Right"] = "Top Right"
|
||||
--[[Translation missing --]]
|
||||
L["Total"] = "Total"
|
||||
--[[Translation missing --]]
|
||||
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"
|
||||
@@ -1606,30 +1390,18 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["Total Time"] = "Total Time"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger"] = "Trigger"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger %i"] = "Trigger %i"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger %i: %s"] = "Trigger %i: %s"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger Combination"] = "Trigger Combination"
|
||||
--[[Translation missing --]]
|
||||
L["True"] = "True"
|
||||
--[[Translation missing --]]
|
||||
L["Type"] = "Type"
|
||||
--[[Translation missing --]]
|
||||
L["Type 'select' for '%s' requires a values member'"] = "Type 'select' for '%s' requires a values member'"
|
||||
--[[Translation missing --]]
|
||||
L["Ungroup"] = "Ungroup"
|
||||
--[[Translation missing --]]
|
||||
L["Unit"] = "Unit"
|
||||
--[[Translation missing --]]
|
||||
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "Unit %s is not a valid unit for RegisterUnitEvent"
|
||||
--[[Translation missing --]]
|
||||
L["Unit Count"] = "Unit Count"
|
||||
--[[Translation missing --]]
|
||||
L["Unit Frames"] = "Unit Frames"
|
||||
--[[Translation missing --]]
|
||||
L["Unknown"] = "Unknown"
|
||||
--[[Translation missing --]]
|
||||
L["Unknown Encounter's Spell Id"] = "Unknown Encounter's Spell Id"
|
||||
@@ -1650,22 +1422,16 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["Url: %s"] = "Url: %s"
|
||||
--[[Translation missing --]]
|
||||
L["Use Custom Color"] = "Use Custom Color"
|
||||
--[[Translation missing --]]
|
||||
L["Use Display Info Id"] = "Use Display Info Id"
|
||||
--[[Translation missing --]]
|
||||
L["Use SetTransform"] = "Use SetTransform"
|
||||
--[[Translation missing --]]
|
||||
L["Use Texture"] = "Use Texture"
|
||||
--[[Translation missing --]]
|
||||
L["Used in Auras:"] = "Used in Auras:"
|
||||
--[[Translation missing --]]
|
||||
L["Used in auras:"] = "Used in auras:"
|
||||
--[[Translation missing --]]
|
||||
L["Uses Texture Coordinates to rotate the texture."] = "Uses Texture Coordinates to rotate the texture."
|
||||
--[[Translation missing --]]
|
||||
L["Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."] = "Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Value"] = "Value"
|
||||
@@ -1702,8 +1468,6 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["Whole Area"] = "Whole Area"
|
||||
--[[Translation missing --]]
|
||||
L["Width"] = "Width"
|
||||
--[[Translation missing --]]
|
||||
L["wrapping"] = "wrapping"
|
||||
--[[Translation missing --]]
|
||||
L["X Offset"] = "X Offset"
|
||||
@@ -1712,8 +1476,6 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["X Scale"] = "X Scale"
|
||||
--[[Translation missing --]]
|
||||
L["X-Offset"] = "X-Offset"
|
||||
--[[Translation missing --]]
|
||||
L["x-Offset"] = "x-Offset"
|
||||
--[[Translation missing --]]
|
||||
L["Y Offset"] = "Y Offset"
|
||||
@@ -1726,8 +1488,6 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["y-Offset"] = "y-Offset"
|
||||
--[[Translation missing --]]
|
||||
L["Y-Offset"] = "Y-Offset"
|
||||
--[[Translation missing --]]
|
||||
L["You already have this group/aura. Importing will create a duplicate."] = "You already have this group/aura. Importing will create a duplicate."
|
||||
--[[Translation missing --]]
|
||||
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?"
|
||||
@@ -1754,8 +1514,6 @@ WeakAuras will always run custom grow code if you include 'changed' in this list
|
||||
--[[Translation missing --]]
|
||||
L["Z Rotation"] = "Z Rotation"
|
||||
--[[Translation missing --]]
|
||||
L["Zoom"] = "Zoom"
|
||||
--[[Translation missing --]]
|
||||
L["Zoom In"] = "Zoom In"
|
||||
--[[Translation missing --]]
|
||||
L["Zoom Out"] = "Zoom Out"
|
||||
|
||||
@@ -128,10 +128,8 @@ local L = WeakAuras.L
|
||||
Enable this setting if you want this timer to be hidden, or when using a WeakAuras text to display the timer]=] ] = "타이머가 기본 인터페이스 설정(일부 애드온에 의해 설정이 무시됨)에 따라 자동으로 표시됩니다. 이 타이머를 숨기거나 WeakAuras의 텍스트를 사용해서 표시하고 싶으면 이 설정을 켜세요."
|
||||
L["A Unit ID (e.g., party1)."] = "유닛 ID입니다. (party1 같은식)"
|
||||
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
|
||||
L["Actions"] = "동작"
|
||||
L["Active Aura Filters and Info"] = "활성 오라 필터와 정보"
|
||||
L["Actual Spec"] = "실제 전문화"
|
||||
L["Add"] = "추가"
|
||||
L["Add %s"] = "%s 추가"
|
||||
L["Add a new display"] = "새 디스플레이 추가"
|
||||
L["Add Condition"] = "조건 추가"
|
||||
@@ -151,10 +149,9 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["Affected Unit Filters and Info"] = "오라에 걸린 유닛 필터와 정보"
|
||||
L["Align"] = "정렬"
|
||||
L["Alignment"] = "정렬"
|
||||
L["All maintainers of the libraries we use, especially:"] = "특히 우리가 사용중인 라이브러리를 관리하시는 모든 분들:"
|
||||
L["All maintainers of the libraries we use, especially:"] = "특히 우리가 사용 중인 라이브러리를 관리하시는 모든 분들:"
|
||||
L["All of"] = "모두 만족"
|
||||
L["Allow Full Rotation"] = "전체 회전 허용"
|
||||
L["Alpha"] = "불투명도"
|
||||
L["Anchor"] = "고정 지점"
|
||||
L["Anchor Mode"] = "고정 모드"
|
||||
L["Anchor Point"] = "고정 지점"
|
||||
@@ -185,7 +182,6 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
]=]
|
||||
L["Animation Sequence"] = "애니메이션 순서"
|
||||
L["Animation Start"] = "애니메이션 시작"
|
||||
L["Animations"] = "애니메이션"
|
||||
L["Any of"] = "아무거나 만족"
|
||||
L["Apply Template"] = "템플릿 적용"
|
||||
L["Arcane Orb"] = "비전 구슬"
|
||||
@@ -194,38 +190,27 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["At a position a bit left of Right HUD position"] = "우측 HUD 위치보다 약간 왼쪽에 위치시킵니다"
|
||||
L["At the same position as Blizzard's spell alert"] = "블리자드의 주문 경보와 같은 위치"
|
||||
L["Attach to Foreground"] = "전경에 붙임"
|
||||
L["Aura"] = "오라"
|
||||
L[ [=[Aura is
|
||||
Off Screen]=] ] = "위크오라가 화면 밖에 있습니다"
|
||||
L["Aura Name"] = "오라 이름"
|
||||
L["Aura Name Pattern"] = "오라 이름 패턴"
|
||||
L["Aura Order"] = "위크오라 정렬"
|
||||
L["Aura received from: %s"] = "위크오라 전송자: %s"
|
||||
L["Aura Type"] = "오라 종류"
|
||||
L["Aura: '%s'"] = "오라: '%s'"
|
||||
L["Author Options"] = "제작자 옵션"
|
||||
L["Auto-Clone (Show All Matches)"] = "자동 복제 (일치하는걸 전부 표시)"
|
||||
L["Automatic"] = "자동 설정"
|
||||
L["Automatic length"] = "자동 길이 조정"
|
||||
L["Available Voices are system specific"] = "컴퓨터 환경에 따라 사용 가능한 음성이 다릅니다"
|
||||
L["Backdrop Color"] = "배경 색상"
|
||||
L["Backdrop in Front"] = "앞쪽 배경"
|
||||
L["Backdrop Style"] = "배경 스타일"
|
||||
L["Background"] = "배경"
|
||||
L["Background Color"] = "배경 색상"
|
||||
L["Background Inner"] = "배경 내부"
|
||||
L["Background Offset"] = "배경 위치 조정"
|
||||
L["Background Texture"] = "배경 텍스처"
|
||||
L["Bar Alpha"] = "바 불투명도"
|
||||
L["Bar Color Settings"] = "바 색상 설정"
|
||||
L["Bar Color/Gradient Start"] = "바 색상/그라디언트 시작"
|
||||
L["Bar Texture"] = "바 텍스처"
|
||||
L["Big Icon"] = "큰 아이콘"
|
||||
L["Blend Mode"] = "혼합 모드"
|
||||
L["Blizzard Cooldown Reduction"] = "블리자드식 쿨타임 축소 표시"
|
||||
L["Blue Rune"] = "푸른색 룬"
|
||||
L["Blue Sparkle Orb"] = "푸른 불꽃 구슬"
|
||||
L["Border"] = "테두리"
|
||||
L["Border %s"] = "테두리 %s"
|
||||
L["Border Anchor"] = "테두리 고정"
|
||||
L["Border Color"] = "테두리 색상"
|
||||
@@ -235,34 +220,26 @@ Off Screen]=] ] = "위크오라가 화면 밖에 있습니다"
|
||||
L["Border Settings"] = "테두리 설정"
|
||||
L["Border Size"] = "테두리 크기"
|
||||
L["Border Style"] = "테두리 모양"
|
||||
L["Bottom"] = "아래"
|
||||
L["Bottom Left"] = "왼쪽 아래"
|
||||
L["Bottom Right"] = "오른쪽 아래"
|
||||
L["Bracket Matching"] = "괄호 맞춤"
|
||||
L["Browse Wago, the largest collection of auras."] = "세상에서 가장 큰 위크오라 모음 사이트 Wago를 둘러보세요."
|
||||
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."] = "기본값으로 동적 정보를 통해 선택된 활성 조건의 정보를 표시합니다. 특정 활성 조건의 정보 표시는 %2.p 같은 식으로 할 수 있습니다."
|
||||
L["Can be a UID (e.g., party1)."] = "UID만 가능합니다. (예: party1)"
|
||||
L["Can set to 0 if Columns * Width equal File Width"] = "열 * 너비가 세로줄 너비와 같으면 0으로 설정해야 합니다"
|
||||
L["Can set to 0 if Rows * Height equal File Height"] = "행 * 높이가 세로줄 높이와 같으면 0으로 설정해야 합니다"
|
||||
L["Cancel"] = "취소"
|
||||
L["Case Insensitive"] = "대소문자 구분 안함"
|
||||
L["Cast by a Player Character"] = "플레이어 캐릭터가 시전"
|
||||
L["Categories to Update"] = "업데이트할 카테고리"
|
||||
L["Center"] = "중앙"
|
||||
L["Changelog"] = "업데이트 정보"
|
||||
L["Chat Message"] = "대화 메시지"
|
||||
L["Chat with WeakAuras experts on our Discord server."] = "우리의 Discord 서버에서 WeakAuras 전문가들과 이야기를 나누어 보세요."
|
||||
L["Check On..."] = "검사 기준..."
|
||||
L["Check out our wiki for a large collection of examples and snippets."] = "방대한 예제와 스니펫 모음을 보려면 위키를 확인하세요."
|
||||
L["Children:"] = "자식 위크오라:"
|
||||
L["Choose"] = "선택"
|
||||
L["Circular Texture %s"] = "테두리 텍스처 %s"
|
||||
L["Class"] = "직업"
|
||||
L["Clear Debug Logs"] = "디버그 로그 삭제"
|
||||
L["Clear Saved Data"] = "저장된 데이터 지우기"
|
||||
L["Clip Overlays"] = "오버레이 자르기"
|
||||
L["Clipped by Foreground"] = "전경에 의해 잘림"
|
||||
L["Clockwise"] = "시계 방향"
|
||||
L["Close"] = "닫기"
|
||||
L["Code Editor"] = "코드 편집기"
|
||||
L["Collapse"] = "최소화"
|
||||
@@ -271,7 +248,6 @@ Off Screen]=] ] = "위크오라가 화면 밖에 있습니다"
|
||||
L["Collapse all pending Import"] = "보류 중인 모든 가져오기 접기"
|
||||
L["Collapsible Group"] = "접을 수 있는 그룹"
|
||||
L["color"] = "색상"
|
||||
L["Color"] = "색상"
|
||||
L["Column Height"] = "열 높이"
|
||||
L["Column Space"] = "열 간격"
|
||||
L["Columns"] = "열"
|
||||
@@ -282,39 +258,26 @@ Off Screen]=] ] = "위크오라가 화면 밖에 있습니다"
|
||||
L["Compare against the number of units affected."] = "오라에 걸린 유닛 수와 비교합니다."
|
||||
L["Compatibility Options"] = "호환성 옵션"
|
||||
L["Compress"] = "압축"
|
||||
L["Conditions"] = "조건"
|
||||
L["Configure what options appear on this panel."] = "이 패널에 나오는 옵션을 구성합니다."
|
||||
L["Constant Factor"] = "고정 요소"
|
||||
L["Control-click to select multiple displays"] = "Ctrl+클릭으로 여러 디스플레이 선택"
|
||||
L["Controls the positioning and configuration of multiple displays at the same time"] = "여러 디스플레이의 위치와 설정을 동시에 제어합니다"
|
||||
L["Convert to..."] = "변환하기..."
|
||||
L["Cooldown Numbers might be added by WoW. You can configure these in the game settings."] = "WoW 내장 쿨타임 텍스트입니다. 게임 설정에서 조정할 수 있습니다."
|
||||
L["Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."] = "쿨타임 시간 축소는 실제 초의 시간보다 짧은 시간으로 바꿔서 보여줍니다."
|
||||
L["Copy"] = "복사"
|
||||
L["Copy settings..."] = "설정 복사..."
|
||||
L["Copy to all auras"] = "모든 위크오라에 복사"
|
||||
L["Could not parse '%s'. Expected a table."] = "'%s'를 분석할 수 없습니다. 테이블이어야 합니다."
|
||||
L["Count"] = "번호"
|
||||
L["Counts the number of matches over all units."] = "모든 유닛에 대해 일치 횟수를 계산합니다."
|
||||
L["Counts the number of matches per unit."] = "유닛당 일치 횟수를 계산합니다."
|
||||
L["Create a Copy"] = "사본 생성"
|
||||
L["Creating buttons: "] = "버튼 생성 중:"
|
||||
L["Creating options: "] = "옵션 생성:"
|
||||
L["Crop X"] = "X 자르기"
|
||||
L["Crop Y"] = "Y 자르기"
|
||||
L["Custom"] = "사용자 정의"
|
||||
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."] = "사용자 정의 - 문자열 값의 목록을 반환하는 맞춤형 Lua 함수를 정의할 수 있습니다. %c1는 첫번째 값 반환, %c2는 두번째 값 같은 식으로 대체됩니다."
|
||||
L["Custom Anchor"] = "사용자 정의 방식 고정"
|
||||
L["Custom Check"] = "사용자 정의 검사"
|
||||
L["Custom Code"] = "사용자 정의 코드"
|
||||
L["Custom Code Viewer"] = "사용자 정의 코드 뷰어"
|
||||
L["Custom Color"] = "사용자 정의 색상"
|
||||
L["Custom Configuration"] = "사용자 정의 구성"
|
||||
L["Custom Frames"] = "사용자 정의 프레임"
|
||||
L["Custom Function"] = "사용자 정의 함수"
|
||||
L["Custom Grow"] = "사용자 정의 그룹 확장"
|
||||
L["Custom Options"] = "사용자 정의 옵션"
|
||||
L["Custom Sort"] = "사용자 정의 정렬"
|
||||
L["Custom Trigger"] = "사용자 정의 활성 조건"
|
||||
L["Custom trigger event tooltip"] = [=[사용자 정의 활성 조건을 확인할 이벤트를 선택하세요. 쉼표나 공백을 사용해 여러 이벤트를 지정할 수 있습니다.
|
||||
|
||||
@@ -339,8 +302,6 @@ UNIT_POWER_UPDATE:player, UNIT_AURA:nameplate:group PLAYER_TARGET_CHANGED CLEU:S
|
||||
L["Custom Trigger: Ignore Lua Errors on OPTIONS event"] = "사용자 정의 활성 조건: OPTIONS 이벤트에서 Lua 오류 무시"
|
||||
L["Custom Trigger: Send fake events instead of STATUS event"] = "사용자 정의 활성 조건: STATUS 이벤트 대신 가짜 이벤트 보내기"
|
||||
L["Custom Untrigger"] = "사용자 정의 비활성 조건"
|
||||
L["Custom Variables"] = "사용자 정의 변수"
|
||||
L["Debuff Type"] = "디버프 종류"
|
||||
L["Debug Log"] = "디버그 로그"
|
||||
L["Debug Log:"] = "디버그 로그:"
|
||||
L["Default"] = "기본값"
|
||||
@@ -351,14 +312,10 @@ UNIT_POWER_UPDATE:player, UNIT_AURA:nameplate:group PLAYER_TARGET_CHANGED CLEU:S
|
||||
L["Delete children and group"] = "자식 위크오라와 그룹 삭제"
|
||||
L["Delete Entry"] = "항목 삭제"
|
||||
L["Deleting auras: "] = "위크오라 삭제중: "
|
||||
L["Desaturate"] = "흑백"
|
||||
L["Description"] = "설명"
|
||||
L["Description Text"] = "설명 텍스트"
|
||||
L["Determines how many entries can be in the table."] = "테이블에 얼마나 많은 내역이 들어갈 수 있는지 측정합니다."
|
||||
L["Differences"] = "차이점"
|
||||
L["Disabled"] = "비활성화됨"
|
||||
L["Disallow Entry Reordering"] = "내역 재정렬 거부"
|
||||
L["Display"] = "디스플레이"
|
||||
L["Display Name"] = "표시할 이름"
|
||||
L["Display Text"] = "텍스트 표시"
|
||||
L["Displays a text, works best in combination with other displays"] = "텍스트를 표시합니다. 다른 디스플레이와 조합할 때 가장 잘 작동합니다."
|
||||
@@ -372,7 +329,6 @@ UNIT_POWER_UPDATE:player, UNIT_AURA:nameplate:group PLAYER_TARGET_CHANGED CLEU:S
|
||||
L["Drag to move"] = "드래그로 이동"
|
||||
L["Duplicate"] = "복제"
|
||||
L["Duplicate All"] = "모두 복제"
|
||||
L["Duration"] = "지속시간"
|
||||
L["Duration (s)"] = "지속시간 (초)"
|
||||
L["Duration Info"] = "지속시간 정보"
|
||||
L["Dynamic Duration"] = "동적 지속시간"
|
||||
@@ -384,7 +340,6 @@ UNIT_POWER_UPDATE:player, UNIT_AURA:nameplate:group PLAYER_TARGET_CHANGED CLEU:S
|
||||
L["Dynamic Text Replacements"] = "동적 텍스트 대체 코드"
|
||||
L["Ease Strength"] = "지연 강도"
|
||||
L["Ease type"] = "지연 방식"
|
||||
L["Edge"] = "모서리"
|
||||
L["eliding"] = "생략"
|
||||
L["Else If"] = "Else If"
|
||||
L["Else If %s"] = "Else If %s"
|
||||
@@ -411,10 +366,8 @@ UNIT_POWER_UPDATE:player, UNIT_AURA:nameplate:group PLAYER_TARGET_CHANGED CLEU:S
|
||||
L["Entry limit"] = "항목 제한 수치"
|
||||
L["Entry Name Source"] = "항목 이름 출처"
|
||||
L["Event Type"] = "이벤트 종류"
|
||||
L["Event(s)"] = "이벤트 (여럿 가능)"
|
||||
L["Everything"] = "모두"
|
||||
L["Exact Item Match"] = "정확한 아이템 일치"
|
||||
L["Exact Spell ID(s)"] = "정확한 주문 ID (여럿 가능)"
|
||||
L["Exact Spell Match"] = "정확한 주문 일치"
|
||||
L["Expand"] = "펼치기"
|
||||
L["Expand all loaded displays"] = "불러온 모든 디스플레이 목록을 펼칩니다"
|
||||
@@ -428,11 +381,8 @@ UNIT_POWER_UPDATE:player, UNIT_AURA:nameplate:group PLAYER_TARGET_CHANGED CLEU:S
|
||||
L["Extra Height"] = "추가 높이"
|
||||
L["Extra Width"] = "추가 너비"
|
||||
L["Fade"] = "사라짐"
|
||||
L["Fade In"] = "서서히 나타남"
|
||||
L["Fade Out"] = "서서히 사라짐"
|
||||
L["Fadeout Sound"] = "페이드아웃 소리 효과"
|
||||
L["Fadeout Time (seconds)"] = "페이드아웃 시간 (초)"
|
||||
L["False"] = "거짓"
|
||||
L["Fetch Affected/Unaffected Names and Units"] = "오라에 걸린/안걸린 플레이어의 이름과 유닛 정보 가져오기"
|
||||
L["Fetch Raid Mark Information"] = "공격대 징표 정보 가져오기"
|
||||
L["Fetch Role Information"] = "역할 정보 가져오기"
|
||||
@@ -461,12 +411,7 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
|
||||
L["Finishing..."] = "완료중..."
|
||||
L["Fire Orb"] = "화염 구슬"
|
||||
L["Flat Framelevels"] = "프레임레벨 통일"
|
||||
L["Font"] = "글꼴"
|
||||
L["Font Size"] = "글꼴 크기"
|
||||
L["Foreground"] = "전경"
|
||||
L["Foreground Color"] = "전경 색상"
|
||||
L["Foreground Texture"] = "전경 텍스처"
|
||||
L["Format"] = "형식"
|
||||
L["Format for %s"] = "%s의 형식"
|
||||
L["Found a Bug?"] = "버그를 발견했습니까?"
|
||||
L["Frame"] = "프레임"
|
||||
@@ -475,7 +420,6 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
|
||||
L["Frame Rate"] = "프레임 속도"
|
||||
L["Frame Strata"] = "프레임 층"
|
||||
L["Frame Width"] = "프레임 너비"
|
||||
L["Frequency"] = "빈도"
|
||||
L["Full Bar"] = "전체 바"
|
||||
L["Full Circle"] = "원 꽉 참"
|
||||
L["Global Conditions"] = "전역 조건"
|
||||
@@ -483,14 +427,10 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
|
||||
L["Glow Action"] = "반짝임 동작"
|
||||
L["Glow Anchor"] = "반짝임 앵커"
|
||||
L["Glow Color"] = "반짝임 효과 색상"
|
||||
L["Glow External Element"] = "외부 요소에 반짝임 효과 적용"
|
||||
L["Glow Frame Type"] = "반짝일 프레임 종류"
|
||||
L["Glow Type"] = "반짝임 효과 종류"
|
||||
L["Gradient End"] = "그라디언트 종료"
|
||||
L["Gradient Orientation"] = "그라디언트 진행 방향"
|
||||
L["Green Rune"] = "녹색 룬"
|
||||
L["Grid direction"] = "격자 방향"
|
||||
L["Group"] = "그룹"
|
||||
L["Group (verb)"] = "그룹 편입"
|
||||
L["Group Alpha"] = "그룹 불투명도"
|
||||
L[ [=[Group and anchor each auras by frame.
|
||||
@@ -521,25 +461,18 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
|
||||
L["Group Role"] = "그룹 역할"
|
||||
L["Group Scale"] = "그룹 크기"
|
||||
L["Group Settings"] = "그룹 설정"
|
||||
L["Group Type"] = "그룹 종류"
|
||||
L["Grow"] = "그룹 확장"
|
||||
L["Hawk"] = "매"
|
||||
L["Height"] = "높이"
|
||||
L["Help"] = "도움말"
|
||||
L["Hide"] = "숨기기"
|
||||
L["Hide Background"] = "배경 숨기기"
|
||||
L["Hide Glows applied by this aura"] = "이 위크오라를 통해 적용된 반짝임 효과 숨김"
|
||||
L["Hide on"] = "숨기기"
|
||||
L["Hide this group's children"] = "이 그룹의 자식 위크오라를 숨깁니다"
|
||||
L["Hide Timer Text"] = "타이머 텍스트 숨기기"
|
||||
L["Highlights"] = "주요사항"
|
||||
L["Horizontal Align"] = "가로 정렬"
|
||||
L["Horizontal Bar"] = "가로 형태 바"
|
||||
L["Hostility"] = "적대적"
|
||||
L["Huge Icon"] = "아주 큰 아이콘"
|
||||
L["Hybrid Position"] = "혼합 위치"
|
||||
L["Hybrid Sort Mode"] = "혼합 정렬 모드"
|
||||
L["Icon"] = "아이콘"
|
||||
L["Icon - The icon associated with the display"] = "아이콘 - 이 디스플레이와 관련된 아이콘입니다"
|
||||
L["Icon Info"] = "아이콘 정보"
|
||||
L["Icon Inset"] = "아이콘 삽입"
|
||||
@@ -558,11 +491,8 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
|
||||
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 this space will fill the entire line it is on in User Mode."] = "체크하지 않으면 이 공백은 사용자 모드에서 모든 줄에 채워질 것입니다."
|
||||
L["Ignore Dead"] = "죽음 무시"
|
||||
L["Ignore Disconnected"] = "오프라인 무시"
|
||||
L["Ignore out of casting range"] = "유효 거리 밖이면 무시"
|
||||
L["Ignore out of checking range"] = "거리 검사가 안되면 무시"
|
||||
L["Ignore Self"] = "자신 무시"
|
||||
L["Ignore Wago updates"] = "Wago 업데이트 무시"
|
||||
L["Ignored"] = "무시됨"
|
||||
L["Ignored Aura Name"] = "오라 이름 무시"
|
||||
@@ -579,11 +509,9 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
|
||||
L["Importing a group with %s child auras."] = "자식 위크오라가 %s개 있는 그룹을 가져오는 중입니다."
|
||||
L["Importing a stand-alone aura."] = "독립형 위크오라를 가져오는 중입니다."
|
||||
L["Importing...."] = "가져오는 중...."
|
||||
L["Include Pets"] = "소환수 포함"
|
||||
L["Incompatible changes to group region types detected"] = "호환되지 않는 변경점이 그룹 구역(region) 종류에서 감지됨"
|
||||
L["Incompatible changes to group structure detected"] = "그룹 구조에 호환되지 않는 변경점이 발견됨"
|
||||
L["Indent Size"] = "들여쓰기 크기"
|
||||
L["Information"] = "정보"
|
||||
L["Inner"] = "내부"
|
||||
L["Insert text replacement codes to make text dynamic."] = "텍스트를 동적으로 만들 텍스트 대체 코드를 넣으세요."
|
||||
L["Invalid Item ID"] = "잘못된 아이템 ID"
|
||||
@@ -593,7 +521,6 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
|
||||
L["Invalid target aura"] = "올바르지 않은 대상 위크오라"
|
||||
L["Invalid type for '%s'. Expected 'bool', 'number', 'select', 'string', 'timer' or 'elapsedTimer'."] = "'%s'는 올바르지 않은 종류입니다. 'bool', 'number', 'select', 'string', 'timer' 또는 'elapsedTimer'가 되야합니다."
|
||||
L["Invalid type for property '%s' in '%s'. Expected '%s'"] = "'%2$s'에서 '%1$s' 속성은 유효하지 않습니다. '%3$s'|1이;가; 되야합니다"
|
||||
L["Inverse"] = "반대로"
|
||||
L["Inverse Slant"] = "기울임 반대로"
|
||||
L["Invert the direction of progress"] = "진행 방향 반대로"
|
||||
L["Is Boss Debuff"] = "보스 디버프"
|
||||
@@ -605,47 +532,34 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
|
||||
L["Keep your Wago imports up to date with the Companion App."] = "Companion 앱으로 Wago의 위크오라를 항상 최신으로 유지하세요."
|
||||
L["Large Input"] = "큰 입력"
|
||||
L["Leaf"] = "잎사귀"
|
||||
L["Left"] = "왼쪽"
|
||||
L["Left 2 HUD position"] = "좌측 2 HUD 위치"
|
||||
L["Left HUD position"] = "좌측 HUD 위치"
|
||||
L["Length"] = "길이"
|
||||
L["Length of |cFFFF0000%s|r"] = "|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["LibSharedMedia"] = "LibSharedMedia"
|
||||
L["Limit"] = "제한"
|
||||
L["Line"] = "줄"
|
||||
L["Linear Texture %s"] = "직진 텍스처 %s"
|
||||
L["Lines & Particles"] = "선 및 입자"
|
||||
L["Linked aura: "] = "연결된 위크오라: "
|
||||
L["Load"] = "불러오기"
|
||||
L["Loaded"] = "불러옴"
|
||||
L["Loaded/Standby"] = "불러옴/대기 중"
|
||||
L["Lock Positions"] = "위치 고정"
|
||||
L["Loop"] = "반복"
|
||||
L["Low Mana"] = "마나 낮음"
|
||||
L["Magnetically Align"] = "자석 정렬"
|
||||
L["Main"] = "메인"
|
||||
L["Manual"] = "수동 설정"
|
||||
L["Manual Icon"] = "아이콘 직접 지정"
|
||||
L["Manual with %i/%i"] = "수동 %i/%i"
|
||||
L["Match Count"] = "조건이 맞는 오라의 수"
|
||||
L["Match Count per Unit"] = "유닛당 조건이 맞는 오라의 수"
|
||||
L["Matches the height setting of a horizontal bar or width for a vertical bar."] = "가로 바의 높이 또는 너비 설정을 세로 바에 맞춥니다."
|
||||
L["Max"] = "최대"
|
||||
L["Max Length"] = "최대 길이"
|
||||
L["Maximum"] = "최대"
|
||||
L["Media Type"] = "미디어 종류"
|
||||
L["Medium Icon"] = "보통 아이콘"
|
||||
L["Message"] = "메시지"
|
||||
L["Message Type"] = "메시지 종류"
|
||||
L["Min"] = "최소"
|
||||
L["Minimum"] = "최소"
|
||||
L["Mirror"] = "좌우 대칭"
|
||||
L["Model"] = "모델"
|
||||
L["Model %s"] = "모델 %s"
|
||||
L["Model Picker"] = "모델 선택"
|
||||
L["Model Settings"] = "모델 설정"
|
||||
@@ -675,22 +589,18 @@ Bleed classification via LibDispel]=] ] = [=[여러 속성 중 해제가 되는
|
||||
L["Name - The name of the display (usually an aura name), or the display's ID if there is no dynamic name"] = "이름 - 이 디스플레이의 이름이며 (일반적으론 오라 이름) 동적 이름이 없을땐 ID가 됩니다"
|
||||
L["Name Info"] = "이름 정보"
|
||||
L["Name Pattern Match"] = "이름 패턴 일치"
|
||||
L["Name(s)"] = "이름 (여럿 가능)"
|
||||
L["Name:"] = "이름:"
|
||||
L["Nameplates"] = "이름표"
|
||||
L["Negator"] = "Not"
|
||||
L["New Aura"] = "새 위크오라"
|
||||
L["New Template"] = "새 템플릿"
|
||||
L["New Value"] = "새 값"
|
||||
L["No Children"] = "자식 위크오라 없음"
|
||||
L["No Logs saved."] = "저장된 기록이 없습니다."
|
||||
L["None"] = "없음"
|
||||
L["Not a table"] = "테이블이 아님"
|
||||
L["Not all children have the same value for this option"] = "모든 자식 위크오라가 이 옵션에 같은 값을 갖지 않습니다"
|
||||
L["Not Loaded"] = "불러오지 않음"
|
||||
L["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\""] = "참고: 이 진행 출처는 전체 값/지속 시간을 제공하지 않습니다. 전체 값/지속 시간을 \"최대 진행 설정\" 옵션을 통해 반드시 설정해야 합니다"
|
||||
L["Npc ID"] = "NPC ID"
|
||||
L["Number of Entries"] = "항목 수"
|
||||
L[ [=[Occurrence of the event, reset when aura is unloaded
|
||||
Can be a range of values
|
||||
@@ -731,10 +641,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["or"] = "또는"
|
||||
L["or %s"] = "or %s"
|
||||
L["Orange Rune"] = "주황색 룬"
|
||||
L["Orientation"] = "진행 방향"
|
||||
L["Our translators (too many to name)"] = "번역해주신 분들 (일일이 열거하기 힘들 정도로 많음)"
|
||||
L["Outer"] = "외부"
|
||||
L["Outline"] = "외곽선"
|
||||
L["Overflow"] = "텍스트 넘침 처리"
|
||||
L["Overlay %s Info"] = "%s 정보 오버레이"
|
||||
L["Overlays"] = "오버레이"
|
||||
@@ -758,7 +666,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Premade Auras"] = "미리 준비된 위크오라"
|
||||
L["Premade Snippets"] = "미리 준비된 스니펫 위크오라"
|
||||
L["Preparing auras: "] = "위크오라 준비중:"
|
||||
L["Preset"] = "사전 설정"
|
||||
L["Press Ctrl+C to copy"] = "복사하려면 Ctrl+C를 누르세요"
|
||||
L["Press Ctrl+C to copy the URL"] = "URL을 복사하려면 Ctrl+C를 누르세요"
|
||||
L["Prevent Merging"] = "합쳐짐 방지"
|
||||
@@ -766,13 +673,10 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Progress Bar"] = "진행형 바"
|
||||
L["Progress Bar Settings"] = "진행형 바 설정"
|
||||
L["Progress Settings"] = "진행 설정"
|
||||
L["Progress Source"] = "진행 출처"
|
||||
L["Progress Texture"] = "진행형 텍스처"
|
||||
L["Progress Texture Settings"] = "진행형 텍스처 설정"
|
||||
L["Purple Rune"] = "보라색 룬"
|
||||
L["Put this display in a group"] = "이 디스플레이를 그룹에 넣습니다"
|
||||
L["Radius"] = "반경"
|
||||
L["Raid Role"] = "공격대 역할"
|
||||
L["Range in yards"] = "미터 단위 거리"
|
||||
L["Ready for Install"] = "설치 준비 완료"
|
||||
L["Ready for Update"] = "업데이트 준비 완료"
|
||||
@@ -780,7 +684,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Re-center Y"] = "내부 Y 좌표"
|
||||
L["Reciprocal TRIGGER:# requests will be ignored!"] = "서로 상응하는 활성 조건 # 요청은 무시됩니다!"
|
||||
L["Regions of type \"%s\" are not supported."] = "\"%s\" 종류의 구역(Region)은 지원하지 않습니다."
|
||||
L["Remaining Time"] = "남은 시간"
|
||||
L["Remove"] = "제거"
|
||||
L["Remove All Sounds"] = "모든 소리 설정 제거"
|
||||
L["Remove All Text To Speech"] = "모든 텍스트 음성 변환 제거"
|
||||
@@ -797,7 +700,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Reset all options to their default values."] = "모든 옵션을 기본값으로 재설정하십시오."
|
||||
L["Reset Entry"] = "항목 초기화"
|
||||
L["Reset to Defaults"] = "기본값으로 재설정"
|
||||
L["Right"] = "오른쪽"
|
||||
L["Right 2 HUD position"] = "우측 2 HUD 위치"
|
||||
L["Right HUD position"] = "우측 HUD 위치"
|
||||
L["Right-click for more options"] = "우클릭으로 여러 옵션 설정"
|
||||
@@ -805,7 +707,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Rotate In"] = "시계방향 회전"
|
||||
L["Rotate Out"] = "반시계방향 회전"
|
||||
L["Rotate Text"] = "텍스트 회전"
|
||||
L["Rotation"] = "회전"
|
||||
L["Rotation Mode"] = "회전 모드"
|
||||
L["Row Space"] = "행 간격"
|
||||
L["Row Width"] = "행 넓이"
|
||||
@@ -814,7 +715,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Same"] = "전경과 동일"
|
||||
L["Same texture as Foreground"] = "전경과 같은 텍스처"
|
||||
L["Saved Data"] = "저장된 데이터"
|
||||
L["Scale"] = "크기"
|
||||
L["Scale Factor"] = "크기 비율"
|
||||
L["Search API"] = "API 검색"
|
||||
L["Select Talent"] = "특성 선택"
|
||||
@@ -847,7 +747,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Show Matches for Units"] = "유닛에 대한 일치 항목 표시"
|
||||
L["Show Model"] = "모델 표시"
|
||||
L["Show model of unit "] = "유닛의 모델 표시"
|
||||
L["Show On"] = "표시 조건"
|
||||
L["Show Sound Setting"] = "소리 설정 보기"
|
||||
L["Show Spark"] = "섬광 표시"
|
||||
L["Show Stop Motion"] = "스톱 모션 표시"
|
||||
@@ -871,7 +770,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Shows a texture that changes based on duration"] = "지속시간에 따라 변화하는 텍스처를 표시합니다"
|
||||
L["Shows nothing, except sub elements"] = "하위 구성 요소 외에는 표시되는게 없습니다"
|
||||
L["Shows one or more lines of text, which can include dynamic information such as progress or stacks"] = "진행 상태나 중첩같은 동적 정보가 포함된 한 줄 이상의 텍스트를 표시합니다"
|
||||
L["Simple"] = "간편 제작"
|
||||
L["Size"] = "크기"
|
||||
L["Slant Amount"] = "기울기 양"
|
||||
L["Slant Mode"] = "기울기 모드"
|
||||
@@ -886,24 +784,15 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Soft Max"] = "최대 슬라이더 값"
|
||||
L["Soft Min"] = "최소 슬라이더 값"
|
||||
L["Sort"] = "정렬"
|
||||
L["Sound"] = "소리"
|
||||
L["Sound by Kit ID"] = "Kit ID로 소리 재생"
|
||||
L["Sound Channel"] = "소리 채널"
|
||||
L["Sound File Path"] = "소리 파일 경로"
|
||||
L["Sound Kit ID"] = "소리 Kit ID"
|
||||
L["Source"] = "출처"
|
||||
L["Space"] = "간격"
|
||||
L["Space Horizontally"] = "가로로 벌리기"
|
||||
L["Space Vertically"] = "세로로 벌리기"
|
||||
L["Spark"] = "섬광"
|
||||
L["Spark Settings"] = "섬광 설정"
|
||||
L["Spark Texture"] = "섬광 텍스처"
|
||||
L["Specialization"] = "전문화"
|
||||
L["Specific Currency ID"] = "화폐 ID 지정"
|
||||
L["Specific Unit"] = "유닛 직접 지정"
|
||||
L["Spell ID"] = "주문 ID"
|
||||
L["Spell Selection Filters"] = "주문 선정 필터"
|
||||
L["Stack Count"] = "중첩 횟수"
|
||||
L["Stack Info"] = "중첩 정보"
|
||||
L["Stacks - The number of stacks of an aura (usually)"] = "중첩 - 오라의 중첩 갯수입니다 (일반적으로)"
|
||||
L["Stagger"] = "계단식 배치"
|
||||
@@ -911,11 +800,9 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Star"] = "별"
|
||||
L["Start"] = "시작"
|
||||
L["Start Angle"] = "시작 각도"
|
||||
L["Start Animation"] = "애니메이션 시작"
|
||||
L["Start Collapsed"] = "접기 상태로 시작"
|
||||
L["Start of %s"] = "%s의 시작"
|
||||
L["Step Size"] = "간격 크기"
|
||||
L["Stop Motion"] = "스톱 모션"
|
||||
L["Stop Motion %s"] = "스톱 모션 %s"
|
||||
L["Stop Motion Settings"] = "스톱 모션 설정"
|
||||
L["Stop Sound"] = "소리 재생 중지"
|
||||
@@ -923,19 +810,14 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
L["Sub Option %i"] = "하위 옵션 %i"
|
||||
L["Subevent"] = "서브이벤트"
|
||||
L["Subevent Suffix"] = "서브이벤트 접미사"
|
||||
L["Supports multiple entries, separated by commas"] = "여러 항목을 지원하며 쉼표로 구분됨"
|
||||
L["Swipe Overlay Settings"] = "쿨타임 회전 오버레이 설정"
|
||||
L["Templates could not be loaded, the addon is %s"] = "템플릿을 불러올 수 없습니다. 애드온은 %s입니다."
|
||||
L["Temporary Group"] = "임시 그룹"
|
||||
L["Text"] = "텍스트"
|
||||
L["Text %s"] = "텍스트 %s"
|
||||
L["Text Color"] = "텍스트 색상"
|
||||
L["Text Settings"] = "텍스트 설정"
|
||||
L["Texture"] = "텍스처"
|
||||
L["Texture %s"] = "텍스처 %s"
|
||||
L["Texture Info"] = "텍스처 정보"
|
||||
L["Texture Picker"] = "텍스처 선택"
|
||||
L["Texture Rotation"] = "텍스처 회전"
|
||||
L["Texture Selection Mode"] = "텍스처 선택 모드"
|
||||
L["Texture Settings"] = "텍스처 설정"
|
||||
L["Texture Wrap"] = "텍스처 넘침 처리"
|
||||
@@ -952,7 +834,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[이벤트
|
||||
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"] = "WeakAuras Options 애드온 %s 버전이 WeakAuras %s 버전과 맞지 않습니다. 게임을 실행한 상태에서 애드온을 업데이트 했다면 월드 오브 워크래프트를 종료 후 다시 실행하세요. 그래도 안되면 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."] = "이 텍스트를 동적으로 만들 수 있는 여러 특수 코드가 있습니다. 클릭하면 모든 동적 텍스트 코드가 표시됩니다."
|
||||
L["Thickness"] = "굵기"
|
||||
L["This adds %raidMark as text replacements."] = "이 옵션을 켜면 텍스트 대체 코드에 %raidMark가 추가됩니다."
|
||||
L["This adds %role, %roleIcon as text replacements. Does nothing if the unit is not a group member."] = "이 옵션을 켜면 텍스트 대체 코드에 %role, %roleIcon이 추가됩니다. 유닛이 그룹에 없으면 작동하지 않습니다."
|
||||
L["This adds %tooltip, %tooltip1, %tooltip2, %tooltip3 and %tooltip4 as text replacements and also allows filtering based on the tooltip content/values."] = "이 옵션을 켜면 텍스트 대체 코드에 %tooltip, %tooltip1, %tooltip2, %tooltip3, %tooltip4를 추가해서 툴팁 내용/수치 정보를 추출할 수 있게 해줍니다."
|
||||
@@ -988,33 +869,23 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Toggle the visibility of all loaded displays"] = "불러온 모든 디스플레이를 표시하거나 숨깁니다"
|
||||
L["Toggle the visibility of all non-loaded displays"] = "불러오지 않은 모든 디스플레이를 표시하거나 숨깁니다"
|
||||
L["Toggle the visibility of this display"] = "이 디스플레이를 표시하거나 숨깁니다"
|
||||
L["Tooltip"] = "툴팁"
|
||||
L["Tooltip Content"] = "툴팁 내용"
|
||||
L["Tooltip on Mouseover"] = "마우스 커서를 올리면 툴팁 표시"
|
||||
L["Tooltip Pattern Match"] = "툴팁 패턴 일치"
|
||||
L["Tooltip Text"] = "툴팁 텍스트"
|
||||
L["Tooltip Value"] = "툴팁 값"
|
||||
L["Tooltip Value #"] = "툴팁 값 #"
|
||||
L["Top"] = "위"
|
||||
L["Top HUD position"] = "상단 HUD 위치"
|
||||
L["Top Left"] = "왼쪽 위"
|
||||
L["Top Right"] = "오른쪽 위"
|
||||
L["Total"] = "전체 값"
|
||||
L["Total - The maximum duration of a timer, or a maximum non-timer value"] = "최대값 - 타이머의 최대 지속시간 또는 타이머가 아닌 것의 최대 값입니다"
|
||||
L["Total Angle"] = "총 각도"
|
||||
L["Total Time"] = "전체 시간"
|
||||
L["Trigger"] = "활성 조건"
|
||||
L["Trigger %i"] = "활성 조건 %i"
|
||||
L["Trigger %i: %s"] = "활성 조건 %i: %s"
|
||||
L["Trigger Combination"] = "활성 조건 조합"
|
||||
L["True"] = "참"
|
||||
L["Type"] = "종류"
|
||||
L["Type 'select' for '%s' requires a values member'"] = "'%s'에서 'select' 유형은 값들의 구성원을 필요로 합니다"
|
||||
L["Ungroup"] = "그룹 해제"
|
||||
L["Unit"] = "유닛"
|
||||
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "%s 유닛은 RegisterUnitEvent에 적합하지 않습니다."
|
||||
L["Unit Count"] = "유닛 수"
|
||||
L["Unit Frames"] = "유닛 프레임"
|
||||
L["Unknown"] = "알 수 없음"
|
||||
L["Unknown Encounter's Spell Id"] = "알 수 없는 보스전의 주문 ID"
|
||||
L["Unknown property '%s' found in '%s'"] = "'%2$s'에 알 수 없는 속성 '%1$s'|1이;가; 있음"
|
||||
@@ -1025,14 +896,11 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Update Custom Text On..."] = "사용자 정의 텍스트 업데이트 시점..."
|
||||
L["URL"] = "URL"
|
||||
L["Url: %s"] = "URL: %s"
|
||||
L["Use Custom Color"] = "사용자 정의 색상 사용"
|
||||
L["Use Display Info Id"] = "디스플레이 정보 ID 사용"
|
||||
L["Use SetTransform"] = "SetTransform 사용"
|
||||
L["Use Texture"] = "텍스처 사용"
|
||||
L["Used in Auras:"] = "위크오라에서 사용됨:"
|
||||
L["Used in auras:"] = "위크오라에서 사용됨:"
|
||||
L["Uses Texture Coordinates to rotate the texture."] = "회전에 텍스처 좌표를 사용합니다."
|
||||
L["Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."] = "유효 거리 안에 있는지 검사를 위해 UnitInRange()를 사용합니다. 기본 공격대 프레임의 유효 거리 검사 방식과 마찬가지로 직업과 전문화에 따라 25~40미터 사이를 감지합니다."
|
||||
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."] = "UnitIsVisible()을 사용해서 게임 클라이언트가 이 유닛의 오브젝트를 불러왔는지를 검사합니다. 검사 거리는 약 100미터 정도입니다. 매 초마다 검사합니다."
|
||||
L["Value"] = "값"
|
||||
L["Value %i"] = "값 %i"
|
||||
@@ -1051,19 +919,16 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["WeakAuras %s on WoW %s"] = "WeakAuras %s (WoW %s)"
|
||||
L["What do you want to do?"] = "무엇을 할까요?"
|
||||
L["Whole Area"] = "전체 영역"
|
||||
L["Width"] = "너비"
|
||||
L["wrapping"] = "줄바꿈"
|
||||
L["X Offset"] = "X 위치 조정"
|
||||
L["X Rotation"] = "X 회전"
|
||||
L["X Scale"] = "X 크기"
|
||||
L["x-Offset"] = "x-위치 조정"
|
||||
L["X-Offset"] = "X-위치 조정"
|
||||
L["Y Offset"] = "Y 위치 조정"
|
||||
L["Y Rotation"] = "Y 회전"
|
||||
L["Y Scale"] = "Y 크기"
|
||||
L["Yellow Rune"] = "노란색 룬"
|
||||
L["y-Offset"] = "y-위치 조정"
|
||||
L["Y-Offset"] = "Y-위치 조정"
|
||||
L["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?"] = "위크오라 %d개를 삭제하려고 합니다. |cFFFF0000이는 되돌릴 수 없습니다!|r 계속할까요?"
|
||||
L["You are about to delete a trigger. |cFFFF0000This cannot be undone!|r Would you like to continue?"] = "이 활성 조건을 삭제하려고 합니다. |cFFFF0000이는 되돌릴 수 없습니다!|r 계속할까요?"
|
||||
@@ -1077,7 +942,6 @@ WeakAuras will always run custom grow code if you include 'changed' in this list
|
||||
L["Your Saved Snippets"] = "저장된 스니펫"
|
||||
L["Z Offset"] = "Z 위치 조정"
|
||||
L["Z Rotation"] = "Z 회전"
|
||||
L["Zoom"] = "확대"
|
||||
L["Zoom In"] = "확대"
|
||||
L["Zoom Out"] = "축소"
|
||||
|
||||
|
||||
@@ -184,12 +184,10 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["A Unit ID (e.g., party1)."] = "O ID de uma unidade (por exemplo, grupo1)."
|
||||
--[[Translation missing --]]
|
||||
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
|
||||
L["Actions"] = "Ações"
|
||||
--[[Translation missing --]]
|
||||
L["Active Aura Filters and Info"] = "Active Aura Filters and Info"
|
||||
--[[Translation missing --]]
|
||||
L["Actual Spec"] = "Actual Spec"
|
||||
L["Add"] = "Adicionar"
|
||||
L["Add %s"] = "Adicionar %s"
|
||||
L["Add a new display"] = "Adicionar um novo display"
|
||||
L["Add Condition"] = "Adicionar condição"
|
||||
@@ -217,15 +215,14 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["All of"] = "Todos"
|
||||
--[[Translation missing --]]
|
||||
L["Allow Full Rotation"] = "Allow Full Rotation"
|
||||
L["Alpha"] = "Transparência"
|
||||
L["Anchor"] = "Âncora"
|
||||
--[[Translation missing --]]
|
||||
L["Anchor Mode"] = "Anchor Mode"
|
||||
L["Anchor Point"] = "Ponto da âncora"
|
||||
L["Anchored To"] = "Ancorado a"
|
||||
L["And "] = "E"
|
||||
--[[Translation missing --]]
|
||||
L["and"] = "and"
|
||||
L["And "] = "E"
|
||||
--[[Translation missing --]]
|
||||
L["and %s"] = "and %s"
|
||||
L["and aligned left"] = "e alinhado à esquerda"
|
||||
@@ -252,7 +249,6 @@ Se a duração da animação estiver setada para |cFF00C0010%|r, e o gatilho do
|
||||
WeakAuras → Opções → Opções ]=]
|
||||
L["Animation Sequence"] = "Sequência da animação"
|
||||
L["Animation Start"] = "Começo de Animação"
|
||||
L["Animations"] = "Animações"
|
||||
L["Any of"] = "Qualquer"
|
||||
L["Apply Template"] = "Aplicar Modelo"
|
||||
L["Arcane Orb"] = "Orbe Arcano"
|
||||
@@ -263,23 +259,17 @@ WeakAuras → Opções → Opções ]=]
|
||||
L["At the same position as Blizzard's spell alert"] = "Na mesma posição do alerta de feitiço da Blizzard"
|
||||
--[[Translation missing --]]
|
||||
L["Attach to Foreground"] = "Attach to Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Aura"] = "Aura"
|
||||
L[ [=[Aura is
|
||||
Off Screen]=] ] = "Aura está fora da tela"
|
||||
L["Aura Name"] = "Nome da Aura"
|
||||
L["Aura Name Pattern"] = "Padrão de nome da aura"
|
||||
--[[Translation missing --]]
|
||||
L["Aura Order"] = "Aura Order"
|
||||
--[[Translation missing --]]
|
||||
L["Aura received from: %s"] = "Aura received from: %s"
|
||||
L["Aura Type"] = "Tipo de Aura"
|
||||
--[[Translation missing --]]
|
||||
L["Aura: '%s'"] = "Aura: '%s'"
|
||||
L["Author Options"] = "Opções de Autor"
|
||||
--[[Translation missing --]]
|
||||
L["Auto-Clone (Show All Matches)"] = "Auto-Clone (Show All Matches)"
|
||||
L["Automatic"] = "Automático"
|
||||
L["Automatic length"] = "Comprimento Automático"
|
||||
--[[Translation missing --]]
|
||||
L["Available Voices are system specific"] = "Available Voices are system specific"
|
||||
@@ -289,23 +279,15 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
L["Backdrop in Front"] = "Backdrop in Front"
|
||||
--[[Translation missing --]]
|
||||
L["Backdrop Style"] = "Backdrop Style"
|
||||
L["Background"] = "Plano de fundo"
|
||||
L["Background Color"] = "Cor de fundo"
|
||||
L["Background Inner"] = "Plano de Fundo Interno"
|
||||
L["Background Offset"] = "Posicionamento do Fundo"
|
||||
L["Background Texture"] = "Textura do fundo"
|
||||
L["Bar Alpha"] = "Transparência da barra"
|
||||
L["Bar Color Settings"] = "Configurações de Cor da Barra"
|
||||
--[[Translation missing --]]
|
||||
L["Bar Color/Gradient Start"] = "Bar Color/Gradient Start"
|
||||
L["Bar Texture"] = "Textura da barra"
|
||||
L["Big Icon"] = "Ícone Grande"
|
||||
L["Blend Mode"] = "Modo de mistura"
|
||||
--[[Translation missing --]]
|
||||
L["Blizzard Cooldown Reduction"] = "Blizzard Cooldown Reduction"
|
||||
L["Blue Rune"] = "Runa Azul"
|
||||
L["Blue Sparkle Orb"] = "Orbe Cintilante Azul"
|
||||
L["Border"] = "Borda"
|
||||
L["Border %s"] = "Borda %s"
|
||||
L["Border Anchor"] = "Âncora da Borda"
|
||||
L["Border Color"] = "Cor da Borda"
|
||||
@@ -315,9 +297,6 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
L["Border Settings"] = "Configurações da Borda"
|
||||
L["Border Size"] = "Tamanho da Borda"
|
||||
L["Border Style"] = "Estilo da Borda"
|
||||
L["Bottom"] = "Embaixo"
|
||||
L["Bottom Left"] = "Embaixo à esquerda"
|
||||
L["Bottom Right"] = "Embaixo à direita"
|
||||
--[[Translation missing --]]
|
||||
L["Bracket Matching"] = "Bracket Matching"
|
||||
L["Browse Wago, the largest collection of auras."] = "Acesse Wago, a maior coleção de auras."
|
||||
@@ -328,17 +307,14 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
L["Can set to 0 if Columns * Width equal File Width"] = "Can set to 0 if Columns * Width equal File Width"
|
||||
--[[Translation missing --]]
|
||||
L["Can set to 0 if Rows * Height equal File Height"] = "Can set to 0 if Rows * Height equal File Height"
|
||||
L["Cancel"] = "Cancelar"
|
||||
--[[Translation missing --]]
|
||||
L["Case Insensitive"] = "Case Insensitive"
|
||||
--[[Translation missing --]]
|
||||
L["Cast by a Player Character"] = "Cast by a Player Character"
|
||||
--[[Translation missing --]]
|
||||
L["Categories to Update"] = "Categories to Update"
|
||||
L["Center"] = "Centro"
|
||||
--[[Translation missing --]]
|
||||
L["Changelog"] = "Changelog"
|
||||
L["Chat Message"] = "Mensagem do Chat"
|
||||
L["Chat with WeakAuras experts on our Discord server."] = "Converso com especialistas do WeakAuras no nosso servidor do Discord."
|
||||
L["Check On..."] = "Verificar..."
|
||||
L["Check out our wiki for a large collection of examples and snippets."] = "Confira nosso wiki para uma grande coleção de exemplos e fragmentos."
|
||||
@@ -346,7 +322,6 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
L["Choose"] = "Escolher"
|
||||
--[[Translation missing --]]
|
||||
L["Circular Texture %s"] = "Circular Texture %s"
|
||||
L["Class"] = "Classe"
|
||||
--[[Translation missing --]]
|
||||
L["Clear Debug Logs"] = "Clear Debug Logs"
|
||||
--[[Translation missing --]]
|
||||
@@ -355,8 +330,6 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
L["Clip Overlays"] = "Clip Overlays"
|
||||
--[[Translation missing --]]
|
||||
L["Clipped by Foreground"] = "Clipped by Foreground"
|
||||
--[[Translation missing --]]
|
||||
L["Clockwise"] = "Clockwise"
|
||||
L["Close"] = "Fechar"
|
||||
--[[Translation missing --]]
|
||||
L["Code Editor"] = "Code Editor"
|
||||
@@ -370,7 +343,6 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
--[[Translation missing --]]
|
||||
L["Collapsible Group"] = "Collapsible Group"
|
||||
L["color"] = "cor"
|
||||
L["Color"] = "Cor"
|
||||
--[[Translation missing --]]
|
||||
L["Column Height"] = "Column Height"
|
||||
--[[Translation missing --]]
|
||||
@@ -389,7 +361,6 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
--[[Translation missing --]]
|
||||
L["Compatibility Options"] = "Compatibility Options"
|
||||
L["Compress"] = "Comprimir"
|
||||
L["Conditions"] = "Condições"
|
||||
L["Configure what options appear on this panel."] = "Configure quais opções aparecem neste painel."
|
||||
L["Constant Factor"] = "Fator constante"
|
||||
--[[Translation missing --]]
|
||||
@@ -399,15 +370,12 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."] = "Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."
|
||||
--[[Translation missing --]]
|
||||
L["Copy"] = "Copy"
|
||||
L["Copy settings..."] = "Copiar configurações"
|
||||
--[[Translation missing --]]
|
||||
L["Copy to all auras"] = "Copy to all auras"
|
||||
--[[Translation missing --]]
|
||||
L["Could not parse '%s'. Expected a table."] = "Could not parse '%s'. Expected a table."
|
||||
L["Count"] = "Contar"
|
||||
--[[Translation missing --]]
|
||||
L["Counts the number of matches over all units."] = "Counts the number of matches over all units."
|
||||
--[[Translation missing --]]
|
||||
@@ -416,33 +384,15 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
L["Create a Copy"] = "Create a Copy"
|
||||
L["Creating buttons: "] = "Criando botões:"
|
||||
L["Creating options: "] = "Criando opções:"
|
||||
L["Crop X"] = "Cortar X"
|
||||
L["Crop Y"] = "Cortar Y"
|
||||
--[[Translation missing --]]
|
||||
L["Custom"] = "Custom"
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Custom Anchor"] = "Custom Anchor"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Check"] = "Custom Check"
|
||||
L["Custom Code"] = "Código personalizado"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Code Viewer"] = "Custom Code Viewer"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Color"] = "Custom Color"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Configuration"] = "Custom Configuration"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Frames"] = "Custom Frames"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Function"] = "Custom Function"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Grow"] = "Custom Grow"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Options"] = "Custom Options"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Sort"] = "Custom Sort"
|
||||
L["Custom Trigger"] = "Gatilho personalizado"
|
||||
--[[Translation missing --]]
|
||||
L["Custom trigger event tooltip"] = "Custom trigger event tooltip"
|
||||
@@ -455,9 +405,6 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Untrigger"] = "Custom Untrigger"
|
||||
--[[Translation missing --]]
|
||||
L["Custom Variables"] = "Custom Variables"
|
||||
L["Debuff Type"] = "Tipo de penalidade"
|
||||
--[[Translation missing --]]
|
||||
L["Debug Log"] = "Debug Log"
|
||||
--[[Translation missing --]]
|
||||
L["Debug Log:"] = "Debug Log:"
|
||||
@@ -474,16 +421,12 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
L["Delete Entry"] = "Delete Entry"
|
||||
--[[Translation missing --]]
|
||||
L["Deleting auras: "] = "Deleting auras: "
|
||||
L["Desaturate"] = "Descolorir"
|
||||
L["Description"] = "Descrição"
|
||||
L["Description Text"] = "Texto Descritivo"
|
||||
--[[Translation missing --]]
|
||||
L["Determines how many entries can be in the table."] = "Determines how many entries can be in the table."
|
||||
L["Differences"] = "Diferenças"
|
||||
L["Disabled"] = "Desabilitar"
|
||||
--[[Translation missing --]]
|
||||
L["Disallow Entry Reordering"] = "Disallow Entry Reordering"
|
||||
L["Display"] = "Mostruário"
|
||||
--[[Translation missing --]]
|
||||
L["Display Name"] = "Display Name"
|
||||
L["Display Text"] = "Texto do mostruário"
|
||||
@@ -504,8 +447,6 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
L["Duplicate"] = "Duplicar"
|
||||
--[[Translation missing --]]
|
||||
L["Duplicate All"] = "Duplicate All"
|
||||
--[[Translation missing --]]
|
||||
L["Duration"] = "Duration"
|
||||
L["Duration (s)"] = "Duração"
|
||||
L["Duration Info"] = "Informação da duração"
|
||||
--[[Translation missing --]]
|
||||
@@ -526,8 +467,6 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
--[[Translation missing --]]
|
||||
L["Ease type"] = "Ease type"
|
||||
--[[Translation missing --]]
|
||||
L["Edge"] = "Edge"
|
||||
--[[Translation missing --]]
|
||||
L["eliding"] = "eliding"
|
||||
--[[Translation missing --]]
|
||||
L["Else If"] = "Else If"
|
||||
@@ -576,13 +515,10 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
--[[Translation missing --]]
|
||||
L["Entry Name Source"] = "Entry Name Source"
|
||||
L["Event Type"] = "Tipo de evento"
|
||||
L["Event(s)"] = "Evento(s)"
|
||||
L["Everything"] = "Tudo"
|
||||
--[[Translation missing --]]
|
||||
L["Exact Item Match"] = "Exact Item Match"
|
||||
--[[Translation missing --]]
|
||||
L["Exact Spell ID(s)"] = "Exact Spell ID(s)"
|
||||
--[[Translation missing --]]
|
||||
L["Exact Spell Match"] = "Exact Spell Match"
|
||||
L["Expand"] = "Expandir"
|
||||
L["Expand all loaded displays"] = "Expandir todos os mostruários carregados"
|
||||
@@ -604,16 +540,10 @@ Off Screen]=] ] = "Aura está fora da tela"
|
||||
L["Extra Width"] = "Extra Width"
|
||||
L["Fade"] = "Sumir"
|
||||
--[[Translation missing --]]
|
||||
L["Fade In"] = "Fade In"
|
||||
--[[Translation missing --]]
|
||||
L["Fade Out"] = "Fade Out"
|
||||
--[[Translation missing --]]
|
||||
L["Fadeout Sound"] = "Fadeout Sound"
|
||||
--[[Translation missing --]]
|
||||
L["Fadeout Time (seconds)"] = "Fadeout Time (seconds)"
|
||||
--[[Translation missing --]]
|
||||
L["False"] = "False"
|
||||
--[[Translation missing --]]
|
||||
L["Fetch Affected/Unaffected Names and Units"] = "Fetch Affected/Unaffected Names and Units"
|
||||
--[[Translation missing --]]
|
||||
L["Fetch Raid Mark Information"] = "Fetch Raid Mark Information"
|
||||
@@ -663,16 +593,8 @@ Bleed classification via LibDispel]=]
|
||||
L["Fire Orb"] = "Fire Orb"
|
||||
--[[Translation missing --]]
|
||||
L["Flat Framelevels"] = "Flat Framelevels"
|
||||
L["Font"] = "Fonte"
|
||||
--[[Translation missing --]]
|
||||
L["Font Size"] = "Font Size"
|
||||
--[[Translation missing --]]
|
||||
L["Foreground"] = "Foreground"
|
||||
L["Foreground Color"] = "Cor do primeiro plano"
|
||||
L["Foreground Texture"] = "Textura do primeiro plano"
|
||||
--[[Translation missing --]]
|
||||
L["Format"] = "Format"
|
||||
--[[Translation missing --]]
|
||||
L["Format for %s"] = "Format for %s"
|
||||
L["Found a Bug?"] = "Encontrou um Bug?"
|
||||
L["Frame"] = "Quadro"
|
||||
@@ -686,8 +608,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Frame Width"] = "Frame Width"
|
||||
--[[Translation missing --]]
|
||||
L["Frequency"] = "Frequency"
|
||||
--[[Translation missing --]]
|
||||
L["Full Bar"] = "Full Bar"
|
||||
--[[Translation missing --]]
|
||||
L["Full Circle"] = "Full Circle"
|
||||
@@ -700,20 +620,13 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Glow Color"] = "Glow Color"
|
||||
--[[Translation missing --]]
|
||||
L["Glow External Element"] = "Glow External Element"
|
||||
--[[Translation missing --]]
|
||||
L["Glow Frame Type"] = "Glow Frame Type"
|
||||
--[[Translation missing --]]
|
||||
L["Glow Type"] = "Glow Type"
|
||||
--[[Translation missing --]]
|
||||
L["Gradient End"] = "Gradient End"
|
||||
--[[Translation missing --]]
|
||||
L["Gradient Orientation"] = "Gradient Orientation"
|
||||
--[[Translation missing --]]
|
||||
L["Green Rune"] = "Green Rune"
|
||||
--[[Translation missing --]]
|
||||
L["Grid direction"] = "Grid direction"
|
||||
L["Group"] = "Grupo"
|
||||
--[[Translation missing --]]
|
||||
L["Group (verb)"] = "Group (verb)"
|
||||
--[[Translation missing --]]
|
||||
@@ -747,16 +660,9 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Group Settings"] = "Group Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Group Type"] = "Group Type"
|
||||
--[[Translation missing --]]
|
||||
L["Grow"] = "Grow"
|
||||
--[[Translation missing --]]
|
||||
L["Hawk"] = "Hawk"
|
||||
L["Height"] = "Altura"
|
||||
L["Help"] = "Ajuda"
|
||||
--[[Translation missing --]]
|
||||
L["Hide"] = "Hide"
|
||||
--[[Translation missing --]]
|
||||
L["Hide Background"] = "Hide Background"
|
||||
--[[Translation missing --]]
|
||||
L["Hide Glows applied by this aura"] = "Hide Glows applied by this aura"
|
||||
@@ -765,20 +671,15 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Hide this group's children"] = "Hide this group's children"
|
||||
--[[Translation missing --]]
|
||||
L["Hide Timer Text"] = "Hide Timer Text"
|
||||
--[[Translation missing --]]
|
||||
L["Highlights"] = "Highlights"
|
||||
L["Horizontal Align"] = "Alinhamento horizontal"
|
||||
L["Horizontal Bar"] = "Barra Horizontal"
|
||||
--[[Translation missing --]]
|
||||
L["Hostility"] = "Hostility"
|
||||
--[[Translation missing --]]
|
||||
L["Huge Icon"] = "Huge Icon"
|
||||
--[[Translation missing --]]
|
||||
L["Hybrid Position"] = "Hybrid Position"
|
||||
--[[Translation missing --]]
|
||||
L["Hybrid Sort Mode"] = "Hybrid Sort Mode"
|
||||
L["Icon"] = "Ícone"
|
||||
--[[Translation missing --]]
|
||||
L["Icon - The icon associated with the display"] = "Icon - The icon associated with the display"
|
||||
L["Icon Info"] = "Informação do ícone"
|
||||
@@ -813,16 +714,10 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Dead"] = "Ignore Dead"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Disconnected"] = "Ignore Disconnected"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore out of casting range"] = "Ignore out of casting range"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore out of checking range"] = "Ignore out of checking range"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Self"] = "Ignore Self"
|
||||
--[[Translation missing --]]
|
||||
L["Ignore Wago updates"] = "Ignore Wago updates"
|
||||
L["Ignored"] = "Ignorado"
|
||||
--[[Translation missing --]]
|
||||
@@ -852,16 +747,12 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Importing...."] = "Importing...."
|
||||
--[[Translation missing --]]
|
||||
L["Include Pets"] = "Include Pets"
|
||||
--[[Translation missing --]]
|
||||
L["Incompatible changes to group region types detected"] = "Incompatible changes to group region types detected"
|
||||
--[[Translation missing --]]
|
||||
L["Incompatible changes to group structure detected"] = "Incompatible changes to group structure detected"
|
||||
--[[Translation missing --]]
|
||||
L["Indent Size"] = "Indent Size"
|
||||
--[[Translation missing --]]
|
||||
L["Information"] = "Information"
|
||||
--[[Translation missing --]]
|
||||
L["Inner"] = "Inner"
|
||||
--[[Translation missing --]]
|
||||
L["Insert text replacement codes to make text dynamic."] = "Insert text replacement codes to make text dynamic."
|
||||
@@ -880,8 +771,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Invalid type for property '%s' in '%s'. Expected '%s'"] = "Invalid type for property '%s' in '%s'. Expected '%s'"
|
||||
--[[Translation missing --]]
|
||||
L["Inverse"] = "Inverse"
|
||||
--[[Translation missing --]]
|
||||
L["Inverse Slant"] = "Inverse Slant"
|
||||
--[[Translation missing --]]
|
||||
L["Invert the direction of progress"] = "Invert the direction of progress"
|
||||
@@ -901,14 +790,10 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Leaf"] = "Leaf"
|
||||
--[[Translation missing --]]
|
||||
L["Left"] = "Left"
|
||||
--[[Translation missing --]]
|
||||
L["Left 2 HUD position"] = "Left 2 HUD position"
|
||||
--[[Translation missing --]]
|
||||
L["Left HUD position"] = "Left HUD position"
|
||||
--[[Translation missing --]]
|
||||
L["Length"] = "Length"
|
||||
--[[Translation missing --]]
|
||||
L["Length of |cFFFF0000%s|r"] = "Length of |cFFFF0000%s|r"
|
||||
--[[Translation missing --]]
|
||||
L["LibCompress: Galmok"] = "LibCompress: Galmok"
|
||||
@@ -921,7 +806,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["LibSerialize: Sanjo"] = "LibSerialize: Sanjo"
|
||||
--[[Translation missing --]]
|
||||
L["LibSharedMedia"] = "LibSharedMedia"
|
||||
--[[Translation missing --]]
|
||||
L["Limit"] = "Limit"
|
||||
--[[Translation missing --]]
|
||||
@@ -929,8 +813,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Linear Texture %s"] = "Linear Texture %s"
|
||||
--[[Translation missing --]]
|
||||
L["Lines & Particles"] = "Lines & Particles"
|
||||
--[[Translation missing --]]
|
||||
L["Linked aura: "] = "Linked aura: "
|
||||
--[[Translation missing --]]
|
||||
L["Load"] = "Load"
|
||||
@@ -939,22 +821,12 @@ Bleed classification via LibDispel]=]
|
||||
L["Loaded/Standby"] = "Loaded/Standby"
|
||||
L["Lock Positions"] = "Travar Posições"
|
||||
--[[Translation missing --]]
|
||||
L["Loop"] = "Loop"
|
||||
--[[Translation missing --]]
|
||||
L["Low Mana"] = "Low Mana"
|
||||
L["Magnetically Align"] = "Alinhar Magneticamente"
|
||||
L["Main"] = "Principal"
|
||||
--[[Translation missing --]]
|
||||
L["Manual"] = "Manual"
|
||||
--[[Translation missing --]]
|
||||
L["Manual Icon"] = "Manual Icon"
|
||||
--[[Translation missing --]]
|
||||
L["Manual with %i/%i"] = "Manual with %i/%i"
|
||||
--[[Translation missing --]]
|
||||
L["Match Count"] = "Match Count"
|
||||
--[[Translation missing --]]
|
||||
L["Match Count per Unit"] = "Match Count per Unit"
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Max"] = "Max"
|
||||
@@ -967,15 +839,9 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["Medium Icon"] = "Medium Icon"
|
||||
--[[Translation missing --]]
|
||||
L["Message"] = "Message"
|
||||
--[[Translation missing --]]
|
||||
L["Message Type"] = "Message Type"
|
||||
--[[Translation missing --]]
|
||||
L["Min"] = "Min"
|
||||
--[[Translation missing --]]
|
||||
L["Minimum"] = "Minimum"
|
||||
L["Mirror"] = "Espelho"
|
||||
L["Model"] = "Modelo"
|
||||
--[[Translation missing --]]
|
||||
L["Model %s"] = "Model %s"
|
||||
--[[Translation missing --]]
|
||||
@@ -1020,10 +886,7 @@ Bleed classification via LibDispel]=]
|
||||
L["Name Info"] = "Informação do Nome"
|
||||
--[[Translation missing --]]
|
||||
L["Name Pattern Match"] = "Name Pattern Match"
|
||||
L["Name(s)"] = "Nome(s)"
|
||||
L["Name:"] = "Nome:"
|
||||
--[[Translation missing --]]
|
||||
L["Nameplates"] = "Nameplates"
|
||||
L["Negator"] = "Negador"
|
||||
L["New Aura"] = "Nova Aura"
|
||||
--[[Translation missing --]]
|
||||
@@ -1035,8 +898,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
L["No Logs saved."] = "No Logs saved."
|
||||
--[[Translation missing --]]
|
||||
L["None"] = "None"
|
||||
--[[Translation missing --]]
|
||||
L["Not a table"] = "Not a table"
|
||||
--[[Translation missing --]]
|
||||
L["Not all children have the same value for this option"] = "Not all children have the same value for this option"
|
||||
@@ -1046,8 +907,6 @@ Bleed classification via LibDispel]=]
|
||||
--[[Translation missing --]]
|
||||
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\""
|
||||
--[[Translation missing --]]
|
||||
L["Npc ID"] = "Npc ID"
|
||||
--[[Translation missing --]]
|
||||
L["Number of Entries"] = "Number of Entries"
|
||||
--[[Translation missing --]]
|
||||
L[ [=[Occurrence of the event, reset when aura is unloaded
|
||||
@@ -1102,12 +961,10 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["or %s"] = "or %s"
|
||||
--[[Translation missing --]]
|
||||
L["Orange Rune"] = "Orange Rune"
|
||||
L["Orientation"] = "Orientação"
|
||||
--[[Translation missing --]]
|
||||
L["Our translators (too many to name)"] = "Our translators (too many to name)"
|
||||
--[[Translation missing --]]
|
||||
L["Outer"] = "Outer"
|
||||
L["Outline"] = "Contorno"
|
||||
--[[Translation missing --]]
|
||||
L["Overflow"] = "Overflow"
|
||||
--[[Translation missing --]]
|
||||
@@ -1152,8 +1009,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Preparing auras: "] = "Preparing auras: "
|
||||
--[[Translation missing --]]
|
||||
L["Preset"] = "Preset"
|
||||
--[[Translation missing --]]
|
||||
L["Press Ctrl+C to copy"] = "Press Ctrl+C to copy"
|
||||
--[[Translation missing --]]
|
||||
L["Press Ctrl+C to copy the URL"] = "Press Ctrl+C to copy the URL"
|
||||
@@ -1166,8 +1021,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Progress Bar Settings"] = "Progress Bar Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Settings"] = "Progress Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Source"] = "Progress Source"
|
||||
L["Progress Texture"] = "Textura de Progresso"
|
||||
--[[Translation missing --]]
|
||||
L["Progress Texture Settings"] = "Progress Texture Settings"
|
||||
@@ -1176,10 +1029,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Put this display in a group"] = "Put this display in a group"
|
||||
--[[Translation missing --]]
|
||||
L["Radius"] = "Radius"
|
||||
--[[Translation missing --]]
|
||||
L["Raid Role"] = "Raid Role"
|
||||
--[[Translation missing --]]
|
||||
L["Range in yards"] = "Range in yards"
|
||||
--[[Translation missing --]]
|
||||
L["Ready for Install"] = "Ready for Install"
|
||||
@@ -1191,8 +1040,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Reciprocal TRIGGER:# requests will be ignored!"] = "Reciprocal TRIGGER:# requests will be ignored!"
|
||||
--[[Translation missing --]]
|
||||
L["Regions of type \"%s\" are not supported."] = "Regions of type \"%s\" are not supported."
|
||||
--[[Translation missing --]]
|
||||
L["Remaining Time"] = "Remaining Time"
|
||||
L["Remove"] = "Remover"
|
||||
--[[Translation missing --]]
|
||||
L["Remove All Sounds"] = "Remove All Sounds"
|
||||
@@ -1221,8 +1068,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Reset Entry"] = "Reset Entry"
|
||||
L["Reset to Defaults"] = "Redefinir para os padrões"
|
||||
--[[Translation missing --]]
|
||||
L["Right"] = "Right"
|
||||
--[[Translation missing --]]
|
||||
L["Right 2 HUD position"] = "Right 2 HUD position"
|
||||
--[[Translation missing --]]
|
||||
L["Right HUD position"] = "Right HUD position"
|
||||
@@ -1231,7 +1076,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
L["Rotate In"] = "Girar para dentro"
|
||||
L["Rotate Out"] = "Girar para fora"
|
||||
L["Rotate Text"] = "Girar o texto"
|
||||
L["Rotation"] = "Rotação"
|
||||
--[[Translation missing --]]
|
||||
L["Rotation Mode"] = "Rotation Mode"
|
||||
--[[Translation missing --]]
|
||||
@@ -1248,8 +1092,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Saved Data"] = "Saved Data"
|
||||
--[[Translation missing --]]
|
||||
L["Scale"] = "Scale"
|
||||
--[[Translation missing --]]
|
||||
L["Scale Factor"] = "Scale Factor"
|
||||
--[[Translation missing --]]
|
||||
L["Search API"] = "Search API"
|
||||
@@ -1311,8 +1153,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Show model of unit "] = "Show model of unit "
|
||||
--[[Translation missing --]]
|
||||
L["Show On"] = "Show On"
|
||||
--[[Translation missing --]]
|
||||
L["Show Sound Setting"] = "Show Sound Setting"
|
||||
--[[Translation missing --]]
|
||||
L["Show Spark"] = "Show Spark"
|
||||
@@ -1350,7 +1190,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
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"] = "Mostra uma ou mais linhas de texto, que podem incluir informações dinâmicas tal como progresso ou quantidades"
|
||||
L["Simple"] = "Simples"
|
||||
L["Size"] = "Tamanho"
|
||||
--[[Translation missing --]]
|
||||
L["Slant Amount"] = "Slant Amount"
|
||||
@@ -1374,34 +1213,20 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Soft Min"] = "Soft Min"
|
||||
L["Sort"] = "Ordenar"
|
||||
L["Sound"] = "Som"
|
||||
--[[Translation missing --]]
|
||||
L["Sound by Kit ID"] = "Sound by Kit ID"
|
||||
L["Sound Channel"] = "Canal de som"
|
||||
L["Sound File Path"] = "Caminho do arquivo de som"
|
||||
--[[Translation missing --]]
|
||||
L["Sound Kit ID"] = "Sound Kit ID"
|
||||
--[[Translation missing --]]
|
||||
L["Source"] = "Source"
|
||||
L["Space"] = "Espaço"
|
||||
L["Space Horizontally"] = "Espaço horizontal"
|
||||
L["Space Vertically"] = "Espaçar Verticalmente"
|
||||
--[[Translation missing --]]
|
||||
L["Spark"] = "Spark"
|
||||
--[[Translation missing --]]
|
||||
L["Spark Settings"] = "Spark Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Spark Texture"] = "Spark Texture"
|
||||
--[[Translation missing --]]
|
||||
L["Specialization"] = "Specialization"
|
||||
--[[Translation missing --]]
|
||||
L["Specific Currency ID"] = "Specific Currency ID"
|
||||
--[[Translation missing --]]
|
||||
L["Specific Unit"] = "Specific Unit"
|
||||
L["Spell ID"] = "ID da magia"
|
||||
--[[Translation missing --]]
|
||||
L["Spell Selection Filters"] = "Spell Selection Filters"
|
||||
L["Stack Count"] = "Contagem do Monte"
|
||||
L["Stack Info"] = "Informação do Monte"
|
||||
--[[Translation missing --]]
|
||||
L["Stacks - The number of stacks of an aura (usually)"] = "Stacks - The number of stacks of an aura (usually)"
|
||||
@@ -1415,14 +1240,11 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Start Angle"] = "Start Angle"
|
||||
--[[Translation missing --]]
|
||||
L["Start Animation"] = "Start Animation"
|
||||
--[[Translation missing --]]
|
||||
L["Start Collapsed"] = "Start Collapsed"
|
||||
--[[Translation missing --]]
|
||||
L["Start of %s"] = "Start of %s"
|
||||
--[[Translation missing --]]
|
||||
L["Step Size"] = "Step Size"
|
||||
L["Stop Motion"] = "Stop Motion"
|
||||
--[[Translation missing --]]
|
||||
L["Stop Motion %s"] = "Stop Motion %s"
|
||||
L["Stop Motion Settings"] = "Configurações de Stop Motion"
|
||||
@@ -1436,27 +1258,19 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
L["Subevent Suffix"] = "Subevent Suffix"
|
||||
--[[Translation missing --]]
|
||||
L["Supports multiple entries, separated by commas"] = "Supports multiple entries, separated by commas"
|
||||
--[[Translation missing --]]
|
||||
L["Swipe Overlay Settings"] = "Swipe Overlay Settings"
|
||||
--[[Translation missing --]]
|
||||
L["Templates could not be loaded, the addon is %s"] = "Templates could not be loaded, the addon is %s"
|
||||
L["Temporary Group"] = "Grupo temporário"
|
||||
L["Text"] = "Texto"
|
||||
L["Text %s"] = "Texto %s"
|
||||
L["Text Color"] = "Cor do texto"
|
||||
--[[Translation missing --]]
|
||||
L["Text Settings"] = "Text Settings"
|
||||
L["Texture"] = "Textura"
|
||||
--[[Translation missing --]]
|
||||
L["Texture %s"] = "Texture %s"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Info"] = "Texture Info"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Picker"] = "Texture Picker"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Rotation"] = "Texture Rotation"
|
||||
--[[Translation missing --]]
|
||||
L["Texture Selection Mode"] = "Texture Selection Mode"
|
||||
L["Texture Settings"] = "Configurações da Textura"
|
||||
--[[Translation missing --]]
|
||||
@@ -1487,8 +1301,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=]
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Thickness"] = "Thickness"
|
||||
--[[Translation missing --]]
|
||||
L["This adds %raidMark as text replacements."] = "This adds %raidMark as text replacements."
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
@@ -1559,8 +1371,6 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["Toggle the visibility of this display"] = "Toggle the visibility of this display"
|
||||
--[[Translation missing --]]
|
||||
L["Tooltip"] = "Tooltip"
|
||||
--[[Translation missing --]]
|
||||
L["Tooltip Content"] = "Tooltip Content"
|
||||
--[[Translation missing --]]
|
||||
L["Tooltip on Mouseover"] = "Tooltip on Mouseover"
|
||||
@@ -1573,42 +1383,27 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["Tooltip Value #"] = "Tooltip Value #"
|
||||
--[[Translation missing --]]
|
||||
L["Top"] = "Top"
|
||||
--[[Translation missing --]]
|
||||
L["Top HUD position"] = "Top HUD position"
|
||||
--[[Translation missing --]]
|
||||
L["Top Left"] = "Top Left"
|
||||
--[[Translation missing --]]
|
||||
L["Top Right"] = "Top Right"
|
||||
--[[Translation missing --]]
|
||||
L["Total"] = "Total"
|
||||
--[[Translation missing --]]
|
||||
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"
|
||||
--[[Translation missing --]]
|
||||
L["Total Angle"] = "Total Angle"
|
||||
L["Total Time"] = "Tempo Total"
|
||||
L["Trigger"] = "Gatilho"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger %i"] = "Trigger %i"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger %i: %s"] = "Trigger %i: %s"
|
||||
--[[Translation missing --]]
|
||||
L["Trigger Combination"] = "Trigger Combination"
|
||||
--[[Translation missing --]]
|
||||
L["True"] = "True"
|
||||
L["Type"] = "Tipo"
|
||||
--[[Translation missing --]]
|
||||
L["Type 'select' for '%s' requires a values member'"] = "Type 'select' for '%s' requires a values member'"
|
||||
--[[Translation missing --]]
|
||||
L["Ungroup"] = "Ungroup"
|
||||
L["Unit"] = "Unidade"
|
||||
--[[Translation missing --]]
|
||||
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "Unit %s is not a valid unit for RegisterUnitEvent"
|
||||
--[[Translation missing --]]
|
||||
L["Unit Count"] = "Unit Count"
|
||||
--[[Translation missing --]]
|
||||
L["Unit Frames"] = "Unit Frames"
|
||||
--[[Translation missing --]]
|
||||
L["Unknown"] = "Unknown"
|
||||
--[[Translation missing --]]
|
||||
L["Unknown Encounter's Spell Id"] = "Unknown Encounter's Spell Id"
|
||||
@@ -1628,22 +1423,16 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["Url: %s"] = "Url: %s"
|
||||
--[[Translation missing --]]
|
||||
L["Use Custom Color"] = "Use Custom Color"
|
||||
--[[Translation missing --]]
|
||||
L["Use Display Info Id"] = "Use Display Info Id"
|
||||
--[[Translation missing --]]
|
||||
L["Use SetTransform"] = "Use SetTransform"
|
||||
--[[Translation missing --]]
|
||||
L["Use Texture"] = "Use Texture"
|
||||
--[[Translation missing --]]
|
||||
L["Used in Auras:"] = "Used in Auras:"
|
||||
--[[Translation missing --]]
|
||||
L["Used in auras:"] = "Used in auras:"
|
||||
--[[Translation missing --]]
|
||||
L["Uses Texture Coordinates to rotate the texture."] = "Uses Texture Coordinates to rotate the texture."
|
||||
--[[Translation missing --]]
|
||||
L["Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."] = "Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."
|
||||
--[[Translation missing --]]
|
||||
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."
|
||||
--[[Translation missing --]]
|
||||
L["Value"] = "Value"
|
||||
@@ -1679,7 +1468,6 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["What do you want to do?"] = "What do you want to do?"
|
||||
--[[Translation missing --]]
|
||||
L["Whole Area"] = "Whole Area"
|
||||
L["Width"] = "Largura"
|
||||
--[[Translation missing --]]
|
||||
L["wrapping"] = "wrapping"
|
||||
L["X Offset"] = "X Posicionamento"
|
||||
@@ -1689,8 +1477,6 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["X Scale"] = "X Scale"
|
||||
--[[Translation missing --]]
|
||||
L["x-Offset"] = "x-Offset"
|
||||
--[[Translation missing --]]
|
||||
L["X-Offset"] = "X-Offset"
|
||||
L["Y Offset"] = "Y Posicionamento"
|
||||
--[[Translation missing --]]
|
||||
L["Y Rotation"] = "Y Rotation"
|
||||
@@ -1701,8 +1487,6 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
--[[Translation missing --]]
|
||||
L["y-Offset"] = "y-Offset"
|
||||
--[[Translation missing --]]
|
||||
L["Y-Offset"] = "Y-Offset"
|
||||
--[[Translation missing --]]
|
||||
L["You already have this group/aura. Importing will create a duplicate."] = "You already have this group/aura. Importing will create a duplicate."
|
||||
--[[Translation missing --]]
|
||||
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?"
|
||||
@@ -1728,8 +1512,6 @@ WeakAuras will always run custom grow code if you include 'changed' in this list
|
||||
--[[Translation missing --]]
|
||||
L["Z Rotation"] = "Z Rotation"
|
||||
--[[Translation missing --]]
|
||||
L["Zoom"] = "Zoom"
|
||||
--[[Translation missing --]]
|
||||
L["Zoom In"] = "Zoom In"
|
||||
--[[Translation missing --]]
|
||||
L["Zoom Out"] = "Zoom Out"
|
||||
|
||||
@@ -116,10 +116,8 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["A Unit ID (e.g., party1)."] = [=[Введите идентификатор единицы (UID, Unit ID).
|
||||
Например: party4, raid7, arena3, boss2, nameplate6, target, focus, pet и др.]=]
|
||||
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
|
||||
L["Actions"] = "Действия"
|
||||
L["Active Aura Filters and Info"] = "Фильтры и информация об эффекте"
|
||||
L["Actual Spec"] = "Текущая специализация"
|
||||
L["Add"] = "Добавить"
|
||||
L["Add %s"] = "Добавить %s"
|
||||
L["Add a new display"] = "Добавить новую индикацию"
|
||||
L["Add Condition"] = "Добавить условие"
|
||||
@@ -142,13 +140,12 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["All maintainers of the libraries we use, especially:"] = "Все поддерживающие библиотеки, которые мы используем, особенно:"
|
||||
L["All of"] = "И (все условия)"
|
||||
L["Allow Full Rotation"] = "Разрешить полное вращение"
|
||||
L["Alpha"] = "Прозрачность"
|
||||
L["Anchor"] = "Крепление"
|
||||
L["Anchor Mode"] = "Режим крепления"
|
||||
L["Anchor Point"] = "Точка крепления"
|
||||
L["Anchored To"] = "Прикрепить к"
|
||||
L["and"] = "и"
|
||||
L["And "] = "И "
|
||||
L["and"] = "и"
|
||||
L["and %s"] = "и %s"
|
||||
L["and aligned left"] = "Выранивание по левому краю;"
|
||||
L["and aligned right"] = "Выранивание по правому краю;"
|
||||
@@ -172,7 +169,6 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
Если длительность анимации установлена в |cFF00CC0010%|r и триггер индикации - это бесконечная аура, то анимация отображаться не будет (хотя могла бы, если бы вы указали длительность в секундах).]=]
|
||||
L["Animation Sequence"] = "Цепочка анимаций"
|
||||
L["Animation Start"] = "Начало анимации"
|
||||
L["Animations"] = "Анимация"
|
||||
L["Any of"] = "ИЛИ (любое условие)"
|
||||
L["Apply Template"] = "Применить шаблон"
|
||||
L["Arcane Orb"] = "Чародейский шар"
|
||||
@@ -181,39 +177,28 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["At a position a bit left of Right HUD position"] = "Немного правее позиции правого HUD"
|
||||
L["At the same position as Blizzard's spell alert"] = "В таком же положении, что и предупреждение о заклинаниях Blizzard"
|
||||
L["Attach to Foreground"] = "Прикрепить к переднему плану"
|
||||
L["Aura"] = "Аура"
|
||||
L[ [=[Aura is
|
||||
Off Screen]=] ] = [=[Индикация за
|
||||
пределами экрана]=]
|
||||
L["Aura Name"] = "Название эффекта"
|
||||
L["Aura Name Pattern"] = "Образец названия эффекта"
|
||||
L["Aura Order"] = "Порядок индикаций"
|
||||
L["Aura received from: %s"] = "Индикация получена от: %s"
|
||||
L["Aura Type"] = "Тип эффекта"
|
||||
L["Aura: '%s'"] = "Индикация: %s"
|
||||
L["Author Options"] = "Параметры автора"
|
||||
L["Auto-Clone (Show All Matches)"] = "Показать все совпадения (Автоклонирование)"
|
||||
L["Automatic"] = "Автоматическое"
|
||||
L["Automatic length"] = "Автоматическая длина"
|
||||
L["Available Voices are system specific"] = "Доступность голоса зависит от вашей системы"
|
||||
L["Backdrop Color"] = "Цвет фона"
|
||||
L["Backdrop in Front"] = "Фон спереди"
|
||||
L["Backdrop Style"] = "Стиль фона"
|
||||
L["Background"] = "Задний план"
|
||||
L["Background Color"] = "Цвет заднего плана"
|
||||
L["Background Inner"] = "Задний план (внутр. обл.)"
|
||||
L["Background Offset"] = "Смещение заднего плана"
|
||||
L["Background Texture"] = "Текстура заднего плана"
|
||||
L["Bar Alpha"] = "Прозрачность полосы"
|
||||
L["Bar Color Settings"] = "Настройки цвета полосы"
|
||||
L["Bar Color/Gradient Start"] = "Цвет полосы / Начало градиента"
|
||||
L["Bar Texture"] = "Текстура полосы"
|
||||
L["Big Icon"] = "Большая иконка"
|
||||
L["Blend Mode"] = "Режим наложения"
|
||||
L["Blizzard Cooldown Reduction"] = "Сокращение восстановления (Blizzard)"
|
||||
L["Blue Rune"] = "Синяя руна"
|
||||
L["Blue Sparkle Orb"] = "Синий искрящийся шар"
|
||||
L["Border"] = "Граница"
|
||||
L["Border %s"] = "Граница %s"
|
||||
L["Border Anchor"] = "Крепление границы"
|
||||
L["Border Color"] = "Цвет границы"
|
||||
@@ -223,9 +208,6 @@ Off Screen]=] ] = [=[Индикация за
|
||||
L["Border Settings"] = "Настройки границы"
|
||||
L["Border Size"] = "Размер границы"
|
||||
L["Border Style"] = "Стиль границы"
|
||||
L["Bottom"] = "Снизу"
|
||||
L["Bottom Left"] = "Снизу слева"
|
||||
L["Bottom Right"] = "Снизу справа"
|
||||
L["Bracket Matching"] = "Закрывать скобки"
|
||||
L["Browse Wago, the largest collection of auras."] = "Просматривайте Wago - ресурс с крупнейшей коллекцией индикаций."
|
||||
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."] = "По умолчанию это отображает информацию из триггера, выбранного через динамическую информацию. Информацию из конкретного триггера можно показать, используя, например, %2.p."
|
||||
@@ -233,26 +215,21 @@ Off Screen]=] ] = [=[Индикация за
|
||||
Например: party4, raid7, arena3, boss2, nameplate6, target, focus, pet и др.]=]
|
||||
L["Can set to 0 if Columns * Width equal File Width"] = "Можно указать 0 в качестве значения, если последовательность изображений занимает всю ширину файла (т. е. произведение количества столбцов и ширины кадра равно ширине файла)"
|
||||
L["Can set to 0 if Rows * Height equal File Height"] = "Можно указать 0 в качестве значения, если последовательность изображений занимает всю высоту файла (т. е. произведение количества строк и высоты кадра равно высоте файла)"
|
||||
L["Cancel"] = "Отмена"
|
||||
L["Case Insensitive"] = "Без учета регистра"
|
||||
L["Cast by a Player Character"] = "Применён игроком"
|
||||
L["Categories to Update"] = "Категории для обновления"
|
||||
L["Center"] = "Центр"
|
||||
L["Changelog"] = "Журнал изменений"
|
||||
L["Chat Message"] = "Сообщение в чат"
|
||||
L["Chat with WeakAuras experts on our Discord server."] = "Общайтесь со знатоками WeakAuras на нашем сервере Discord."
|
||||
L["Check On..."] = "Проверять..."
|
||||
L["Check out our wiki for a large collection of examples and snippets."] = "Ознакомьтесь с нашим вики-разделом с большой коллекцией примеров и фрагментов кода."
|
||||
L["Children:"] = "Индикации:"
|
||||
L["Choose"] = "Выбрать"
|
||||
L["Circular Texture %s"] = "Круглая текстура %s"
|
||||
L["Class"] = "Класс"
|
||||
L["Clear Debug Logs"] = "Очистить записи"
|
||||
L["Clear Saved Data"] = "Очистить данные"
|
||||
L["Clip Overlays"] = "Обрезать наложения"
|
||||
--[[Translation missing --]]
|
||||
L["Clipped by Foreground"] = "Clipped by Foreground"
|
||||
L["Clockwise"] = "По часовой стрелке"
|
||||
L["Close"] = "Закрыть"
|
||||
L["Code Editor"] = "Редактор кода"
|
||||
L["Collapse"] = "Свернуть"
|
||||
@@ -261,7 +238,6 @@ Off Screen]=] ] = [=[Индикация за
|
||||
L["Collapse all pending Import"] = "Свернуть все индикации, ожидающие импорта"
|
||||
L["Collapsible Group"] = "Свёртываемая группа"
|
||||
L["color"] = "цвет"
|
||||
L["Color"] = "Цвет"
|
||||
L["Column Height"] = "Высота столбца"
|
||||
L["Column Space"] = "Отступ между столбцами"
|
||||
L["Columns"] = "Столбцы"
|
||||
@@ -272,39 +248,26 @@ Off Screen]=] ] = [=[Индикация за
|
||||
L["Compare against the number of units affected."] = "Сравнение с количеством единиц, находящихся под действием эффекта."
|
||||
L["Compatibility Options"] = "Параметры совместимости"
|
||||
L["Compress"] = "Сжать"
|
||||
L["Conditions"] = "Условия"
|
||||
L["Configure what options appear on this panel."] = "Перейти в режим автора, в котором вы можете создавать и редактировать параметры индикации для пользователей."
|
||||
L["Constant Factor"] = "Постоянный параметр"
|
||||
L["Control-click to select multiple displays"] = "Ctrl-клик для выбора нескольких индикаций"
|
||||
L["Controls the positioning and configuration of multiple displays at the same time"] = "Управляет позиционированием и настройкой нескольких индикаций одновременно"
|
||||
L["Convert to..."] = "Преобразовать в ..."
|
||||
L["Cooldown Numbers might be added by WoW. You can configure these in the game settings."] = "Отсчет времени может отображаться поверх наложения. Настроить его вы можете в параметрах игры."
|
||||
L["Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."] = "Сокращение восстановления изменяет продолжительность секунд вместо отображения секунд реального времени."
|
||||
L["Copy"] = "Копия"
|
||||
L["Copy settings..."] = "Копировать настройки из ..."
|
||||
L["Copy to all auras"] = "Копировать во все индикации"
|
||||
L["Could not parse '%s'. Expected a table."] = "Не удалось разобрать переменную %s. Требуется таблица."
|
||||
L["Count"] = "Количество"
|
||||
L["Counts the number of matches over all units."] = "Сравнение с количеством совпадений для всех единиц."
|
||||
L["Counts the number of matches per unit."] = "Сравнение с количеством совпадений для каждой единицы."
|
||||
L["Create a Copy"] = "Создать копию"
|
||||
L["Creating buttons: "] = "Создание кнопок: "
|
||||
L["Creating options: "] = "Создание параметров: "
|
||||
L["Crop X"] = "Обрезать по X"
|
||||
L["Crop Y"] = "Обрезать по Y"
|
||||
L["Custom"] = "Самостоятельно"
|
||||
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."] = "Пользовательский - Позволяет определить пользовательскую функцию Lua, которая возвращает список строковых значений. %c1 будет заменен на первое возвращенное значение, %c2 на второе и так далее."
|
||||
L["Custom Anchor"] = "Свое крепление"
|
||||
L["Custom Check"] = "Своя проверка"
|
||||
L["Custom Code"] = "Свой код"
|
||||
L["Custom Code Viewer"] = "Средство просмотра кода"
|
||||
L["Custom Color"] = "Цвет"
|
||||
L["Custom Configuration"] = "Конфигурация пользователя"
|
||||
L["Custom Frames"] = "Свои кадры"
|
||||
L["Custom Function"] = "Своя функция"
|
||||
L["Custom Grow"] = "Свой способ заполнения"
|
||||
L["Custom Options"] = "Свои параметры"
|
||||
L["Custom Sort"] = "Свой критерий сортировки"
|
||||
L["Custom Trigger"] = "Свой триггер"
|
||||
L["Custom trigger event tooltip"] = [=[Напишите события, которые будут вызывать проверку вашего триггера. Несколько событий должны быть разделены запятыми или пробелами.
|
||||
|
||||
@@ -318,8 +281,6 @@ UNIT_POWER UNIT_AURA, PLAYER_TARGET_CHANGED]=]
|
||||
L["Custom Trigger: Ignore Lua Errors on OPTIONS event"] = "Свой триггер: игнорировать ошибки Lua при событии OPTIONS"
|
||||
L["Custom Trigger: Send fake events instead of STATUS event"] = "Свой триггер: отправлять фиктивные события вместо события STATUS"
|
||||
L["Custom Untrigger"] = "Свой детриггер"
|
||||
L["Custom Variables"] = "Свои переменные"
|
||||
L["Debuff Type"] = "Тип дебаффа"
|
||||
L["Debug Log"] = "Журнал отладки"
|
||||
L["Debug Log:"] = "Журнал отладки:"
|
||||
L["Default"] = "По умолчанию"
|
||||
@@ -330,14 +291,10 @@ UNIT_POWER UNIT_AURA, PLAYER_TARGET_CHANGED]=]
|
||||
L["Delete children and group"] = "Удалить индикации и группу"
|
||||
L["Delete Entry"] = "Удалить запись"
|
||||
L["Deleting auras: "] = "Удаление индикаций: "
|
||||
L["Desaturate"] = "Обесцветить"
|
||||
L["Description"] = "Описание"
|
||||
L["Description Text"] = "Текст описания"
|
||||
L["Determines how many entries can be in the table."] = "Определяет, сколько записей может быть в таблице."
|
||||
L["Differences"] = "Различия"
|
||||
L["Disabled"] = "Выключен"
|
||||
L["Disallow Entry Reordering"] = "Запретить изменение порядка записей"
|
||||
L["Display"] = "Отображение"
|
||||
L["Display Name"] = "Отображаемое имя"
|
||||
L["Display Text"] = "Отображаемый текст"
|
||||
L["Displays a text, works best in combination with other displays"] = "Отображает текст, лучше всего работает в сочетании с другими индикациями"
|
||||
@@ -351,7 +308,6 @@ UNIT_POWER UNIT_AURA, PLAYER_TARGET_CHANGED]=]
|
||||
L["Drag to move"] = "Перетащите для перемещения"
|
||||
L["Duplicate"] = "Дублировать"
|
||||
L["Duplicate All"] = "Дублировать все"
|
||||
L["Duration"] = "Длительность"
|
||||
L["Duration (s)"] = "Длительность"
|
||||
L["Duration Info"] = "Информация о длительности"
|
||||
L["Dynamic Duration"] = "Динамическое значение"
|
||||
@@ -363,7 +319,6 @@ UNIT_POWER UNIT_AURA, PLAYER_TARGET_CHANGED]=]
|
||||
L["Dynamic Text Replacements"] = "Динамическая замена текста"
|
||||
L["Ease Strength"] = "Степень функции скорости"
|
||||
L["Ease type"] = "Тип изменения скорости анимации"
|
||||
L["Edge"] = "Кромка"
|
||||
L["eliding"] = "Скрытие текста при переполнении"
|
||||
L["Else If"] = "Иначе Если"
|
||||
L["Else If %s"] = "Иначе, если %s"
|
||||
@@ -395,10 +350,8 @@ UNIT_POWER UNIT_AURA, PLAYER_TARGET_CHANGED]=]
|
||||
L["Entry limit"] = "Лимит записей"
|
||||
L["Entry Name Source"] = "Источник названий записей"
|
||||
L["Event Type"] = "Тип триггера"
|
||||
L["Event(s)"] = "События"
|
||||
L["Everything"] = "Всех вкладок"
|
||||
L["Exact Item Match"] = "Точное совпадение"
|
||||
L["Exact Spell ID(s)"] = "ID заклинания"
|
||||
L["Exact Spell Match"] = "Точное совпадение"
|
||||
L["Expand"] = "Развернуть"
|
||||
L["Expand all loaded displays"] = "Развернуть все загруженные индикации"
|
||||
@@ -412,11 +365,8 @@ UNIT_POWER UNIT_AURA, PLAYER_TARGET_CHANGED]=]
|
||||
L["Extra Height"] = "Дополнительная высота"
|
||||
L["Extra Width"] = "Дополнительная ширина"
|
||||
L["Fade"] = "Выцветание"
|
||||
L["Fade In"] = "Появление"
|
||||
L["Fade Out"] = "Исчезновение"
|
||||
L["Fadeout Sound"] = "Затухание звука"
|
||||
L["Fadeout Time (seconds)"] = "Время затухания (в секундах)"
|
||||
L["False"] = "Ложь"
|
||||
L["Fetch Affected/Unaffected Names and Units"] = "Получить имена и единицы задействован. и незадействован. игроков"
|
||||
L["Fetch Raid Mark Information"] = "Получить информацию о метке цели"
|
||||
L["Fetch Role Information"] = "Получить информацию о выбранной роли"
|
||||
@@ -445,12 +395,7 @@ Bleed classification via LibDispel]=] ] = "Фильтровать только
|
||||
L["Finishing..."] = "Завершение..."
|
||||
L["Fire Orb"] = "Огненный шар"
|
||||
L["Flat Framelevels"] = "Плоские уровни фреймов"
|
||||
L["Font"] = "Шрифт"
|
||||
L["Font Size"] = "Размер шрифта"
|
||||
L["Foreground"] = "Передний план"
|
||||
L["Foreground Color"] = "Цвет переднего плана"
|
||||
L["Foreground Texture"] = "Текстура переднего плана"
|
||||
L["Format"] = "Формат"
|
||||
L["Format for %s"] = "Строка %s"
|
||||
L["Found a Bug?"] = "Нашли ошибку?"
|
||||
L["Frame"] = "Кадр"
|
||||
@@ -459,7 +404,6 @@ Bleed classification via LibDispel]=] ] = "Фильтровать только
|
||||
L["Frame Rate"] = "Частота смены кадров"
|
||||
L["Frame Strata"] = "Слой кадра"
|
||||
L["Frame Width"] = "Ширина кадра"
|
||||
L["Frequency"] = "Частота"
|
||||
--[[Translation missing --]]
|
||||
L["Full Bar"] = "Full Bar"
|
||||
L["Full Circle"] = "Полный круг"
|
||||
@@ -468,14 +412,10 @@ Bleed classification via LibDispel]=] ] = "Фильтровать только
|
||||
L["Glow Action"] = "Действие"
|
||||
L["Glow Anchor"] = "Крепление свечения"
|
||||
L["Glow Color"] = "Цвет"
|
||||
L["Glow External Element"] = "Свечение внешнего элемента"
|
||||
L["Glow Frame Type"] = "Тип кадра"
|
||||
L["Glow Type"] = "Тип свечения"
|
||||
L["Gradient End"] = "Конец градиента"
|
||||
L["Gradient Orientation"] = "Ориентация градиента"
|
||||
L["Green Rune"] = "Зеленая руна"
|
||||
L["Grid direction"] = "Направление заполнения сетки"
|
||||
L["Group"] = "Группа"
|
||||
L["Group (verb)"] = "Группировать"
|
||||
L["Group Alpha"] = "Группа Альфа"
|
||||
L[ [=[Group and anchor each auras by frame.
|
||||
@@ -504,25 +444,18 @@ Bleed classification via LibDispel]=] ] = "Фильтровать только
|
||||
L["Group Role"] = "Выбранная роль"
|
||||
L["Group Scale"] = "Масштаб группы"
|
||||
L["Group Settings"] = "Настройки группы"
|
||||
L["Group Type"] = "Тип группы"
|
||||
L["Grow"] = "Заполнение"
|
||||
L["Hawk"] = "Ястреб"
|
||||
L["Height"] = "Высота"
|
||||
L["Help"] = "Справка"
|
||||
L["Hide"] = "Скрыть"
|
||||
L["Hide Background"] = "Скрыть задний план"
|
||||
L["Hide Glows applied by this aura"] = "Скрыть свечения, применённые этой индикацией"
|
||||
L["Hide on"] = "Скрыть на"
|
||||
L["Hide this group's children"] = "Скрыть индикации этой группы"
|
||||
L["Hide Timer Text"] = "Скрыть отсчет времени"
|
||||
L["Highlights"] = "Основные моменты"
|
||||
L["Horizontal Align"] = "Выравнивание по горизонтали"
|
||||
L["Horizontal Bar"] = "Горизонтальная полоса"
|
||||
L["Hostility"] = "Враждебность"
|
||||
L["Huge Icon"] = "Огромная иконка"
|
||||
L["Hybrid Position"] = "Гибридная позиция"
|
||||
L["Hybrid Sort Mode"] = "Режим гибридной сортировки"
|
||||
L["Icon"] = "Иконка"
|
||||
L["Icon - The icon associated with the display"] = "Иконка — иконка, связанная с отображением"
|
||||
L["Icon Info"] = "Информация об иконке"
|
||||
L["Icon Inset"] = "Вставка иконки"
|
||||
@@ -541,11 +474,8 @@ Bleed classification via LibDispel]=] ] = "Фильтровать только
|
||||
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 this space will fill the entire line it is on in User Mode."] = "Если флажок не установлен, то данный элемент будет занимать всю строку, в которой он находится."
|
||||
L["Ignore Dead"] = "Не учитывать мёртвые цели"
|
||||
L["Ignore Disconnected"] = "Не учитывать игроков не в сети"
|
||||
L["Ignore out of casting range"] = "Не учитывать единицы вне зоны действия"
|
||||
L["Ignore out of checking range"] = "Не учитывать единицы вне зоны видимости"
|
||||
L["Ignore Self"] = "Не учитывать себя"
|
||||
L["Ignore Wago updates"] = "Игнорировать обновления Wago"
|
||||
L["Ignored"] = "Не использован"
|
||||
L["Ignored Aura Name"] = "Исключаемое название эффекта"
|
||||
@@ -562,11 +492,9 @@ Bleed classification via LibDispel]=] ] = "Фильтровать только
|
||||
L["Importing a group with %s child auras."] = "Импорт группы с %s |4индикацией:индикациями:индикациями;."
|
||||
L["Importing a stand-alone aura."] = "Импорт отдельной индикации."
|
||||
L["Importing...."] = "Импортирование ..."
|
||||
L["Include Pets"] = "Учитывать питомцев"
|
||||
L["Incompatible changes to group region types detected"] = "Обнаружены несовместимые изменения в типах регионов группы."
|
||||
L["Incompatible changes to group structure detected"] = "Обнаружены несовместимые изменения в структуре группы."
|
||||
L["Indent Size"] = "Размер отступа"
|
||||
L["Information"] = "Информация"
|
||||
L["Inner"] = "Внутри"
|
||||
L["Insert text replacement codes to make text dynamic."] = "Вставьте коды замены текста, чтобы сделать текст динамическим."
|
||||
L["Invalid Item ID"] = "Неверный ID"
|
||||
@@ -576,7 +504,6 @@ Bleed classification via LibDispel]=] ] = "Фильтровать только
|
||||
L["Invalid target aura"] = "Неверная целевая индикация"
|
||||
L["Invalid type for '%s'. Expected 'bool', 'number', 'select', 'string', 'timer' or 'elapsedTimer'."] = "Неверный тип переменной %s. Требуется bool, number, select, string, timer или elapsedTimer."
|
||||
L["Invalid type for property '%s' in '%s'. Expected '%s'"] = "Неверный тип свойства %s в переменной %s. Требуется %s."
|
||||
L["Inverse"] = "Инверсия"
|
||||
L["Inverse Slant"] = "В обратную сторону"
|
||||
L["Invert the direction of progress"] = "Инвертировать направление анимации"
|
||||
L["Is Boss Debuff"] = "Применён боссом"
|
||||
@@ -588,47 +515,34 @@ Bleed classification via LibDispel]=] ] = "Фильтровать только
|
||||
L["Keep your Wago imports up to date with the Companion App."] = "Поддерживайте ваши индикации с Wago в актуальном состоянии при помощи приложения Companion."
|
||||
L["Large Input"] = "Многострочное поле ввода"
|
||||
L["Leaf"] = "Лист"
|
||||
L["Left"] = "Слева"
|
||||
L["Left 2 HUD position"] = "Позиция 2-го левого HUD"
|
||||
L["Left HUD position"] = "Позиция левого HUD"
|
||||
L["Length"] = "Длина"
|
||||
L["Length of |cFFFF0000%s|r"] = "Длина %s"
|
||||
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["LibSharedMedia"] = "LibSharedMedia"
|
||||
L["Limit"] = "Лимит"
|
||||
L["Line"] = "Строка"
|
||||
L["Linear Texture %s"] = "Линейная текстура %s"
|
||||
L["Lines & Particles"] = "Линии или частицы"
|
||||
L["Linked aura: "] = "Связанная индикация: "
|
||||
L["Load"] = "Загрузка"
|
||||
L["Loaded"] = "Загружено"
|
||||
L["Loaded/Standby"] = "Загружен/Ожидает"
|
||||
L["Lock Positions"] = "Заблокировать позиции"
|
||||
L["Loop"] = "Повторять"
|
||||
L["Low Mana"] = "Мало маны"
|
||||
L["Magnetically Align"] = "Привязка к направляющим"
|
||||
L["Main"] = "Основная"
|
||||
L["Manual"] = "Ручной"
|
||||
L["Manual Icon"] = "Ручная иконка"
|
||||
L["Manual with %i/%i"] = "Вручную с %i/%i"
|
||||
L["Match Count"] = "Количество совпадений"
|
||||
L["Match Count per Unit"] = "Кол-во совпадений на единицу"
|
||||
L["Matches the height setting of a horizontal bar or width for a vertical bar."] = "Совпадает с высотой горизонтальной полосы или с шириной вертикальной полосы"
|
||||
L["Max"] = "Макс. значение"
|
||||
L["Max Length"] = "Максимальная длина"
|
||||
L["Maximum"] = "Максимум"
|
||||
L["Media Type"] = "Тип медиа"
|
||||
L["Medium Icon"] = "Средняя иконка"
|
||||
L["Message"] = "Сообщение"
|
||||
L["Message Type"] = "Тип сообщения"
|
||||
L["Min"] = "Мин. значение"
|
||||
L["Minimum"] = "Минимум"
|
||||
L["Mirror"] = "Отразить"
|
||||
L["Model"] = "Модель"
|
||||
L["Model %s"] = "Модель %s"
|
||||
L["Model Picker"] = "Средство выбора модели"
|
||||
L["Model Settings"] = "Настройки модели"
|
||||
@@ -658,22 +572,18 @@ Bleed classification via LibDispel]=] ] = "Фильтровать только
|
||||
L["Name - The name of the display (usually an aura name), or the display's ID if there is no dynamic name"] = "Имя — название отображения (обычно название ауры) или ID отображения, если динамическое имя отсутствует"
|
||||
L["Name Info"] = "Информация о названии"
|
||||
L["Name Pattern Match"] = "Совпадение названия с образцом"
|
||||
L["Name(s)"] = "Название"
|
||||
L["Name:"] = "Название"
|
||||
L["Nameplates"] = "Индикаторы здоровья"
|
||||
L["Negator"] = "Не"
|
||||
L["New Aura"] = "Новая индикация"
|
||||
L["New Template"] = "Новый шаблон"
|
||||
L["New Value"] = "Новое значение"
|
||||
L["No Children"] = "Нет индикаций"
|
||||
L["No Logs saved."] = "Нет записей"
|
||||
L["None"] = "Нет"
|
||||
L["Not a table"] = "Не таблица"
|
||||
L["Not all children have the same value for this option"] = "Не все индикации имеют одинаковое значение для этого параметра"
|
||||
L["Not Loaded"] = "Не загружено"
|
||||
L["Note: Automated Messages to SAY and YELL are blocked outside of Instances."] = "|cFFFFCC00Примечание.|r Вне подземелий (instances) автоматизированная отправка сообщений в чат заблокирована для Сказать и Крик."
|
||||
L["Note: This progress source does not provide a total value/duration. A total value/duration must be set via \"Set Maximum Progress\""] = "Примечание: Этот источник прогресса не предоставляет общего значения/продолжительности. Общее значение/продолжительность должно быть установлено через \"Установить максимальный прогресс\"."
|
||||
L["Npc ID"] = "ID NPC"
|
||||
L["Number of Entries"] = "Число записей"
|
||||
L[ [=[Occurrence of the event, reset when aura is unloaded
|
||||
Can be a range of values
|
||||
@@ -705,10 +615,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["or"] = "или"
|
||||
L["or %s"] = "или %s"
|
||||
L["Orange Rune"] = "Оранжевая руна"
|
||||
L["Orientation"] = "Ориентация"
|
||||
L["Our translators (too many to name)"] = "Наши переводчики (слишком много, чтобы назвать)"
|
||||
L["Outer"] = "Снаружи"
|
||||
L["Outline"] = "Контур"
|
||||
L["Overflow"] = "Переполнение"
|
||||
L["Overlay %s Info"] = "Информация о наложении %s"
|
||||
L["Overlays"] = "Настройки наложений"
|
||||
@@ -732,7 +640,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["Premade Auras"] = "Готовые индикации"
|
||||
L["Premade Snippets"] = "Готовые фрагменты кода"
|
||||
L["Preparing auras: "] = "Подготовка индикаций: "
|
||||
L["Preset"] = "Набор эффектов"
|
||||
L["Press Ctrl+C to copy"] = "Нажмите Ctrl+C, чтобы скопировать"
|
||||
L["Press Ctrl+C to copy the URL"] = "Нажмите Ctrl+C, чтобы скопировать URL-адрес"
|
||||
L["Prevent Merging"] = "Не допускать слияние"
|
||||
@@ -740,13 +647,10 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["Progress Bar"] = "Полоса прогресса"
|
||||
L["Progress Bar Settings"] = "Настройки полосы прогресса"
|
||||
L["Progress Settings"] = "Настройки прогресса"
|
||||
L["Progress Source"] = "Источник прогресса"
|
||||
L["Progress Texture"] = "Текстура прогресса"
|
||||
L["Progress Texture Settings"] = "Настройки текстуры прогресса"
|
||||
L["Purple Rune"] = "Фиолетовая руна"
|
||||
L["Put this display in a group"] = "Переместить эту индикацию в группу"
|
||||
L["Radius"] = "Радиус"
|
||||
L["Raid Role"] = "Роль в рейде"
|
||||
L["Range in yards"] = "Расстояние"
|
||||
L["Ready for Install"] = "Готово к установке"
|
||||
L["Ready for Update"] = "Готово к обновлению"
|
||||
@@ -754,7 +658,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["Re-center Y"] = "Рецентрировать по Y"
|
||||
L["Reciprocal TRIGGER:# requests will be ignored!"] = "Ответный TRIGGER:# запрос будет проигнорирован!"
|
||||
L["Regions of type \"%s\" are not supported."] = "Регионы типа \"%s\" не поддерживаются."
|
||||
L["Remaining Time"] = "Оставшееся время"
|
||||
L["Remove"] = "Удалить"
|
||||
L["Remove All Sounds"] = "Удалить все звуки"
|
||||
L["Remove All Text To Speech"] = "Удалить весь текст в речь"
|
||||
@@ -771,7 +674,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["Reset all options to their default values."] = "Возвращает всем параметрам значения по умолчанию, заданные автором."
|
||||
L["Reset Entry"] = "Сбросить запись"
|
||||
L["Reset to Defaults"] = "Сбросить настройки"
|
||||
L["Right"] = "Справа"
|
||||
L["Right 2 HUD position"] = "Позиция 2-го правого HUD"
|
||||
L["Right HUD position"] = "Позиция правого HUD"
|
||||
L["Right-click for more options"] = "ПКМ, чтобы открыть дополнительные параметры"
|
||||
@@ -781,7 +683,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["Rotate Out"] = [=[Поворот из
|
||||
(исходного положения)]=]
|
||||
L["Rotate Text"] = "Повернуть текст"
|
||||
L["Rotation"] = "Поворот"
|
||||
L["Rotation Mode"] = "Режим вращения"
|
||||
L["Row Space"] = "Отступ между строками"
|
||||
L["Row Width"] = "Ширина строки"
|
||||
@@ -790,7 +691,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["Same"] = "Такая же"
|
||||
L["Same texture as Foreground"] = "Такая же текстура, что и на переднем плане"
|
||||
L["Saved Data"] = "Сохраненные данные"
|
||||
L["Scale"] = "Масштаб"
|
||||
--[[Translation missing --]]
|
||||
L["Scale Factor"] = "Scale Factor"
|
||||
L["Search API"] = "API поиска"
|
||||
@@ -824,7 +724,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["Show Matches for Units"] = "Показать совпадения для единиц"
|
||||
L["Show Model"] = "Показать модель"
|
||||
L["Show model of unit "] = "Показать модель единицы"
|
||||
L["Show On"] = "Показать"
|
||||
L["Show Sound Setting"] = "Показать настройки звука"
|
||||
L["Show Spark"] = "Показать искру"
|
||||
L["Show Stop Motion"] = "Показать стоп-кадр"
|
||||
@@ -852,7 +751,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
--[[Translation missing --]]
|
||||
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"] = "Показывает одну или несколько строк текста, которые могут включать в себя динамическую информацию такую как длительность или стаки"
|
||||
L["Simple"] = "Простой способ"
|
||||
L["Size"] = "Размер"
|
||||
L["Slant Amount"] = "Уровень наклона"
|
||||
L["Slant Mode"] = "Режим наклона"
|
||||
@@ -867,24 +765,15 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["Soft Max"] = "Макс. значение ползунка"
|
||||
L["Soft Min"] = "Мин. значение ползунка"
|
||||
L["Sort"] = "Сортировка"
|
||||
L["Sound"] = "Звук"
|
||||
L["Sound by Kit ID"] = "Звук по ID набора"
|
||||
L["Sound Channel"] = "Звуковой канал"
|
||||
L["Sound File Path"] = "Путь к звуковому файлу"
|
||||
L["Sound Kit ID"] = "ID набора звуков (см. ru.wowhead.com/sounds)"
|
||||
L["Source"] = "Источник"
|
||||
L["Space"] = "Отступ"
|
||||
L["Space Horizontally"] = "Отступ по горизонтали"
|
||||
L["Space Vertically"] = "Отступ по вертикали"
|
||||
L["Spark"] = "Искра"
|
||||
L["Spark Settings"] = "Настройки искры"
|
||||
L["Spark Texture"] = "Текстура искры"
|
||||
L["Specialization"] = "Специализация"
|
||||
L["Specific Currency ID"] = "ID валюты"
|
||||
L["Specific Unit"] = "Конкретная единица"
|
||||
L["Spell ID"] = "ID заклинания"
|
||||
L["Spell Selection Filters"] = "Фильтры выбора заклинания"
|
||||
L["Stack Count"] = "Количество стаков"
|
||||
L["Stack Info"] = "Информация о стаках"
|
||||
L["Stacks - The number of stacks of an aura (usually)"] = "Стаки - количество стаков ауры (обычно)"
|
||||
L["Stagger"] = "Выступ (смещение уровня)"
|
||||
@@ -892,11 +781,9 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["Star"] = "Звезда"
|
||||
L["Start"] = "Начальная"
|
||||
L["Start Angle"] = "Начальный угол"
|
||||
L["Start Animation"] = "Анимация начала"
|
||||
L["Start Collapsed"] = "Свернуть"
|
||||
L["Start of %s"] = "Начало группы \"%s\""
|
||||
L["Step Size"] = "Размер шага"
|
||||
L["Stop Motion"] = "Анимация Stop motion"
|
||||
L["Stop Motion %s"] = "Стоп-кадр %s"
|
||||
L["Stop Motion Settings"] = "Настройки анимации Stop motion"
|
||||
L["Stop Sound"] = "Остановить вопроизведение звука"
|
||||
@@ -904,19 +791,14 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
L["Sub Option %i"] = "Внутренний параметр %i"
|
||||
L["Subevent"] = "Подсобытие"
|
||||
L["Subevent Suffix"] = "Суффикс подсобытия"
|
||||
L["Supports multiple entries, separated by commas"] = "Можно указать несколько значений, разделенных запятыми."
|
||||
L["Swipe Overlay Settings"] = "Настройки восстановления (наложение)"
|
||||
L["Templates could not be loaded, the addon is %s"] = "Не удалось загрузить WeakAuras Templates. Причина - %s"
|
||||
L["Temporary Group"] = "Временная группа"
|
||||
L["Text"] = "Текст"
|
||||
L["Text %s"] = "Текст %s"
|
||||
L["Text Color"] = "Цвет текста"
|
||||
L["Text Settings"] = "Настройки текста"
|
||||
L["Texture"] = "Текстура"
|
||||
L["Texture %s"] = "Текстура %s"
|
||||
L["Texture Info"] = "Информация о текстуре"
|
||||
L["Texture Picker"] = "Средство выбора текстуры"
|
||||
L["Texture Rotation"] = "Поворот текстуры"
|
||||
L["Texture Selection Mode"] = "Режим выбора текстуры"
|
||||
L["Texture Settings"] = "Настройки текстуры"
|
||||
L["Texture Wrap"] = "Обтекание текстурой"
|
||||
@@ -934,7 +816,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = "Время
|
||||
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"] = "Версия %s дополнения WeakAuras Options не соответствует версии %s WeakAuras. Если вы обновили дополнение во время игры, попробуйте перезапустить World of Warcraft. В противном случае попробуйте переустановить WeakAuras"
|
||||
L["Then "] = "Тогда "
|
||||
L["There are several special codes available to make this text dynamic. Click to view a list with all dynamic text codes."] = "Существует несколько специальных кодов для динамического текста. Нажмите, чтобы просмотреть список всех кодов динамического текста."
|
||||
L["Thickness"] = "Толщина"
|
||||
L["This adds %raidMark as text replacements."] = "Добавляет строку %raidMark в качестве шаблона замены текста."
|
||||
L["This adds %role, %roleIcon as text replacements. Does nothing if the unit is not a group member."] = "Добавляет строки %role, %roleIcon в качестве шаблонов замены текста. Не содержит данных, если единица не является участником группы или рейда."
|
||||
L["This adds %tooltip, %tooltip1, %tooltip2, %tooltip3 and %tooltip4 as text replacements and also allows filtering based on the tooltip content/values."] = "Добавляет строки %tooltip, %tooltip1, %tooltip2, %tooltip3 и %tooltip4 в качестве шаблонов замены текста. Также позволяет выполнять фильтрацию на основе содержимого и значений подсказки."
|
||||
@@ -957,8 +838,7 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["This is a modified version of your group: |cff9900FF%s|r"] = "Это изменённая версия вашей группы индикаций |cFF9900FF%s|r"
|
||||
L["This region of type \"%s\" is not supported."] = "Регион типа \"%s\" не поддерживается."
|
||||
L["This setting controls what widget is generated in user mode."] = "Настройка определяет, какой примитив графического интерфейса (виджет) создается для этого параметра в режиме пользователя."
|
||||
--[[Translation missing --]]
|
||||
L["Thumbnail Icon"] = "Thumbnail Icon"
|
||||
L["Thumbnail Icon"] = "Иконка миниатюры"
|
||||
L["Tick %s"] = "Такт %s"
|
||||
--[[Translation missing --]]
|
||||
L["Tick Area %s"] = "Tick Area %s"
|
||||
@@ -977,33 +857,23 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Toggle the visibility of all loaded displays"] = "Переключить видимость всех загруженных индикаций"
|
||||
L["Toggle the visibility of all non-loaded displays"] = "Переключить видимость всех незагруженных индикаций"
|
||||
L["Toggle the visibility of this display"] = "Переключить видимость этой индикации"
|
||||
L["Tooltip"] = "Подсказка"
|
||||
L["Tooltip Content"] = "Содержание подсказки"
|
||||
L["Tooltip on Mouseover"] = "Подсказка при наведении курсора"
|
||||
L["Tooltip Pattern Match"] = "Совпадение подсказки с образцом"
|
||||
L["Tooltip Text"] = "Текст подсказки"
|
||||
L["Tooltip Value"] = "Значение из текста подсказки"
|
||||
L["Tooltip Value #"] = "Номер значения"
|
||||
L["Top"] = "Сверху"
|
||||
L["Top HUD position"] = "Верхняя позиция HUD"
|
||||
L["Top Left"] = "Сверху слева"
|
||||
L["Top Right"] = "Сверху справа"
|
||||
L["Total"] = "Общий"
|
||||
L["Total - The maximum duration of a timer, or a maximum non-timer value"] = "Всего - Максимальная продолжительность таймера или максимальное значение для не таймера"
|
||||
L["Total Angle"] = "Общий угол"
|
||||
L["Total Time"] = "Общее время"
|
||||
L["Trigger"] = "Триггер"
|
||||
L["Trigger %i"] = "Триггер %i"
|
||||
L["Trigger %i: %s"] = "Триггер %i: %s"
|
||||
L["Trigger Combination"] = "Комбинация триггеров"
|
||||
L["True"] = "Истина"
|
||||
L["Type"] = "Тип"
|
||||
L["Type 'select' for '%s' requires a values member'"] = "Для переменной %s типа select необходимо свойство values."
|
||||
L["Ungroup"] = "Разгруппировать"
|
||||
L["Unit"] = "Единица"
|
||||
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "%s не является допустимой единицей для метода RegisterUnitEvent"
|
||||
L["Unit Count"] = "Количество единиц"
|
||||
L["Unit Frames"] = "Рамки единиц"
|
||||
L["Unknown"] = "Неизвестно"
|
||||
--[[Translation missing --]]
|
||||
L["Unknown Encounter's Spell Id"] = "Unknown Encounter's Spell Id"
|
||||
@@ -1015,14 +885,11 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Update Custom Text On..."] = "Обновление текста, заданного с помощью функции, происходит"
|
||||
L["URL"] = "URL-адрес"
|
||||
L["Url: %s"] = "URL-адрес: %s"
|
||||
L["Use Custom Color"] = "Использовать свой цвет"
|
||||
L["Use Display Info Id"] = "Использовать ID отображения существа"
|
||||
L["Use SetTransform"] = "Использовать ф. SetTransform"
|
||||
L["Use Texture"] = "Использовать текстуру"
|
||||
L["Used in Auras:"] = "Использовано в индикациях:"
|
||||
L["Used in auras:"] = "Использовано в индикациях:"
|
||||
L["Uses Texture Coordinates to rotate the texture."] = "Использует координаты текстуры для её вращения."
|
||||
L["Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."] = "Использует функцию UnitInRange для проверки, находится ли указанная единица рядом с игроком. В этом смысле соответствует поведению стандартных рамок рейда (raid frames). Расстояние составляет от 25 до 40 метров в зависимости от вашего класса и специализации."
|
||||
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."] = "Использует функцию UnitIsVisible для проверки, может ли клиент игры видеть указанную единицу (загружен ли объект). Не определяет, находится ли единица в поле зрения. Расстояние составляет 100 метров. Опрос происходит каждую секунду."
|
||||
L["Value"] = "Значение"
|
||||
L["Value %i"] = "Значение %i"
|
||||
@@ -1041,19 +908,16 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["WeakAuras %s on WoW %s"] = "WeakAuras: %s. Интерфейс: %s"
|
||||
L["What do you want to do?"] = "Что вы хотите сделать?"
|
||||
L["Whole Area"] = "Вся область"
|
||||
L["Width"] = "Ширина"
|
||||
L["wrapping"] = "Перенос слов при переполнении"
|
||||
L["X Offset"] = "Смещение по X"
|
||||
L["X Rotation"] = "Поворот по X"
|
||||
L["X Scale"] = "Масштаб по X"
|
||||
L["X-Offset"] = "Смещение по X"
|
||||
L["x-Offset"] = "Смещение по X"
|
||||
L["Y Offset"] = "Смещение по Y"
|
||||
L["Y Rotation"] = "Поворот по Y"
|
||||
L["Y Scale"] = "Масштаб по Y"
|
||||
L["Yellow Rune"] = "Жёлтая руна"
|
||||
L["y-Offset"] = "Смещение по Y"
|
||||
L["Y-Offset"] = "Смещение по Y"
|
||||
L["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?"] = [=[Вы собираетесь удалить %d |4индикацию:индикации:индикаций;.
|
||||
|cFFFF0000Это действие необратимо!|r Продолжить?]=]
|
||||
@@ -1069,7 +933,6 @@ WeakAuras will always run custom grow code if you include 'changed' in this list
|
||||
L["Your Saved Snippets"] = "Ваши фрагменты кода"
|
||||
L["Z Offset"] = "Смещение по Z"
|
||||
L["Z Rotation"] = "Поворот по Z"
|
||||
L["Zoom"] = "Масштаб"
|
||||
L["Zoom In"] = "Увеличение"
|
||||
L["Zoom Out"] = "Уменьшение"
|
||||
|
||||
|
||||
@@ -121,10 +121,8 @@ local L = WeakAuras.L
|
||||
Enable this setting if you want this timer to be hidden, or when using a WeakAuras text to display the timer]=] ] = "冷却文本会根据原生界面设置(可能被某些插件改动)自动显示。当你想隐藏冷却文本时,或者使用WeakAuras文本替代冷却文本时,启用此设置。"
|
||||
L["A Unit ID (e.g., party1)."] = "单位 ID(如 party1)。"
|
||||
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
|
||||
L["Actions"] = "动作"
|
||||
L["Active Aura Filters and Info"] = "活跃光环过滤器与信息"
|
||||
L["Actual Spec"] = "实际专精"
|
||||
L["Add"] = "添加"
|
||||
L["Add %s"] = "添加 %s"
|
||||
L["Add a new display"] = "添加一个新的图示"
|
||||
L["Add Condition"] = "添加条件"
|
||||
@@ -147,7 +145,6 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["All maintainers of the libraries we use, especially:"] = "我们使用的库的所有维护者,特别是:"
|
||||
L["All of"] = "全部"
|
||||
L["Allow Full Rotation"] = "允许完全旋转"
|
||||
L["Alpha"] = "透明度"
|
||||
L["Anchor"] = "锚点"
|
||||
L["Anchor Mode"] = "定位模式"
|
||||
L["Anchor Point"] = "锚点指向"
|
||||
@@ -175,7 +172,6 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
如果动画的持续时间设定为 |cFF00CC0010%|r,然后触发的增益没有持续时间,将不会播放开始动画.]=]
|
||||
L["Animation Sequence"] = "动画序列"
|
||||
L["Animation Start"] = "动画开始"
|
||||
L["Animations"] = "动画"
|
||||
L["Any of"] = "任意的"
|
||||
L["Apply Template"] = "应用模板"
|
||||
L["Arcane Orb"] = "奥术宝珠"
|
||||
@@ -184,38 +180,27 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["At a position a bit left of Right HUD position"] = "在右侧HUD偏左一点的位置。"
|
||||
L["At the same position as Blizzard's spell alert"] = "与暴雪的法术警报在同一位置"
|
||||
L["Attach to Foreground"] = "依附到前景"
|
||||
L["Aura"] = "光环"
|
||||
L[ [=[Aura is
|
||||
Off Screen]=] ] = "光环在屏幕外"
|
||||
L["Aura Name"] = "光环名称"
|
||||
L["Aura Name Pattern"] = "光环名称规则匹配"
|
||||
L["Aura Order"] = "光环顺序"
|
||||
L["Aura received from: %s"] = "从%s处接收光环"
|
||||
L["Aura Type"] = "光环类型"
|
||||
L["Aura: '%s'"] = "光环:'%s'"
|
||||
L["Author Options"] = "作者选项"
|
||||
L["Auto-Clone (Show All Matches)"] = "自动克隆(显示所有符合项)"
|
||||
L["Automatic"] = "自动"
|
||||
L["Automatic length"] = "自动长度"
|
||||
L["Available Voices are system specific"] = "可用的声音由系统决定"
|
||||
L["Backdrop Color"] = "背景颜色"
|
||||
L["Backdrop in Front"] = "背景在前"
|
||||
L["Backdrop Style"] = "背景图案类型 "
|
||||
L["Background"] = "背景"
|
||||
L["Background Color"] = "背景色"
|
||||
L["Background Inner"] = "背景内部"
|
||||
L["Background Offset"] = "背景偏移"
|
||||
L["Background Texture"] = "背景材质"
|
||||
L["Bar Alpha"] = "进度条透明度"
|
||||
L["Bar Color Settings"] = "进度条颜色设置"
|
||||
L["Bar Color/Gradient Start"] = "进度条颜色/渐变开始颜色"
|
||||
L["Bar Texture"] = "进度条材质"
|
||||
L["Big Icon"] = "大图标"
|
||||
L["Blend Mode"] = "混合模式"
|
||||
L["Blizzard Cooldown Reduction"] = "原生冷却速度提高"
|
||||
L["Blue Rune"] = "蓝色符文"
|
||||
L["Blue Sparkle Orb"] = "蓝色闪光宝珠"
|
||||
L["Border"] = "边框"
|
||||
L["Border %s"] = "边框 %s"
|
||||
L["Border Anchor"] = "边框锚点"
|
||||
L["Border Color"] = "边框颜色"
|
||||
@@ -225,34 +210,26 @@ Off Screen]=] ] = "光环在屏幕外"
|
||||
L["Border Settings"] = "边框设置"
|
||||
L["Border Size"] = "边框大小 "
|
||||
L["Border Style"] = "边框风格"
|
||||
L["Bottom"] = "底部"
|
||||
L["Bottom Left"] = "左下"
|
||||
L["Bottom Right"] = "右下"
|
||||
L["Bracket Matching"] = "括号自动匹配"
|
||||
L["Browse Wago, the largest collection of auras."] = "浏览Wago,最大的光环集合网站。"
|
||||
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."] = "默认情况下,这会显示通过动态信息选择的触发器的信息。来自特定触发器的信息可以通过例如 %2.p 来显示。"
|
||||
L["Can be a UID (e.g., party1)."] = "可以是单位 ID(例如:party1)。"
|
||||
L["Can set to 0 if Columns * Width equal File Width"] = "如果列x宽度=文件宽度,可以设为0"
|
||||
L["Can set to 0 if Rows * Height equal File Height"] = "如果行x高度=文件高度,可以设为0"
|
||||
L["Cancel"] = "取消"
|
||||
L["Case Insensitive"] = "大小写不敏感"
|
||||
L["Cast by a Player Character"] = "玩家角色施放"
|
||||
L["Categories to Update"] = "即将更新的类"
|
||||
L["Center"] = "中间"
|
||||
L["Changelog"] = "更新日志"
|
||||
L["Chat Message"] = "聊天信息"
|
||||
L["Chat with WeakAuras experts on our Discord server."] = "在我们的Discord服务器上与WeakAuras专家聊天。"
|
||||
L["Check On..."] = "检查..."
|
||||
L["Check out our wiki for a large collection of examples and snippets."] = "查看我们的Wiki,获取大量的例子与代码片段。"
|
||||
L["Children:"] = "子项目:"
|
||||
L["Choose"] = "选择"
|
||||
L["Circular Texture %s"] = "圆形材质%s"
|
||||
L["Class"] = "职业"
|
||||
L["Clear Debug Logs"] = "清除调试日志"
|
||||
L["Clear Saved Data"] = "清空已储存数据"
|
||||
L["Clip Overlays"] = "裁剪覆盖层"
|
||||
L["Clipped by Foreground"] = "被前景裁切"
|
||||
L["Clockwise"] = "顺时针"
|
||||
L["Close"] = "关闭"
|
||||
L["Code Editor"] = "代码编辑器"
|
||||
L["Collapse"] = "折叠"
|
||||
@@ -260,7 +237,6 @@ 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"] = "行空间"
|
||||
@@ -272,39 +248,26 @@ Off Screen]=] ] = "光环在屏幕外"
|
||||
L["Compare against the number of units affected."] = "比较受影响的单位数量"
|
||||
L["Compatibility Options"] = "兼容性选项"
|
||||
L["Compress"] = "压缩"
|
||||
L["Conditions"] = "条件"
|
||||
L["Configure what options appear on this panel."] = "配置哪些选项出现在此面板中"
|
||||
L["Constant Factor"] = "常数因子"
|
||||
L["Control-click to select multiple displays"] = "按住 Control 并点击来选择多个图示"
|
||||
L["Controls the positioning and configuration of multiple displays at the same time"] = "同时控制多个图示的位置和设定"
|
||||
L["Convert to..."] = "转换为..."
|
||||
L["Cooldown Numbers might be added by WoW. You can configure these in the game settings."] = "冷却文本可能会被WoW添加。你可以在游戏设置中调整。"
|
||||
L["Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."] = "冷却速度提高将改变每秒的持续时间,而并非显示真实的冷却时间。"
|
||||
L["Copy"] = "拷贝"
|
||||
L["Copy settings..."] = "拷贝设置"
|
||||
L["Copy to all auras"] = "拷贝至所有的光环"
|
||||
L["Could not parse '%s'. Expected a table."] = "无法解析'%s',需要 table。"
|
||||
L["Count"] = "计数 "
|
||||
L["Counts the number of matches over all units."] = "计算所有单位上匹配的数量。"
|
||||
L["Counts the number of matches per unit."] = "计算每个单位上匹配的数量。"
|
||||
L["Create a Copy"] = "创建副本"
|
||||
L["Creating buttons: "] = "创建按钮:"
|
||||
L["Creating options: "] = "创建配置:"
|
||||
L["Crop X"] = "裁剪X"
|
||||
L["Crop Y"] = "裁剪Y"
|
||||
L["Custom"] = "自定义"
|
||||
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."] = "自定义 - 允许您定义一个返回字符串值列表的自定义 Lua 函数。%c1 将被返回的第一个值替换,%c2 将被返回的第二个值替换,以此类推。"
|
||||
L["Custom Anchor"] = "自定义锚点"
|
||||
L["Custom Check"] = "自定义检查"
|
||||
L["Custom Code"] = "自定义代码"
|
||||
L["Custom Code Viewer"] = "自定义代码查看器"
|
||||
L["Custom Color"] = "自定义颜色"
|
||||
L["Custom Configuration"] = "自定义设置"
|
||||
L["Custom Frames"] = "自定义框架"
|
||||
L["Custom Function"] = "自定义函数"
|
||||
L["Custom Grow"] = "自定义生长"
|
||||
L["Custom Options"] = "自定义选项"
|
||||
L["Custom Sort"] = "自定义排序"
|
||||
L["Custom Trigger"] = "自定义触发器"
|
||||
L["Custom trigger event tooltip"] = [=[选择用于检查自定义触发器的事件。
|
||||
如果有多个事件,可以用逗号或空白分隔。
|
||||
@@ -320,8 +283,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Custom Trigger: Ignore Lua Errors on OPTIONS event"] = "自定义触发器:忽略OPTIONS事件的Lua错误"
|
||||
L["Custom Trigger: Send fake events instead of STATUS event"] = "自定义触发器:发送虚假事件而不是STATUS事件"
|
||||
L["Custom Untrigger"] = "自定义取消触发器"
|
||||
L["Custom Variables"] = "自定义变量"
|
||||
L["Debuff Type"] = "减益类型"
|
||||
L["Debug Log"] = "调试日志"
|
||||
L["Debug Log:"] = "调试日志:"
|
||||
L["Default"] = "默认"
|
||||
@@ -332,14 +293,10 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Delete children and group"] = "删除子项目和组"
|
||||
L["Delete Entry"] = "删除条目"
|
||||
L["Deleting auras: "] = "正在删除光环:"
|
||||
L["Desaturate"] = "褪色"
|
||||
L["Description"] = "描述"
|
||||
L["Description Text"] = "描述文本"
|
||||
L["Determines how many entries can be in the table."] = "决定表格中可以有多少条目"
|
||||
L["Differences"] = "差异"
|
||||
L["Disabled"] = "禁用"
|
||||
L["Disallow Entry Reordering"] = "不允许重新排列条目"
|
||||
L["Display"] = "图示"
|
||||
L["Display Name"] = "图示名称"
|
||||
L["Display Text"] = "图示文本"
|
||||
L["Displays a text, works best in combination with other displays"] = "显示一条文本,最好与其他显示效果结合运用"
|
||||
@@ -353,7 +310,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Drag to move"] = "拖拽来移动"
|
||||
L["Duplicate"] = "复制"
|
||||
L["Duplicate All"] = "复制所有"
|
||||
L["Duration"] = "持续时间"
|
||||
L["Duration (s)"] = "持续时间"
|
||||
L["Duration Info"] = "持续时间讯息"
|
||||
L["Dynamic Duration"] = "动态时长"
|
||||
@@ -365,7 +321,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Dynamic Text Replacements"] = "动态文本替换"
|
||||
L["Ease Strength"] = "缓动强度"
|
||||
L["Ease type"] = "缓动类型"
|
||||
L["Edge"] = "边缘"
|
||||
L["eliding"] = "省略"
|
||||
L["Else If"] = "否则如果"
|
||||
L["Else If %s"] = "否则如果 %s"
|
||||
@@ -392,10 +347,8 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Entry limit"] = "条目限制"
|
||||
L["Entry Name Source"] = "条目名称来源"
|
||||
L["Event Type"] = "事件类型"
|
||||
L["Event(s)"] = "事件(复数)"
|
||||
L["Everything"] = "全部"
|
||||
L["Exact Item Match"] = "严格物品匹配"
|
||||
L["Exact Spell ID(s)"] = "精确法术 ID"
|
||||
L["Exact Spell Match"] = "精确法术匹配"
|
||||
L["Expand"] = "展开"
|
||||
L["Expand all loaded displays"] = "展开所有已载入的图示"
|
||||
@@ -409,11 +362,8 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Extra Height"] = "额外高度"
|
||||
L["Extra Width"] = "额外宽度"
|
||||
L["Fade"] = "淡化"
|
||||
L["Fade In"] = "淡入"
|
||||
L["Fade Out"] = "淡出"
|
||||
L["Fadeout Sound"] = "淡出声音"
|
||||
L["Fadeout Time (seconds)"] = "淡出声音(秒)"
|
||||
L["False"] = "假"
|
||||
L["Fetch Affected/Unaffected Names and Units"] = "获取受影响/未受影响的单位名称与单位"
|
||||
L["Fetch Raid Mark Information"] = "获取团队标记信息"
|
||||
L["Fetch Role Information"] = "获取职责信息"
|
||||
@@ -443,12 +393,7 @@ Bleed classification via LibDispel]=] ] = "仅过滤给定类型的可驱散的
|
||||
L["Finishing..."] = "即将完成"
|
||||
L["Fire Orb"] = "火焰宝珠"
|
||||
L["Flat Framelevels"] = "共享框体层级"
|
||||
L["Font"] = "字体"
|
||||
L["Font Size"] = "字体大小"
|
||||
L["Foreground"] = "前景"
|
||||
L["Foreground Color"] = "前景色"
|
||||
L["Foreground Texture"] = "前景材质"
|
||||
L["Format"] = "格式"
|
||||
L["Format for %s"] = "%s 的格式"
|
||||
L["Found a Bug?"] = "发现了故障?"
|
||||
L["Frame"] = "框体"
|
||||
@@ -457,7 +402,6 @@ Bleed classification via LibDispel]=] ] = "仅过滤给定类型的可驱散的
|
||||
L["Frame Rate"] = "帧率"
|
||||
L["Frame Strata"] = "框架层级"
|
||||
L["Frame Width"] = "帧宽度"
|
||||
L["Frequency"] = "频率"
|
||||
L["Full Bar"] = "完整进度条"
|
||||
L["Full Circle"] = "完整圆形"
|
||||
L["Global Conditions"] = "全局条件"
|
||||
@@ -465,14 +409,10 @@ Bleed classification via LibDispel]=] ] = "仅过滤给定类型的可驱散的
|
||||
L["Glow Action"] = "发光动作"
|
||||
L["Glow Anchor"] = "发光锚点"
|
||||
L["Glow Color"] = "发光颜色"
|
||||
L["Glow External Element"] = "发光外部元素"
|
||||
L["Glow Frame Type"] = "发光框体类型"
|
||||
L["Glow Type"] = "发光类型"
|
||||
L["Gradient End"] = "渐变结束颜色"
|
||||
L["Gradient Orientation"] = "渐变方向"
|
||||
L["Green Rune"] = "绿色符文"
|
||||
L["Grid direction"] = "盒方向"
|
||||
L["Group"] = "组"
|
||||
L["Group (verb)"] = "加入组"
|
||||
L["Group Alpha"] = "组透明度"
|
||||
L[ [=[Group and anchor each auras by frame.
|
||||
@@ -503,25 +443,18 @@ Bleed classification via LibDispel]=] ] = "仅过滤给定类型的可驱散的
|
||||
L["Group Role"] = "团队职责"
|
||||
L["Group Scale"] = "组缩放"
|
||||
L["Group Settings"] = "组设置"
|
||||
L["Group Type"] = "组类型"
|
||||
L["Grow"] = "生长"
|
||||
L["Hawk"] = "鹰"
|
||||
L["Height"] = "高度"
|
||||
L["Help"] = "帮助"
|
||||
L["Hide"] = "隐藏"
|
||||
L["Hide Background"] = "隐藏背景"
|
||||
L["Hide Glows applied by this aura"] = "隐藏由此光环应用的发光"
|
||||
L["Hide on"] = "隐藏于"
|
||||
L["Hide this group's children"] = "隐藏此组的子项目"
|
||||
L["Hide Timer Text"] = "隐藏冷却文本"
|
||||
L["Highlights"] = "高亮"
|
||||
L["Horizontal Align"] = "水平对齐"
|
||||
L["Horizontal Bar"] = "水平条"
|
||||
L["Hostility"] = "敌对"
|
||||
L["Huge Icon"] = "巨型图标"
|
||||
L["Hybrid Position"] = "混合定位"
|
||||
L["Hybrid Sort Mode"] = "混合排序模式"
|
||||
L["Icon"] = "图标"
|
||||
L["Icon - The icon associated with the display"] = "图标 - 与显示相关的图标"
|
||||
L["Icon Info"] = "图标信息"
|
||||
L["Icon Inset"] = "图标内嵌"
|
||||
@@ -540,11 +473,8 @@ Bleed classification via LibDispel]=] ] = "仅过滤给定类型的可驱散的
|
||||
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 this space will fill the entire line it is on in User Mode."] = "如果不勾选,则在用户模式下此空白区域将填充一整行。"
|
||||
L["Ignore Dead"] = "忽略已死亡"
|
||||
L["Ignore Disconnected"] = "忽略已离线"
|
||||
L["Ignore out of casting range"] = "忽略超出施法范围"
|
||||
L["Ignore out of checking range"] = "忽略超出检查范围"
|
||||
L["Ignore Self"] = "忽略自身"
|
||||
L["Ignore Wago updates"] = "忽略Wago更新"
|
||||
L["Ignored"] = "被忽略"
|
||||
L["Ignored Aura Name"] = "忽略光环名称"
|
||||
@@ -561,11 +491,9 @@ Bleed classification via LibDispel]=] ] = "仅过滤给定类型的可驱散的
|
||||
L["Importing a group with %s child auras."] = "正在导入一个有%s个子光环的群组。"
|
||||
L["Importing a stand-alone aura."] = "正在导入一个单独的光环。"
|
||||
L["Importing...."] = "正在导入...."
|
||||
L["Include Pets"] = "包括宠物"
|
||||
L["Incompatible changes to group region types detected"] = "发现组类型修改导致的不兼容的改动"
|
||||
L["Incompatible changes to group structure detected"] = "发现组结构修改导致的不兼容的改动"
|
||||
L["Indent Size"] = "缩进"
|
||||
L["Information"] = "信息"
|
||||
L["Inner"] = "内部"
|
||||
L["Insert text replacement codes to make text dynamic."] = "插入文本替换代码以使文本动态化。"
|
||||
L["Invalid Item ID"] = "无效的物品 ID"
|
||||
@@ -575,7 +503,6 @@ Bleed classification via LibDispel]=] ] = "仅过滤给定类型的可驱散的
|
||||
L["Invalid target aura"] = "无效目标光环"
|
||||
L["Invalid type for '%s'. Expected 'bool', 'number', 'select', 'string', 'timer' or 'elapsedTimer'."] = "'%s'的类型无效,需要'bool'、'number'、'select'、'string'、'timer'或'elapsedTimer'。"
|
||||
L["Invalid type for property '%s' in '%s'. Expected '%s'"] = "'%2$s'的属性'%1$s'类型非法,需要'%3$s'"
|
||||
L["Inverse"] = "反向"
|
||||
L["Inverse Slant"] = "反向倾斜"
|
||||
L["Invert the direction of progress"] = "颠倒刷旋转方向"
|
||||
L["Is Boss Debuff"] = "首领施放的减益效果"
|
||||
@@ -587,47 +514,34 @@ Bleed classification via LibDispel]=] ] = "仅过滤给定类型的可驱散的
|
||||
L["Keep your Wago imports up to date with the Companion App."] = "利用Companion应用程序保持你的Wago导入最新。"
|
||||
L["Large Input"] = "大输入框"
|
||||
L["Leaf"] = "叶子"
|
||||
L["Left"] = "左"
|
||||
L["Left 2 HUD position"] = "左侧第二 HUD 位置"
|
||||
L["Left HUD position"] = "左侧 HUD 位置"
|
||||
L["Length"] = "长度"
|
||||
L["Length of |cFFFF0000%s|r"] = "长度|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["LibSharedMedia"] = "LibSharedMedia"
|
||||
L["Limit"] = "限制"
|
||||
L["Line"] = "行"
|
||||
L["Linear Texture %s"] = "线性材质%s"
|
||||
L["Lines & Particles"] = "线条和粒子"
|
||||
L["Linked aura: "] = "关联光环:"
|
||||
L["Load"] = "载入"
|
||||
L["Loaded"] = "已载入"
|
||||
L["Loaded/Standby"] = "已载入/已就绪"
|
||||
L["Lock Positions"] = "锁定位置"
|
||||
L["Loop"] = "循环"
|
||||
L["Low Mana"] = "低法力值"
|
||||
L["Magnetically Align"] = "磁力对齐"
|
||||
L["Main"] = "主要的"
|
||||
L["Manual"] = "手动"
|
||||
L["Manual Icon"] = "手动图标"
|
||||
L["Manual with %i/%i"] = "手动:%i/%i"
|
||||
L["Match Count"] = "匹配计数"
|
||||
L["Match Count per Unit"] = "每单位匹配计数"
|
||||
L["Matches the height setting of a horizontal bar or width for a vertical bar."] = "符合水平进度条的高度设置,或者垂直进度条的宽度设置。"
|
||||
L["Max"] = "最大"
|
||||
L["Max Length"] = "最大长度"
|
||||
L["Maximum"] = "最大值"
|
||||
L["Media Type"] = "媒体类型"
|
||||
L["Medium Icon"] = "中等图标"
|
||||
L["Message"] = "信息"
|
||||
L["Message Type"] = "信息类型"
|
||||
L["Min"] = "最小"
|
||||
L["Minimum"] = "最小值"
|
||||
L["Mirror"] = "镜像"
|
||||
L["Model"] = "模型"
|
||||
L["Model %s"] = "模型 %s"
|
||||
L["Model Picker"] = "模型选择器"
|
||||
L["Model Settings"] = "模型设置"
|
||||
@@ -654,22 +568,18 @@ Bleed classification via LibDispel]=] ] = "仅过滤给定类型的可驱散的
|
||||
L["Name - The name of the display (usually an aura name), or the display's ID if there is no dynamic name"] = "名称 - 显示的名称(通常是光环名称),如果没有动态名称则为显示的 ID"
|
||||
L["Name Info"] = "名称讯息"
|
||||
L["Name Pattern Match"] = "名称规则匹配"
|
||||
L["Name(s)"] = "名称"
|
||||
L["Name:"] = "名称:"
|
||||
L["Nameplates"] = "姓名板"
|
||||
L["Negator"] = "不"
|
||||
L["New Aura"] = "新建"
|
||||
L["New Template"] = "新模版"
|
||||
L["New Value"] = "新值"
|
||||
L["No Children"] = "没有子项目"
|
||||
L["No Logs saved."] = "没有已保存的调试日志。"
|
||||
L["None"] = "无"
|
||||
L["Not a table"] = "不是 table"
|
||||
L["Not all children have the same value for this option"] = "并非所有子项目的此选项的值都一致"
|
||||
L["Not Loaded"] = "未载入"
|
||||
L["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\""] = "注意:此进度来源并未提供总进度/持续时间,所以必须通过“设置最大进度”提供。"
|
||||
L["Npc ID"] = "NPC ID"
|
||||
L["Number of Entries"] = "条目数"
|
||||
L[ [=[Occurrence of the event, reset when aura is unloaded
|
||||
Can be a range of values
|
||||
@@ -710,10 +620,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["or"] = "或"
|
||||
L["or %s"] = "或者 %s"
|
||||
L["Orange Rune"] = "橙色符文"
|
||||
L["Orientation"] = "方向"
|
||||
L["Our translators (too many to name)"] = "我们的翻译(太多了,无法一一列举)"
|
||||
L["Outer"] = "外部"
|
||||
L["Outline"] = "轮廓"
|
||||
L["Overflow"] = "溢出"
|
||||
L["Overlay %s Info"] = "覆盖层 %s 信息"
|
||||
L["Overlays"] = "覆盖层"
|
||||
@@ -737,7 +645,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Premade Auras"] = "预制光环"
|
||||
L["Premade Snippets"] = "预设片段"
|
||||
L["Preparing auras: "] = "正在准备光环:"
|
||||
L["Preset"] = "预设"
|
||||
L["Press Ctrl+C to copy"] = "按 Ctrl+C 复制"
|
||||
L["Press Ctrl+C to copy the URL"] = "按 Ctrl+C 复制 URL"
|
||||
L["Prevent Merging"] = "阻止合并"
|
||||
@@ -745,13 +652,10 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Progress Bar"] = "进度条"
|
||||
L["Progress Bar Settings"] = "进度条设置"
|
||||
L["Progress Settings"] = "进度设置"
|
||||
L["Progress Source"] = "进度来源"
|
||||
L["Progress Texture"] = "进度条材质"
|
||||
L["Progress Texture Settings"] = "进度条材质设置"
|
||||
L["Purple Rune"] = "紫色符文"
|
||||
L["Put this display in a group"] = "将此图示放到组中"
|
||||
L["Radius"] = "半径"
|
||||
L["Raid Role"] = "团队职责"
|
||||
L["Range in yards"] = "距离码数"
|
||||
L["Ready for Install"] = "准备安装"
|
||||
L["Ready for Update"] = "准备更新"
|
||||
@@ -759,7 +663,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Re-center Y"] = "到中心 Y 偏移"
|
||||
L["Reciprocal TRIGGER:# requests will be ignored!"] = "相互的TRIGGER:#请求将被忽略!"
|
||||
L["Regions of type \"%s\" are not supported."] = "%s 区域类型不被支持。"
|
||||
L["Remaining Time"] = "剩余时间"
|
||||
L["Remove"] = "移除"
|
||||
L["Remove All Sounds"] = "移除所有音效"
|
||||
L["Remove All Text To Speech"] = "移除所有文本转语音"
|
||||
@@ -776,7 +679,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Reset all options to their default values."] = "重置所有选项为默认值"
|
||||
L["Reset Entry"] = "重置条目"
|
||||
L["Reset to Defaults"] = "重置为默认"
|
||||
L["Right"] = "右"
|
||||
L["Right 2 HUD position"] = "右侧第二 HUD 位置"
|
||||
L["Right HUD position"] = "右侧 HUD 位置"
|
||||
L["Right-click for more options"] = "右键点击获得更多选项"
|
||||
@@ -784,7 +686,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Rotate In"] = "旋转进入"
|
||||
L["Rotate Out"] = "旋转退出"
|
||||
L["Rotate Text"] = "旋转文字"
|
||||
L["Rotation"] = "旋转"
|
||||
L["Rotation Mode"] = "旋转模式"
|
||||
L["Row Space"] = "列空间"
|
||||
L["Row Width"] = "列宽度"
|
||||
@@ -793,7 +694,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Same"] = "相同"
|
||||
L["Same texture as Foreground"] = "与前景材质相同"
|
||||
L["Saved Data"] = "已储存数据"
|
||||
L["Scale"] = "缩放"
|
||||
L["Scale Factor"] = "缩放因子"
|
||||
L["Search API"] = "搜索API"
|
||||
L["Select Talent"] = "选择天赋"
|
||||
@@ -826,7 +726,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Show Matches for Units"] = "为单位显示匹配项"
|
||||
L["Show Model"] = "显示模型"
|
||||
L["Show model of unit "] = "显示该单位的模型"
|
||||
L["Show On"] = "显示于"
|
||||
L["Show Sound Setting"] = "显示声音设置"
|
||||
L["Show Spark"] = "显示闪光效果"
|
||||
L["Show Stop Motion"] = "显示定格动画"
|
||||
@@ -850,7 +749,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Shows a texture that changes based on duration"] = "显示一个随持续时间而变的材质"
|
||||
L["Shows nothing, except sub elements"] = "除子元素外,不显示任何内容"
|
||||
L["Shows one or more lines of text, which can include dynamic information such as progress or stacks"] = "显示一行或多行文字, 它们包换动态信息, 如进度和叠加层数"
|
||||
L["Simple"] = "简单"
|
||||
L["Size"] = "大小"
|
||||
L["Slant Amount"] = "倾斜程度"
|
||||
L["Slant Mode"] = "倾斜模式"
|
||||
@@ -865,24 +763,15 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Soft Max"] = "软上限"
|
||||
L["Soft Min"] = "软下限"
|
||||
L["Sort"] = "排序"
|
||||
L["Sound"] = "声音"
|
||||
L["Sound by Kit ID"] = "根据 ID 选择音效"
|
||||
L["Sound Channel"] = "声音频道"
|
||||
L["Sound File Path"] = "声音文件路径"
|
||||
L["Sound Kit ID"] = "音效 ID"
|
||||
L["Source"] = "来源"
|
||||
L["Space"] = "间隙"
|
||||
L["Space Horizontally"] = "横向间隙"
|
||||
L["Space Vertically"] = "纵向间隙"
|
||||
L["Spark"] = "闪光"
|
||||
L["Spark Settings"] = "闪光设置"
|
||||
L["Spark Texture"] = "闪光材质"
|
||||
L["Specialization"] = "专精"
|
||||
L["Specific Currency ID"] = "特定货币ID"
|
||||
L["Specific Unit"] = "指定单位"
|
||||
L["Spell ID"] = "法术ID"
|
||||
L["Spell Selection Filters"] = "法术选择过滤器"
|
||||
L["Stack Count"] = "层数"
|
||||
L["Stack Info"] = "层数信息"
|
||||
L["Stacks - The number of stacks of an aura (usually)"] = "堆叠 - 光环的堆叠层数(通常是)"
|
||||
L["Stagger"] = "交错"
|
||||
@@ -890,11 +779,9 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Star"] = "星星"
|
||||
L["Start"] = "开始"
|
||||
L["Start Angle"] = "起始角度"
|
||||
L["Start Animation"] = "开始动画"
|
||||
L["Start Collapsed"] = "打开时折叠"
|
||||
L["Start of %s"] = "%s 的开始"
|
||||
L["Step Size"] = "步进尺寸"
|
||||
L["Stop Motion"] = "定格动画"
|
||||
L["Stop Motion %s"] = "定格动画%s"
|
||||
L["Stop Motion Settings"] = "定格动画设置"
|
||||
L["Stop Sound"] = "停止播放声音"
|
||||
@@ -902,19 +789,14 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
L["Sub Option %i"] = "子选项 %i"
|
||||
L["Subevent"] = "子事件"
|
||||
L["Subevent Suffix"] = "子事件后缀"
|
||||
L["Supports multiple entries, separated by commas"] = "支持多个条目,由英文逗号分隔。"
|
||||
L["Swipe Overlay Settings"] = "冷却刷覆盖层设置"
|
||||
L["Templates could not be loaded, the addon is %s"] = "无法载入Templates:%s"
|
||||
L["Temporary Group"] = "临时组"
|
||||
L["Text"] = "文字"
|
||||
L["Text %s"] = "文本 %s"
|
||||
L["Text Color"] = "文字颜色"
|
||||
L["Text Settings"] = "文本设置"
|
||||
L["Texture"] = "材质"
|
||||
L["Texture %s"] = "材质%s"
|
||||
L["Texture Info"] = "材质信息"
|
||||
L["Texture Picker"] = "材质选择器"
|
||||
L["Texture Rotation"] = "材质旋转"
|
||||
L["Texture Selection Mode"] = "材质选择模式"
|
||||
L["Texture Settings"] = "材质设置"
|
||||
L["Texture Wrap"] = "材质折叠"
|
||||
@@ -931,7 +813,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件发
|
||||
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"] = "WeakAuras 选项插件版本 %s 与 WeakAuras 本体版本 %s 不匹配。如果您在游戏运行时更新了插件,请尝试重新启动《魔兽世界》。否则请尝试重新安装 WeakAuras"
|
||||
L["Then "] = "然后"
|
||||
L["There are several special codes available to make this text dynamic. Click to view a list with all dynamic text codes."] = "有几种特殊代码可用于使此文本动态化。点击查看包含所有动态文本代码的列表。"
|
||||
L["Thickness"] = "粗细"
|
||||
L["This adds %raidMark as text replacements."] = "这将添加 %raidMark 作为文本替换。"
|
||||
L["This adds %role, %roleIcon as text replacements. Does nothing if the unit is not a group member."] = "这将添加 %role, %roleIcon 作为文本替换。如果单位不是队伍成员,则不产生效果。"
|
||||
L["This adds %tooltip, %tooltip1, %tooltip2, %tooltip3 and %tooltip4 as text replacements and also allows filtering based on the tooltip content/values."] = "这将添加 %tooltip, %tooltip1, %tooltip2, %tooltip3, %tooltip4 作为文本替换,同时允许根据这些内容/值进行过滤。"
|
||||
@@ -969,33 +850,23 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Toggle the visibility of all loaded displays"] = "切换当前已载入图示的可见状态"
|
||||
L["Toggle the visibility of all non-loaded displays"] = "切换当前未载入图示的可见状态"
|
||||
L["Toggle the visibility of this display"] = "切换此图示的可见性"
|
||||
L["Tooltip"] = "鼠标提示"
|
||||
L["Tooltip Content"] = "鼠标提示内容"
|
||||
L["Tooltip on Mouseover"] = "鼠标提示"
|
||||
L["Tooltip Pattern Match"] = "鼠标提示规则匹配"
|
||||
L["Tooltip Text"] = "鼠标提示文本"
|
||||
L["Tooltip Value"] = "鼠标提示值"
|
||||
L["Tooltip Value #"] = "鼠标提示值 #"
|
||||
L["Top"] = "上方"
|
||||
L["Top HUD position"] = "顶部 HUD 位置"
|
||||
L["Top Left"] = "左上"
|
||||
L["Top Right"] = "右上"
|
||||
L["Total"] = "总计"
|
||||
L["Total - The maximum duration of a timer, or a maximum non-timer value"] = "总计 - 计时器的最大持续时间,或最大非计时器值"
|
||||
L["Total Angle"] = "最大角度"
|
||||
L["Total Time"] = "总计时间"
|
||||
L["Trigger"] = "触发"
|
||||
L["Trigger %i"] = "触发器%i"
|
||||
L["Trigger %i: %s"] = "触发器%i:%s"
|
||||
L["Trigger Combination"] = "触发器组合"
|
||||
L["True"] = "真"
|
||||
L["Type"] = "类型"
|
||||
L["Type 'select' for '%s' requires a values member'"] = "'%s'的类型'select'需要至少一个'values'成员。"
|
||||
L["Ungroup"] = "不分组"
|
||||
L["Unit"] = "单位"
|
||||
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "单位 %s 并不是 RegisterUnitEvent 的有效单位"
|
||||
L["Unit Count"] = "单位计数"
|
||||
L["Unit Frames"] = "单位框架"
|
||||
L["Unknown"] = "未知"
|
||||
L["Unknown Encounter's Spell Id"] = "未知的首领战斗法术Id"
|
||||
L["Unknown property '%s' found in '%s'"] = "发现'%2$s'的未知属性'%1$s'"
|
||||
@@ -1006,14 +877,11 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Update Custom Text On..."] = "更新自定义文字于"
|
||||
L["URL"] = "URL"
|
||||
L["Url: %s"] = "URL:%s"
|
||||
L["Use Custom Color"] = "使用自定义颜色"
|
||||
L["Use Display Info Id"] = "使用显示信息 ID"
|
||||
L["Use SetTransform"] = "使用 SetTransform 方法"
|
||||
L["Use Texture"] = "使用材质"
|
||||
L["Used in auras:"] = "在下列光环中被使用:"
|
||||
L["Used in Auras:"] = "在下列光环中被使用:"
|
||||
L["Used in auras:"] = "在下列光环中被使用:"
|
||||
L["Uses Texture Coordinates to rotate the texture."] = "使用材质坐标以旋转材质"
|
||||
L["Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."] = "使用UnitInRange()检查是否在范围内。根据你的职业和专精决定范围为25或40码,与默认团队框架的在或不在范围表现一致。"
|
||||
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."] = "使用UnitIsVisible()检查游戏客户端是否加载此单位的对象。此距离大概为100码。每秒检查一次。"
|
||||
L["Value"] = "值"
|
||||
L["Value %i"] = "值 %i"
|
||||
@@ -1032,18 +900,15 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["WeakAuras %s on WoW %s"] = "WeakAuras %s + WoW %s"
|
||||
L["What do you want to do?"] = "你想要做什么?"
|
||||
L["Whole Area"] = "整个区域"
|
||||
L["Width"] = "宽度"
|
||||
L["wrapping"] = "折叠"
|
||||
L["X Offset"] = "X 偏移"
|
||||
L["X Rotation"] = "X轴旋转"
|
||||
L["X Scale"] = "宽度比例"
|
||||
L["X-Offset"] = "X 偏移"
|
||||
L["x-Offset"] = "X偏移"
|
||||
L["Y Offset"] = "Y 偏移"
|
||||
L["Y Rotation"] = "Y轴旋转"
|
||||
L["Y Scale"] = "长度比例"
|
||||
L["Yellow Rune"] = "黄色符文"
|
||||
L["Y-Offset"] = "Y 偏移"
|
||||
L["y-Offset"] = "Y偏移"
|
||||
L["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?"] = "正在删除 %d 个光环,|cFFFF0000此操作无法被撤销!|r真的要删除吗?"
|
||||
@@ -1064,7 +929,6 @@ WeakAuras总是在状态被标记为已改变,或者一个框体被添加、
|
||||
L["Your Saved Snippets"] = "已保存片段"
|
||||
L["Z Offset"] = "Z 偏移"
|
||||
L["Z Rotation"] = "Z轴旋转"
|
||||
L["Zoom"] = "缩放"
|
||||
L["Zoom In"] = "放大"
|
||||
L["Zoom Out"] = "缩小"
|
||||
|
||||
|
||||
@@ -113,10 +113,8 @@ local L = WeakAuras.L
|
||||
Enable this setting if you want this timer to be hidden, or when using a WeakAuras text to display the timer]=] ] = "時間數字會自動依照遊戲內建的選項 (或被其他插件取代) 來決定是否顯示。如果你想要隱藏這個時間數字,或是使用 WeakAuras 的文字來顯示時間,請啟用此設定。"
|
||||
L["A Unit ID (e.g., party1)."] = "單位 ID (例如 party1)。"
|
||||
L["Ace: Funkeh, Nevcairiel"] = "Ace: Funkeh, Nevcairiel"
|
||||
L["Actions"] = "動作"
|
||||
L["Active Aura Filters and Info"] = "啟用光環過濾以及訊息"
|
||||
L["Actual Spec"] = "現實專精"
|
||||
L["Add"] = "新增"
|
||||
L["Add %s"] = "新增%s"
|
||||
L["Add a new display"] = "新增提醒效果"
|
||||
L["Add Condition"] = "新增條件"
|
||||
@@ -139,7 +137,6 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["All maintainers of the libraries we use, especially:"] = "我們使用函數庫的所有維護者,特別是:"
|
||||
L["All of"] = "全部的"
|
||||
L["Allow Full Rotation"] = "允許完全旋轉"
|
||||
L["Alpha"] = "透明度"
|
||||
L["Anchor"] = "對齊"
|
||||
L["Anchor Mode"] = "定位模式"
|
||||
L["Anchor Point"] = "對齊點"
|
||||
@@ -168,7 +165,6 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
如果動畫的持續時間設為 |cFF00CC0010%|r,提醒效果的觸發沒有設定持續時間,將不會播放開始動畫 (儘管你有設定持續時間的秒數)。]=]
|
||||
L["Animation Sequence"] = "動畫序列"
|
||||
L["Animation Start"] = "動畫開始"
|
||||
L["Animations"] = "動畫"
|
||||
L["Any of"] = "任何的"
|
||||
L["Apply Template"] = "套用範本"
|
||||
L["Arcane Orb"] = "祕法光球"
|
||||
@@ -177,39 +173,28 @@ Enable this setting if you want this timer to be hidden, or when using a WeakAur
|
||||
L["At a position a bit left of Right HUD position"] = "比右方 HUD 更右一點的位置"
|
||||
L["At the same position as Blizzard's spell alert"] = "和暴雪法術警告效果相同的位置"
|
||||
L["Attach to Foreground"] = "附加到前台"
|
||||
L["Aura"] = "光環"
|
||||
L[ [=[Aura is
|
||||
Off Screen]=] ] = [=[提醒效果
|
||||
跑出畫面]=]
|
||||
L["Aura Name"] = "光環名稱"
|
||||
L["Aura Name Pattern"] = "光環名稱模式 (Pattern)"
|
||||
L["Aura Order"] = "光環順序"
|
||||
L["Aura received from: %s"] = "收到提醒效果來自: %s"
|
||||
L["Aura Type"] = "光環類型"
|
||||
L["Aura: '%s'"] = "光環: '%s'"
|
||||
L["Author Options"] = "作者選項"
|
||||
L["Auto-Clone (Show All Matches)"] = "自動複製 (顯示所有符合的)"
|
||||
L["Automatic"] = "自動"
|
||||
L["Automatic length"] = "自動長度"
|
||||
L["Available Voices are system specific"] = "可用語音為系統指定"
|
||||
L["Backdrop Color"] = "背景顏色"
|
||||
L["Backdrop in Front"] = "背景在前面"
|
||||
L["Backdrop Style"] = "背景類型"
|
||||
L["Background"] = "背景"
|
||||
L["Background Color"] = "背景顏色"
|
||||
L["Background Inner"] = "背景內部"
|
||||
L["Background Offset"] = "背景位移"
|
||||
L["Background Texture"] = "背景材質"
|
||||
L["Bar Alpha"] = "進度條透明度"
|
||||
L["Bar Color Settings"] = "進度條顏色設定"
|
||||
L["Bar Color/Gradient Start"] = "進度條顏色/漸層開始"
|
||||
L["Bar Texture"] = "進度條材質"
|
||||
L["Big Icon"] = "大圖示"
|
||||
L["Blend Mode"] = "混合模式"
|
||||
L["Blizzard Cooldown Reduction"] = "遊戲內建減少冷卻時間"
|
||||
L["Blue Rune"] = "藍色符文"
|
||||
L["Blue Sparkle Orb"] = "藍色光球"
|
||||
L["Border"] = "邊框"
|
||||
L["Border %s"] = "邊框 %s"
|
||||
L["Border Anchor"] = "邊框對齊"
|
||||
L["Border Color"] = "邊框顏色"
|
||||
@@ -219,34 +204,26 @@ Off Screen]=] ] = [=[提醒效果
|
||||
L["Border Settings"] = "邊框設定"
|
||||
L["Border Size"] = "邊框大小"
|
||||
L["Border Style"] = "邊框樣式"
|
||||
L["Bottom"] = "下"
|
||||
L["Bottom Left"] = "左下"
|
||||
L["Bottom Right"] = "右下"
|
||||
L["Bracket Matching"] = "括號配對符合"
|
||||
L["Browse Wago, the largest collection of auras."] = "請瀏覽 Wago 網站,有大量的提醒效果。"
|
||||
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."] = "預設情況下,這顯示透過動態資訊選擇的觸發器的資訊。來自特定觸發器的資訊可以透過例如%2.p來顯示。"
|
||||
L["Can be a UID (e.g., party1)."] = "可以是單位 ID (例如 party1) 。"
|
||||
L["Can set to 0 if Columns * Width equal File Width"] = "無法設置為0如果欄*寬等同列寬"
|
||||
L["Can set to 0 if Rows * Height equal File Height"] = "無法設置為0如果行*高等同列高"
|
||||
L["Cancel"] = "取消"
|
||||
L["Case Insensitive"] = "不區分大小寫"
|
||||
L["Cast by a Player Character"] = "施放透由玩家角色"
|
||||
L["Categories to Update"] = "要更新的類別"
|
||||
L["Center"] = "中"
|
||||
L["Changelog"] = "更新紀錄"
|
||||
L["Chat Message"] = "聊天訊息文字"
|
||||
L["Chat with WeakAuras experts on our Discord server."] = "在我們的 Discord 伺服器和 WeakAuras 專家們聊天。"
|
||||
L["Check On..."] = "檢查..."
|
||||
L["Check out our wiki for a large collection of examples and snippets."] = "看看我們的 wiki,有大量的範例和程式碼片段。"
|
||||
L["Children:"] = "子項目:"
|
||||
L["Choose"] = "選擇"
|
||||
L["Circular Texture %s"] = "圓形材質 %s"
|
||||
L["Class"] = "職業"
|
||||
L["Clear Debug Logs"] = "清除偵錯紀錄"
|
||||
L["Clear Saved Data"] = "清空已儲存的資料"
|
||||
L["Clip Overlays"] = "裁剪疊加圖層"
|
||||
L["Clipped by Foreground"] = "被前景剪裁"
|
||||
L["Clockwise"] = "順時針"
|
||||
L["Close"] = "關閉"
|
||||
L["Code Editor"] = "程式碼編輯器"
|
||||
L["Collapse"] = "收合"
|
||||
@@ -255,7 +232,6 @@ Off Screen]=] ] = [=[提醒效果
|
||||
L["Collapse all pending Import"] = "收合所有等待匯入的內容"
|
||||
L["Collapsible Group"] = "可收合群組"
|
||||
L["color"] = "顏色"
|
||||
L["Color"] = "顏色"
|
||||
L["Column Height"] = "行高度"
|
||||
L["Column Space"] = "行間距"
|
||||
L["Columns"] = "行"
|
||||
@@ -266,39 +242,26 @@ Off Screen]=] ] = [=[提醒效果
|
||||
L["Compare against the number of units affected."] = "與受影響的單位數量進行比較。"
|
||||
L["Compatibility Options"] = "相容性選項"
|
||||
L["Compress"] = "精簡"
|
||||
L["Conditions"] = "條件"
|
||||
L["Configure what options appear on this panel."] = "設定這個面板中要出現哪些選項。"
|
||||
L["Constant Factor"] = "常數因子"
|
||||
L["Control-click to select multiple displays"] = "按住 Ctrl 鍵點擊可選擇多個提醒效果"
|
||||
L["Controls the positioning and configuration of multiple displays at the same time"] = "同時控制多個提醒效果的位置和設定"
|
||||
L["Convert to..."] = "轉換成..."
|
||||
L["Cooldown Numbers might be added by WoW. You can configure these in the game settings."] = "WoW 可能會添加冷卻時間數字。您可以在遊戲設置中設定這些。"
|
||||
L["Cooldown Reduction changes the duration of seconds instead of showing the real time seconds."] = "減少冷卻時間會更改秒數的持續時間,而不是顯示實際秒數。"
|
||||
L["Copy"] = "複製"
|
||||
L["Copy settings..."] = "複製設定..."
|
||||
L["Copy to all auras"] = "複製到全部的提醒效果"
|
||||
L["Could not parse '%s'. Expected a table."] = "無法分析 '%s',需要 table。"
|
||||
L["Count"] = "數量"
|
||||
L["Counts the number of matches over all units."] = "計算所有單位中符合的數量。"
|
||||
L["Counts the number of matches per unit."] = "計算每個單位的匹配數。"
|
||||
L["Create a Copy"] = "建立副本"
|
||||
L["Creating buttons: "] = "建立按鈕: "
|
||||
L["Creating options: "] = "建立選項: "
|
||||
L["Crop X"] = "水平裁剪"
|
||||
L["Crop Y"] = "垂直裁剪"
|
||||
L["Custom"] = "自訂"
|
||||
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."] = "自訂 - 允許您定義傳回字串值清單的自訂 Lua 函數。%c1 將被傳回的第一個值替換,%c2 將被第二個值替換,依此類推。"
|
||||
L["Custom Anchor"] = "自訂對齊位置"
|
||||
L["Custom Check"] = "自訂檢查"
|
||||
L["Custom Code"] = "自訂程式碼"
|
||||
L["Custom Code Viewer"] = "自訂程式碼檢視器"
|
||||
L["Custom Color"] = "自訂顏色"
|
||||
L["Custom Configuration"] = "自訂設定選項"
|
||||
L["Custom Frames"] = "自訂框架"
|
||||
L["Custom Function"] = "自訂函數"
|
||||
L["Custom Grow"] = "自訂增長"
|
||||
L["Custom Options"] = "自訂選項"
|
||||
L["Custom Sort"] = "自訂排序"
|
||||
L["Custom Trigger"] = "自訂觸發"
|
||||
L["Custom trigger event tooltip"] = [=[選擇自訂觸發要檢查的事件。
|
||||
可用逗號分隔多個事件。
|
||||
@@ -314,8 +277,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Custom Trigger: Ignore Lua Errors on OPTIONS event"] = "自訂觸發: 忽略 OPTIONS 事件的 Lua 錯誤"
|
||||
L["Custom Trigger: Send fake events instead of STATUS event"] = "自訂觸發: 發送假的事件而不是 STATUS 事件"
|
||||
L["Custom Untrigger"] = "自訂取消觸發"
|
||||
L["Custom Variables"] = "自訂變數"
|
||||
L["Debuff Type"] = "減益類型"
|
||||
L["Debug Log"] = "偵錯紀錄"
|
||||
L["Debug Log:"] = "偵錯紀錄:"
|
||||
L["Default"] = "預設"
|
||||
@@ -326,14 +287,10 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Delete children and group"] = "刪除子項目和群組"
|
||||
L["Delete Entry"] = "刪除項目"
|
||||
L["Deleting auras: "] = "正在刪除提醒效果: "
|
||||
L["Desaturate"] = "去色"
|
||||
L["Description"] = "說明"
|
||||
L["Description Text"] = "說明文字"
|
||||
L["Determines how many entries can be in the table."] = "決定表格中可以有多少項目。"
|
||||
L["Differences"] = "差異"
|
||||
L["Disabled"] = "停用"
|
||||
L["Disallow Entry Reordering"] = "不允許重新排序項目"
|
||||
L["Display"] = "提醒效果"
|
||||
L["Display Name"] = "顯示名稱"
|
||||
L["Display Text"] = "提醒效果文字"
|
||||
L["Displays a text, works best in combination with other displays"] = "顯示文字,最適合和其他顯示效果一起搭配使用"
|
||||
@@ -347,7 +304,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Drag to move"] = "滑鼠拖曳來移動"
|
||||
L["Duplicate"] = "多複製一份"
|
||||
L["Duplicate All"] = "全部多複製一份"
|
||||
L["Duration"] = "持續時間"
|
||||
L["Duration (s)"] = "持續時間 (秒)"
|
||||
L["Duration Info"] = "持續時間訊息"
|
||||
L["Dynamic Duration"] = "動態持續時間"
|
||||
@@ -359,7 +315,6 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Dynamic Text Replacements"] = "動態文字替換"
|
||||
L["Ease Strength"] = "淡出強度"
|
||||
L["Ease type"] = "淡出類型"
|
||||
L["Edge"] = "邊緣"
|
||||
L["eliding"] = "符合寬度"
|
||||
L["Else If"] = "(Else If) 否則,當"
|
||||
L["Else If %s"] = "否則如果 %s"
|
||||
@@ -386,10 +341,8 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Entry limit"] = "項目限制"
|
||||
L["Entry Name Source"] = "項目名稱來源"
|
||||
L["Event Type"] = "事件類型"
|
||||
L["Event(s)"] = "事件"
|
||||
L["Everything"] = "全部"
|
||||
L["Exact Item Match"] = "完全符合物品"
|
||||
L["Exact Spell ID(s)"] = "正確的法術 ID"
|
||||
L["Exact Spell Match"] = "完全符合法術"
|
||||
L["Expand"] = "展開"
|
||||
L["Expand all loaded displays"] = "展開所有已載入的提醒效果"
|
||||
@@ -403,11 +356,8 @@ UNIT_POWER, UNIT_AURA PLAYER_TARGET_CHANGED]=]
|
||||
L["Extra Height"] = "額外高度"
|
||||
L["Extra Width"] = "額外寬度"
|
||||
L["Fade"] = "淡化"
|
||||
L["Fade In"] = "淡入"
|
||||
L["Fade Out"] = "淡出"
|
||||
L["Fadeout Sound"] = "淡出聲音"
|
||||
L["Fadeout Time (seconds)"] = "淡出時間 (秒)"
|
||||
L["False"] = "否 (False)"
|
||||
L["Fetch Affected/Unaffected Names and Units"] = "取得受影響/不受影響的名稱和單位"
|
||||
L["Fetch Raid Mark Information"] = "取得團隊標記訊息"
|
||||
L["Fetch Role Information"] = "取得角色類型訊息"
|
||||
@@ -437,12 +387,7 @@ Bleed classification via LibDispel]=] ] = "只過濾被 LibDispel 分類為流
|
||||
L["Finishing..."] = "快完成了..."
|
||||
L["Fire Orb"] = "火球"
|
||||
L["Flat Framelevels"] = "平面框架層級"
|
||||
L["Font"] = "文字"
|
||||
L["Font Size"] = "文字大小"
|
||||
L["Foreground"] = "前景"
|
||||
L["Foreground Color"] = "前景顏色"
|
||||
L["Foreground Texture"] = "前景材質"
|
||||
L["Format"] = "格式"
|
||||
L["Format for %s"] = "%s 的格式"
|
||||
L["Found a Bug?"] = "發現 Bug?"
|
||||
L["Frame"] = "框架"
|
||||
@@ -451,7 +396,6 @@ Bleed classification via LibDispel]=] ] = "只過濾被 LibDispel 分類為流
|
||||
L["Frame Rate"] = "影格幀數"
|
||||
L["Frame Strata"] = "框架層級"
|
||||
L["Frame Width"] = "框架寬度"
|
||||
L["Frequency"] = "頻率"
|
||||
L["Full Bar"] = "整個條列"
|
||||
L["Full Circle"] = "完整循環"
|
||||
L["Global Conditions"] = "整體條件"
|
||||
@@ -459,14 +403,10 @@ Bleed classification via LibDispel]=] ] = "只過濾被 LibDispel 分類為流
|
||||
L["Glow Action"] = "發光動作"
|
||||
L["Glow Anchor"] = "發光對齊位置"
|
||||
L["Glow Color"] = "發光顏色"
|
||||
L["Glow External Element"] = "發光外部元素"
|
||||
L["Glow Frame Type"] = "發光框架類型"
|
||||
L["Glow Type"] = "發光類型"
|
||||
L["Gradient End"] = "漸層結束"
|
||||
L["Gradient Orientation"] = "漸層方向"
|
||||
L["Green Rune"] = "綠色符文"
|
||||
L["Grid direction"] = "網格方向"
|
||||
L["Group"] = "群組"
|
||||
L["Group (verb)"] = "群組"
|
||||
L["Group Alpha"] = "隊伍透明度"
|
||||
L[ [=[Group and anchor each auras by frame.
|
||||
@@ -497,25 +437,18 @@ Bleed classification via LibDispel]=] ] = "只過濾被 LibDispel 分類為流
|
||||
L["Group Role"] = "角色職責"
|
||||
L["Group Scale"] = "群組縮放大小"
|
||||
L["Group Settings"] = "群組設定"
|
||||
L["Group Type"] = "群組類型"
|
||||
L["Grow"] = "增長"
|
||||
L["Hawk"] = "老鷹"
|
||||
L["Height"] = "高度"
|
||||
L["Help"] = "說明"
|
||||
L["Hide"] = "隱藏"
|
||||
L["Hide Background"] = "隱藏背景"
|
||||
L["Hide Glows applied by this aura"] = "隱藏這個提醒效果所套用的發光效果"
|
||||
L["Hide on"] = "隱藏"
|
||||
L["Hide this group's children"] = "隱藏這個群組的子項目"
|
||||
L["Hide Timer Text"] = "隱藏時間數字"
|
||||
L["Highlights"] = "顯著標示"
|
||||
L["Horizontal Align"] = "水平對齊"
|
||||
L["Horizontal Bar"] = "水平進度條"
|
||||
L["Hostility"] = "敵對"
|
||||
L["Huge Icon"] = "超大圖示"
|
||||
L["Hybrid Position"] = "混合位置"
|
||||
L["Hybrid Sort Mode"] = "混合模式"
|
||||
L["Icon"] = "圖示"
|
||||
L["Icon - The icon associated with the display"] = "圖示 - 與顯示相關的圖示"
|
||||
L["Icon Info"] = "圖示訊息"
|
||||
L["Icon Inset"] = "圖示內縮"
|
||||
@@ -534,11 +467,8 @@ Bleed classification via LibDispel]=] ] = "只過濾被 LibDispel 分類為流
|
||||
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 this space will fill the entire line it is on in User Mode."] = "取消勾選時,會用這個空格填滿使用者模式中的整行。"
|
||||
L["Ignore Dead"] = "忽略死者"
|
||||
L["Ignore Disconnected"] = "忽略離線者"
|
||||
L["Ignore out of casting range"] = "忽略超出施法範圍"
|
||||
L["Ignore out of checking range"] = "忽略超出檢查範圍"
|
||||
L["Ignore Self"] = "忽略自己"
|
||||
L["Ignore Wago updates"] = "忽略 Wago 的更新"
|
||||
L["Ignored"] = "忽略"
|
||||
L["Ignored Aura Name"] = "忽略的光環名稱"
|
||||
@@ -555,11 +485,9 @@ Bleed classification via LibDispel]=] ] = "只過濾被 LibDispel 分類為流
|
||||
L["Importing a group with %s child auras."] = "正在匯入包含 %s 個附屬提醒效果的群組。"
|
||||
L["Importing a stand-alone aura."] = "匯入一個獨立的提醒效果。"
|
||||
L["Importing...."] = "匯入中..."
|
||||
L["Include Pets"] = "包含寵物"
|
||||
L["Incompatible changes to group region types detected"] = "檢測到對群組區域類型的不相容更改"
|
||||
L["Incompatible changes to group structure detected"] = "檢測到對群組結構的不相容更改"
|
||||
L["Indent Size"] = "內縮大小"
|
||||
L["Information"] = "資訊"
|
||||
L["Inner"] = "內部"
|
||||
L["Insert text replacement codes to make text dynamic."] = "插入文字替換程式碼以使文字動態化。"
|
||||
L["Invalid Item ID"] = "無效的物品 ID"
|
||||
@@ -569,7 +497,6 @@ Bleed classification via LibDispel]=] ] = "只過濾被 LibDispel 分類為流
|
||||
L["Invalid target aura"] = "無效的目標光環"
|
||||
L["Invalid type for '%s'. Expected 'bool', 'number', 'select', 'string', 'timer' or 'elapsedTimer'."] = "'%s' 的類型無效,需要 'bool', 'number', 'select', 'string', 'timer' 或 'elapsedTimer'。"
|
||||
L["Invalid type for property '%s' in '%s'. Expected '%s'"] = "屬性 '%s' 的類型無效 (在 '%s'),需要 '%s'。"
|
||||
L["Inverse"] = "反向"
|
||||
L["Inverse Slant"] = "反向傾斜"
|
||||
L["Invert the direction of progress"] = "反轉進度增長方向"
|
||||
L["Is Boss Debuff"] = "首領的減益"
|
||||
@@ -581,47 +508,34 @@ Bleed classification via LibDispel]=] ] = "只過濾被 LibDispel 分類為流
|
||||
L["Keep your Wago imports up to date with the Companion App."] = "使用 Companion App 讓從 Wago 匯入的字串保持更新。"
|
||||
L["Large Input"] = "大量輸入"
|
||||
L["Leaf"] = "葉子"
|
||||
L["Left"] = "左"
|
||||
L["Left 2 HUD position"] = "左2 HUD 位置"
|
||||
L["Left HUD position"] = "左方 HUD 位置"
|
||||
L["Length"] = "長度"
|
||||
L["Length of |cFFFF0000%s|r"] = "|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["LibSharedMedia"] = "LibSharedMedia"
|
||||
L["Limit"] = "限制"
|
||||
L["Line"] = "線"
|
||||
L["Linear Texture %s"] = "線性材質 %s"
|
||||
L["Lines & Particles"] = "直線 & 粒子"
|
||||
L["Linked aura: "] = "已連結光環: "
|
||||
L["Load"] = "載入"
|
||||
L["Loaded"] = "已載入"
|
||||
L["Loaded/Standby"] = "已載入/準備就緒"
|
||||
L["Lock Positions"] = "鎖定位置"
|
||||
L["Loop"] = "重複循環"
|
||||
L["Low Mana"] = "低法力"
|
||||
L["Magnetically Align"] = "磁吸式對齊"
|
||||
L["Main"] = "主要"
|
||||
L["Manual"] = "手動"
|
||||
L["Manual Icon"] = "手動圖示"
|
||||
L["Manual with %i/%i"] = "手動 %i/%i "
|
||||
L["Match Count"] = "符合的數量"
|
||||
L["Match Count per Unit"] = "每個單位符合的數量"
|
||||
L["Matches the height setting of a horizontal bar or width for a vertical bar."] = "符合水平進度條的高度設定,或垂直進度條的寬度。"
|
||||
L["Max"] = "最大"
|
||||
L["Max Length"] = "最大長度"
|
||||
L["Maximum"] = "最大"
|
||||
L["Media Type"] = "媒體類型"
|
||||
L["Medium Icon"] = "中圖示"
|
||||
L["Message"] = "訊息"
|
||||
L["Message Type"] = "訊息類型"
|
||||
L["Min"] = "最小"
|
||||
L["Minimum"] = "最小"
|
||||
L["Mirror"] = "鏡像"
|
||||
L["Model"] = "模組"
|
||||
L["Model %s"] = "模組 %s"
|
||||
L["Model Picker"] = "模型挑選器"
|
||||
L["Model Settings"] = "模組設定"
|
||||
@@ -648,22 +562,18 @@ Bleed classification via LibDispel]=] ] = "只過濾被 LibDispel 分類為流
|
||||
L["Name - The name of the display (usually an aura name), or the display's ID if there is no dynamic name"] = "名稱 - 顯示的名稱(通常是光環名稱),如果沒有動態名稱,則為顯示的 ID"
|
||||
L["Name Info"] = "名稱訊息"
|
||||
L["Name Pattern Match"] = "名稱模式符合"
|
||||
L["Name(s)"] = "名稱"
|
||||
L["Name:"] = "名稱:"
|
||||
L["Nameplates"] = "血條/名條"
|
||||
L["Negator"] = "不"
|
||||
L["New Aura"] = "新增提醒效果"
|
||||
L["New Template"] = "新範本"
|
||||
L["New Value"] = "新的值"
|
||||
L["No Children"] = "沒有子項目"
|
||||
L["No Logs saved."] = "無紀錄儲存。"
|
||||
L["None"] = "無"
|
||||
L["Not a table"] = "不是 table"
|
||||
L["Not all children have the same value for this option"] = "並非所有子項目的這個設定都使用相同的數值"
|
||||
L["Not Loaded"] = "未載入"
|
||||
L["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\""] = "注意:此進度來源不提供總數值/持續時間。必須透過「設定最大進度」來設定總數值/持續時間。"
|
||||
L["Npc ID"] = "NPC ID"
|
||||
L["Number of Entries"] = "項目數量"
|
||||
L[ [=[Occurrence of the event, reset when aura is unloaded
|
||||
Can be a range of values
|
||||
@@ -704,10 +614,8 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["or"] = "或"
|
||||
L["or %s"] = "或 %s"
|
||||
L["Orange Rune"] = "橘色符文"
|
||||
L["Orientation"] = "方向"
|
||||
L["Our translators (too many to name)"] = "我們的翻譯者(太多了,無法一一列舉)"
|
||||
L["Outer"] = "外部"
|
||||
L["Outline"] = "外框"
|
||||
L["Overflow"] = "超出範圍"
|
||||
L["Overlay %s Info"] = "疊加圖層 %s 資訊"
|
||||
L["Overlays"] = "疊加圖層"
|
||||
@@ -731,7 +639,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Premade Auras"] = "現成的提醒效果"
|
||||
L["Premade Snippets"] = "現成的程式碼片段"
|
||||
L["Preparing auras: "] = "正在準備提醒效果: "
|
||||
L["Preset"] = "預設配置"
|
||||
L["Press Ctrl+C to copy"] = "按下 Ctrl+C 複製"
|
||||
L["Press Ctrl+C to copy the URL"] = "按 Ctrl+C 複製 URL"
|
||||
L["Prevent Merging"] = "防止合併"
|
||||
@@ -739,13 +646,10 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Progress Bar"] = "進度條"
|
||||
L["Progress Bar Settings"] = "進度條設定"
|
||||
L["Progress Settings"] = "進度設定"
|
||||
L["Progress Source"] = "進度來源"
|
||||
L["Progress Texture"] = "進度材質"
|
||||
L["Progress Texture Settings"] = "進度材質設定"
|
||||
L["Purple Rune"] = "紫色符文"
|
||||
L["Put this display in a group"] = "將這個提醒效果放入群組中"
|
||||
L["Radius"] = "半徑"
|
||||
L["Raid Role"] = "團隊角色職責"
|
||||
L["Range in yards"] = "幾碼範圍"
|
||||
L["Ready for Install"] = "準備好安裝了"
|
||||
L["Ready for Update"] = "準備好更新了"
|
||||
@@ -753,7 +657,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Re-center Y"] = "重新垂直置中"
|
||||
L["Reciprocal TRIGGER:# requests will be ignored!"] = "對應的觸發器:# 請求將被忽略!"
|
||||
L["Regions of type \"%s\" are not supported."] = "不支援區域類型 \"%s\"。"
|
||||
L["Remaining Time"] = "剩餘時間"
|
||||
L["Remove"] = "移除"
|
||||
L["Remove All Sounds"] = "移除所有音效"
|
||||
L["Remove All Text To Speech"] = "移除所有文字轉語音"
|
||||
@@ -770,7 +673,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Reset all options to their default values."] = "重置所有選項,恢復成預設值。"
|
||||
L["Reset Entry"] = "重置項目"
|
||||
L["Reset to Defaults"] = "重置為預設值"
|
||||
L["Right"] = "右"
|
||||
L["Right 2 HUD position"] = "右2 HUD 位置"
|
||||
L["Right HUD position"] = "右方 HUD 位置"
|
||||
L["Right-click for more options"] = "右鍵點擊顯示更多設定"
|
||||
@@ -778,7 +680,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Rotate In"] = "旋轉進入"
|
||||
L["Rotate Out"] = "旋轉退出"
|
||||
L["Rotate Text"] = "旋轉文字"
|
||||
L["Rotation"] = "旋轉"
|
||||
L["Rotation Mode"] = "旋轉模式"
|
||||
L["Row Space"] = "列間距"
|
||||
L["Row Width"] = "列寬度"
|
||||
@@ -787,7 +688,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Same"] = "相同"
|
||||
L["Same texture as Foreground"] = "與前景相同的材質"
|
||||
L["Saved Data"] = "已儲存的資料"
|
||||
L["Scale"] = "縮放大小"
|
||||
L["Scale Factor"] = "縮放因子"
|
||||
L["Search API"] = "搜尋API"
|
||||
L["Select Talent"] = "選擇天賦"
|
||||
@@ -820,7 +720,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Show Matches for Units"] = "顯示單位符合的"
|
||||
L["Show Model"] = "顯示模組"
|
||||
L["Show model of unit "] = "顯示單位的模組"
|
||||
L["Show On"] = "顯示於"
|
||||
L["Show Sound Setting"] = "顯示音效設定"
|
||||
L["Show Spark"] = "顯示亮點"
|
||||
L["Show Stop Motion"] = "顯示停止動畫"
|
||||
@@ -844,7 +743,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Shows a texture that changes based on duration"] = "顯示根據時間變化的材質"
|
||||
L["Shows nothing, except sub elements"] = "除了子元素之外什麼都不顯示"
|
||||
L["Shows one or more lines of text, which can include dynamic information such as progress or stacks"] = "顯示包含動態資訊的文字 (例如進度或是堆疊層數,允許一行或多行)"
|
||||
L["Simple"] = "簡單"
|
||||
L["Size"] = "大小"
|
||||
L["Slant Amount"] = "傾斜大小"
|
||||
L["Slant Mode"] = "傾斜模式"
|
||||
@@ -859,24 +757,15 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Soft Max"] = "最大軟上限"
|
||||
L["Soft Min"] = "最小軟上限"
|
||||
L["Sort"] = "排序"
|
||||
L["Sound"] = "音效"
|
||||
L["Sound by Kit ID"] = "音效 Sound Kit ID"
|
||||
L["Sound Channel"] = "音效頻道"
|
||||
L["Sound File Path"] = "音效檔案路徑"
|
||||
L["Sound Kit ID"] = "Sound Kit ID"
|
||||
L["Source"] = "來源"
|
||||
L["Space"] = "間距"
|
||||
L["Space Horizontally"] = "橫向間隔"
|
||||
L["Space Vertically"] = "縱向間隔"
|
||||
L["Spark"] = "亮點"
|
||||
L["Spark Settings"] = "亮點設定"
|
||||
L["Spark Texture"] = "亮點材質"
|
||||
L["Specialization"] = "專精"
|
||||
L["Specific Currency ID"] = "特定兌換通貨ID"
|
||||
L["Specific Unit"] = "指定單位"
|
||||
L["Spell ID"] = "法術 ID"
|
||||
L["Spell Selection Filters"] = "法術選擇過濾器"
|
||||
L["Stack Count"] = "堆疊層數"
|
||||
L["Stack Info"] = "堆疊層數資訊"
|
||||
L["Stacks - The number of stacks of an aura (usually)"] = "層數 - 光環的疊加數(通常)"
|
||||
L["Stagger"] = "醉仙緩勁"
|
||||
@@ -884,11 +773,9 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Star"] = "星星"
|
||||
L["Start"] = "開始"
|
||||
L["Start Angle"] = "開始時的角度"
|
||||
L["Start Animation"] = "開始動畫"
|
||||
L["Start Collapsed"] = "開始先收合"
|
||||
L["Start of %s"] = "%s 的開始"
|
||||
L["Step Size"] = "數值間距"
|
||||
L["Stop Motion"] = "定格"
|
||||
L["Stop Motion %s"] = "停止動畫 %s"
|
||||
L["Stop Motion Settings"] = "定格設定"
|
||||
L["Stop Sound"] = "停止音效"
|
||||
@@ -896,19 +783,14 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
L["Sub Option %i"] = "子選項 %i"
|
||||
L["Subevent"] = "子事件"
|
||||
L["Subevent Suffix"] = "子事件後綴"
|
||||
L["Supports multiple entries, separated by commas"] = "支援輸入多個項目,使用逗號分隔。"
|
||||
L["Swipe Overlay Settings"] = "倒數轉圈效果設定"
|
||||
L["Templates could not be loaded, the addon is %s"] = "無法載入範本,此插件為 %s"
|
||||
L["Temporary Group"] = "暫時性的群組"
|
||||
L["Text"] = "文字"
|
||||
L["Text %s"] = "文字 %s"
|
||||
L["Text Color"] = "文字顏色"
|
||||
L["Text Settings"] = "文字設定"
|
||||
L["Texture"] = "材質"
|
||||
L["Texture %s"] = "材質 %s"
|
||||
L["Texture Info"] = "材質資訊"
|
||||
L["Texture Picker"] = "材質挑選器"
|
||||
L["Texture Rotation"] = "材質旋轉"
|
||||
L["Texture Selection Mode"] = "材質選擇模式"
|
||||
L["Texture Settings"] = "材質設定"
|
||||
L["Texture Wrap"] = "材質包覆"
|
||||
@@ -925,7 +807,6 @@ every 3 events starting from 2nd and ending at 11th: 2-11/3]=] ] = [=[事件發
|
||||
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"] = "WeakAuras 選項插件版本 %s 與 WeakAuras 版本 %s 不符。如果您在遊戲運行時更新了插件,請嘗試重新啟動《魔獸世界》。否則嘗試重新安裝 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."] = "有幾個特殊的程式碼可以使該文字動態化。按一下可查看包含所有動態文字程式碼的清單。"
|
||||
L["Thickness"] = "粗細"
|
||||
L["This adds %raidMark as text replacements."] = "這會加入 %raidMark 作為替換用的文字。"
|
||||
L["This adds %role, %roleIcon as text replacements. Does nothing if the unit is not a group member."] = "這會將 %role、%roleIcon 加入為替換文字。如果該單位不是隊伍成員,則不執行任何操作。"
|
||||
L["This adds %tooltip, %tooltip1, %tooltip2, %tooltip3 and %tooltip4 as text replacements and also allows filtering based on the tooltip content/values."] = "這會加入 %tooltip, %tooltip1, %tooltip2, %tooltip3 和 %tooltip4 來替換文字,還允許根據浮動提示資訊的內容/值來過濾。"
|
||||
@@ -962,33 +843,23 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Toggle the visibility of all loaded displays"] = "切換顯示所有已載入的提醒效果"
|
||||
L["Toggle the visibility of all non-loaded displays"] = "切換顯示所有未載入的提醒效果"
|
||||
L["Toggle the visibility of this display"] = "切換顯示這個提醒效果"
|
||||
L["Tooltip"] = "浮動提示資訊"
|
||||
L["Tooltip Content"] = "浮動提示資訊內容"
|
||||
L["Tooltip on Mouseover"] = "滑鼠指向時的浮動提示資訊"
|
||||
L["Tooltip Pattern Match"] = "浮動提示資訊模式匹配 (Pattern)"
|
||||
L["Tooltip Text"] = "浮動提示資訊文字"
|
||||
L["Tooltip Value"] = "浮動提示資訊值"
|
||||
L["Tooltip Value #"] = "浮動提示資訊值 #"
|
||||
L["Top"] = "上"
|
||||
L["Top HUD position"] = "上方 HUD 位置"
|
||||
L["Top Left"] = "左上"
|
||||
L["Top Right"] = "右上"
|
||||
L["Total"] = "總共"
|
||||
L["Total - The maximum duration of a timer, or a maximum non-timer value"] = "總計 - 定時器的最大持續時間,或最大非定時器值"
|
||||
L["Total Angle"] = "總角度"
|
||||
L["Total Time"] = "總共時間"
|
||||
L["Trigger"] = "觸發"
|
||||
L["Trigger %i"] = "觸發器 %i"
|
||||
L["Trigger %i: %s"] = "觸發器 %i: %s"
|
||||
L["Trigger Combination"] = "觸發組合"
|
||||
L["True"] = "是 (True)"
|
||||
L["Type"] = "類型"
|
||||
L["Type 'select' for '%s' requires a values member'"] = "'%s' 的類型 'select' 需要 values member"
|
||||
L["Ungroup"] = "解散群組"
|
||||
L["Unit"] = "單位"
|
||||
L["Unit %s is not a valid unit for RegisterUnitEvent"] = "%s 不是 RegisterUnitEvent 的有效單位"
|
||||
L["Unit Count"] = "單位數量"
|
||||
L["Unit Frames"] = "單位框架"
|
||||
L["Unknown"] = "未知"
|
||||
L["Unknown Encounter's Spell Id"] = "未知的首領戰法術 ID"
|
||||
L["Unknown property '%s' found in '%s'"] = "發現未知屬性 '%s',在 '%s'"
|
||||
@@ -999,14 +870,11 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["Update Custom Text On..."] = "更新自訂文字於..."
|
||||
L["URL"] = "URL"
|
||||
L["Url: %s"] = "網址:%s"
|
||||
L["Use Custom Color"] = "使用自訂顏色"
|
||||
L["Use Display Info Id"] = "使用顯示資訊 ID"
|
||||
L["Use SetTransform"] = "使用 SetTransform"
|
||||
L["Use Texture"] = "使用材質"
|
||||
L["Used in auras:"] = "使用的提醒效果:"
|
||||
L["Used in Auras:"] = "使用的提醒效果:"
|
||||
L["Used in auras:"] = "使用的提醒效果:"
|
||||
L["Uses Texture Coordinates to rotate the texture."] = "使用材質坐標來旋轉材質。"
|
||||
L["Uses UnitInRange() to check if in range. Matches default raid frames out of range behavior, which is between 25 to 40 yards depending on your class and spec."] = "使用 UnitInRange() 來檢查是否在範圍內。符合團隊框架預設的超出範圍行為時,範圍是在 25 到 40 碼之間,具體取決於您的職業和專精。"
|
||||
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."] = "使用 UnitIsVisible() 來檢查遊戲是否已經載入該單位的物件,距離為 100碼,每秒都會檢查一次。"
|
||||
L["Value"] = "數值"
|
||||
L["Value %i"] = "數值 %i"
|
||||
@@ -1025,19 +893,16 @@ Upgrade your version of WeakAuras or wait for next release before installing thi
|
||||
L["WeakAuras %s on WoW %s"] = "WeakAuras %s 在 WoW %s"
|
||||
L["What do you want to do?"] = "你想要怎麼做?"
|
||||
L["Whole Area"] = "整個區域"
|
||||
L["Width"] = "寬度"
|
||||
L["wrapping"] = "自動換行"
|
||||
L["X Offset"] = "水平位置"
|
||||
L["X Rotation"] = "水平旋轉"
|
||||
L["X Scale"] = "水平縮放"
|
||||
L["x-Offset"] = "水平位移"
|
||||
L["X-Offset"] = "水平位移"
|
||||
L["Y Offset"] = "垂直位置"
|
||||
L["Y Rotation"] = "垂直旋轉"
|
||||
L["Y Scale"] = "垂直縮放"
|
||||
L["Yellow Rune"] = "黃色符文"
|
||||
L["y-Offset"] = "垂直位移"
|
||||
L["Y-Offset"] = "垂直位移"
|
||||
L["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?"] = "你正準備要刪除 %d 個提醒效果,刪除後將|cFFFF0000無法還原!|r 請問是否要繼續?"
|
||||
L["You are about to delete a trigger. |cFFFF0000This cannot be undone!|r Would you like to continue?"] = "你正要刪除觸發。 |cFFFF0000刪除後將無法還原!|r 是否確定要繼續?"
|
||||
@@ -1051,7 +916,6 @@ WeakAuras will always run custom grow code if you include 'changed' in this list
|
||||
L["Your Saved Snippets"] = "已儲存的程式碼片段"
|
||||
L["Z Offset"] = "Z軸位移"
|
||||
L["Z Rotation"] = "Z軸旋轉"
|
||||
L["Zoom"] = "縮放"
|
||||
L["Zoom In"] = "放大"
|
||||
L["Zoom Out"] = "縮小"
|
||||
|
||||
|
||||
@@ -129,9 +129,7 @@ end]=]
|
||||
name = "Trigger State Updater",
|
||||
snippet = [=[
|
||||
function(allstates, event, ...)
|
||||
allstates[""] = {
|
||||
show = true,
|
||||
changed = true,
|
||||
allstates:Update("", {
|
||||
progressType = "static"||"timed",
|
||||
value = ,
|
||||
total = ,
|
||||
@@ -142,8 +140,9 @@ function(allstates, event, ...)
|
||||
icon = ,
|
||||
stacks = ,
|
||||
index = ,
|
||||
}
|
||||
return true
|
||||
})
|
||||
-- allstates:Remove("")
|
||||
-- allstates:RemoveAll()
|
||||
end]=]
|
||||
},
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
## Interface: 30300
|
||||
## Title: WeakAuras Options
|
||||
## Author: The WeakAuras Team
|
||||
## Version: 5.19.2
|
||||
## Version: 5.19.3
|
||||
## Notes: Options for WeakAuras
|
||||
## Notes-esES: Opciones para WeakAuras
|
||||
## Notes-esMX: Opciones para WeakAuras
|
||||
|
||||
Reference in New Issue
Block a user