Locale change due to deletion of texture
Darthpred [02-21-13 - 07:56]
Locale change due to deletion of texture
diff --git a/ElvUI_SLE/locales/english.lua b/ElvUI_SLE/locales/english.lua
index 0f66c5c..05d93ce 100644
--- a/ElvUI_SLE/locales/english.lua
+++ b/ElvUI_SLE/locales/english.lua
@@ -134,7 +134,7 @@ L["Automatically plant seeds to the nearest tilled soil if one is not already se
L["Drop Seeds"] = true
L["Allow seeds to be destroyed from seed bars."] = true
L["Quest Glow"] = true
-L["Show glowing border and exclamation mark on seeds needed for any quest in your log."] = true
+L["Show glowing border on seeds needed for any quest in your log."] = true
L["Dock Buttons To"] = true
L["Change the position from where seed bars will grow."] = true
L["Bottom"] = true
diff --git a/ElvUI_SLE/locales/russian.lua b/ElvUI_SLE/locales/russian.lua
index 2fe71bf..4bd0254 100644
--- a/ElvUI_SLE/locales/russian.lua
+++ b/ElvUI_SLE/locales/russian.lua
@@ -134,7 +134,7 @@ L["Automatically plant seeds to the nearest tilled soil if one is not already se
L["Drop Seeds"] = "Удалять семена"
L["Allow seeds to be destroyed from seed bars."] = "Позволить удаление семян при помощи панелей."
L["Quest Glow"] = "Свечение заданий"
-L["Show glowing border and exclamation mark on seeds needed for any quest in your log."] = "Показывать восклицательный знак и светящуюся границу на семенах, необходимых на какое-либо из взятых заданий из Вашего журнала."
+L["Show glowing border on seeds needed for any quest in your log."] = "Показывать светящуюся границу на семенах, необходимых на какое-либо из взятых заданий из Вашего журнала."
L["Dock Buttons To"] = "Прикрепить кнопки к"
L["Change the position from where seed bars will grow."] = "Изменить сторону, с которой будут расти панели семян."
L["Bottom"] = "Низ"
diff --git a/ElvUI_SLE/modules/farm/options.lua b/ElvUI_SLE/modules/farm/options.lua
index f7b375d..15b0103 100644
--- a/ElvUI_SLE/modules/farm/options.lua
+++ b/ElvUI_SLE/modules/farm/options.lua
@@ -63,7 +63,7 @@ E.Options.args.sle.args.farm = {
type = "toggle",
order = 3,
name = L["Quest Glow"],
- desc = L["Show glowing border and exclamation mark on seeds needed for any quest in your log."],
+ desc = L["Show glowing border on seeds needed for any quest in your log."],
get = function(info) return E.db.sle.farm.quest end,
set = function(info, value) E.db.sle.farm.quest = value; if SeedAnchor then F:UpdateLayout() end end
},