You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
458 B
18 lines
458 B
local SLE, T, E, L, V, P, G = unpack(ElvUI_SLE)
|
|
|
|
local LFG_LIST_LEGACY = LFG_LIST_LEGACY
|
|
local function configTable()
|
|
if not SLE.initialized then return end
|
|
|
|
E.Options.args.sle.args.modules.args.legacy = {
|
|
type = "group",
|
|
name = SLE.Russian and ITEM_QUALITY7_DESC or LFG_LIST_LEGACY,
|
|
desc = L["Modules designed for older expantions"],
|
|
order = 1,
|
|
childGroups = 'tab',
|
|
args = {
|
|
},
|
|
}
|
|
end
|
|
|
|
tinsert(SLE.Configs, configTable)
|
|
|