diff --git a/ls_UI/core/defaults.lua b/ls_UI/core/defaults.lua index 62de1974..15f99104 100644 --- a/ls_UI/core/defaults.lua +++ b/ls_UI/core/defaults.lua @@ -527,7 +527,6 @@ D.global = { vert = "LS", }, }, - login_message = true, } D.profile = { diff --git a/ls_UI/init.lua b/ls_UI/init.lua index f9278820..10a3c5ce 100644 --- a/ls_UI/init.lua +++ b/ls_UI/init.lua @@ -99,10 +99,6 @@ E:RegisterEvent("ADDON_LOADED", function(arg1) PrC.db = LibStub("AceDB-3.0"):New("LS_UI_PRIVATE_CONFIG", PrD) - if C.db.global.login_message and (not C.db.global.version or C.db.global.version < E.VER.number) then - print(L["LOGIN_MSG"]:format(L["LS_UI"], E.VER.string, M.textures.icons_inline.DISCORD_32, L["INFORMATION"])) - end - addRefs() if AdiButtonAuras and AdiButtonAuras.RegisterLAB then diff --git a/ls_UI/locales/enUS.lua b/ls_UI/locales/enUS.lua index 5657babc..bf380023 100644 --- a/ls_UI/locales/enUS.lua +++ b/ls_UI/locales/enUS.lua @@ -296,8 +296,6 @@ L["LEFT_DOWN"] = "Left and Down" L["LEFT_UP"] = "Left and Up" L["LEVEL_TOOLTIP"] = "Level: |cffffffff%d|r" L["LOCK_BUTTONS"] = "Lock Buttons" -L["LOGIN_MSG"] = "Welcome to %s version |cff1a9fc0%s|r. If you're in need of technical support or have suggestions on how to improve the addon you can join our %s |cff5865F2Discord|r server! Links can be found at |cff1a9fc0/lsui|r > %s." -L["LOGIN_MSG_TOGGLE"] = "Login Message" L["LOOT_ALL"] = "Loot All" L["M_SS_THRESHOLD"] = "M:SS Threshold" L["M_SS_THRESHOLD_DESC"] = "The threshold (in seconds) below which the remaining time will be shown in the M:SS format. Set to 0 to disable." diff --git a/ls_UI/locales/ruRU.lua b/ls_UI/locales/ruRU.lua index b6c356fb..474482c1 100644 --- a/ls_UI/locales/ruRU.lua +++ b/ls_UI/locales/ruRU.lua @@ -208,8 +208,6 @@ L["LEFT_DOWN"] = "Влево и вниз" L["LEFT_UP"] = "Влево и вверх" L["LEVEL_TOOLTIP"] = "Уровень: |cffffffff%d|r" L["LOCK_BUTTONS"] = "Заблокировать кнопки" -L["LOGIN_MSG"] = "Добро пожаловать в %s версии |cff1a9fc0%s|r. Если Вы нуждаетесь в технической поддержке или у Вас есть предложения, как улучшить этот аддон, то Вы можете присоединиться к нашему %s |cff5865F2Discord|r серверу! Ссылки можно найти в |cff1a9fc0/lsui|r > %s." -L["LOGIN_MSG_TOGGLE"] = "Сообщение при входе" L["LOOT_ALL"] = "Забрать всю добычу" L["M_SS_THRESHOLD"] = "Порог М:СС" L["M_SS_THRESHOLD_DESC"] = "Если оставшееся время восстановления ниже данного значения (в секундах), то оно будет показано в формате М:СС. Установите на 0, чтобы отключить." diff --git a/ls_UI_Options/init.lua b/ls_UI_Options/init.lua index 2ab3db1d..6f35a113 100644 --- a/ls_UI_Options/init.lua +++ b/ls_UI_Options/init.lua @@ -52,18 +52,6 @@ function CONFIG:Open() ReloadUI() end, }, - login_message = { - order = 5, - type = "toggle", - name = L["LOGIN_MSG_TOGGLE"], - width = 1.25, - get = function() - return C.db.global.login_message - end, - set = function(_, value) - C.db.global.login_message = value - end, - }, profiles = CONFIG:CreateProfilesPanel(100), about = CONFIG:CreateAboutPanel(101), },