This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local select, UnitBuff, UnitDebuff, UnitAura, tonumber, strfind, hooksecurefunc = | |
select, UnitBuff, UnitDebuff, UnitAura, tonumber, strfind, hooksecurefunc | |
local function addLine(self,id,isItem) | |
if isItem then | |
self:AddDoubleLine("ItemID:","|cffffffff"..id) | |
else | |
self:AddDoubleLine("SpellID:","|cffffffff"..id) | |
end | |
self:Show() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if GetLocale() == "deDE" then | |
-- general | |
ElvuiL.option_general = "Allgemein" | |
ElvuiL.option_general_uiscale = "Automatische Interface Skalierung" | |
ElvuiL.option_general_multisample = "Multisample Schutz (Saubere 1px Ränder)" | |
ElvuiL.option_general_customuiscale = "Interface Skalierung (falls Automatische Interface Skalierung deaktiviert ist)" | |
ElvuiL.option_general_embedright = "Addon in den rechten Chat einfügen (Recount, Omen, Skada)" | |
ElvuiL.option_general_classtheme = "Rahmenfarbe nach Klasse färben" | |
ElvuiL.option_general_autocustomlagtolerance = "Automatische Anpassung der Blizzard Custom Lag Toleranz an deine Latenz." | |
ElvuiL.option_general_fontscale = "Hauptschriftskalierung" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local AceLocale = LibStub:GetLibrary("AceLocale-3.0") | |
local L = AceLocale:NewLocale("ElvuiConfig", "deDE") | |
if not L then return end | |
--General | |
L["General Settings"] = "Allgemeine Einstellungen" | |
L["ELVUI_DESC"] = "Benutzerinterface AddOn fuer World of Warcraft." | |
L["Auto Scale"] = "Automatische Skalierung" | |
L["Automatically scale the User Interface based on your screen resolution"] = "Skaliere das Benutzerinterface, basierend auf deiner Bildschirmaufloesung, automatisch" | |
L["Scale"] = "Skalierung" |