Quantcast

Changing options strings to adress the changes in function

Darthpred [10-15-12 - 20:08]
Changing options strings to adress the changes in function
Filename
ElvUI_SLE/locales/english.lua
ElvUI_SLE/locales/russian.lua
ElvUI_SLE/modules/options.lua
diff --git a/ElvUI_SLE/locales/english.lua b/ElvUI_SLE/locales/english.lua
index 8a6a54e..f513dfe 100644
--- a/ElvUI_SLE/locales/english.lua
+++ b/ElvUI_SLE/locales/english.lua
@@ -18,8 +18,8 @@ L["Show/hide error messages in combat."] = true
 L["Pet autocast corners"] = true
 L["Show/hide triangles in corners of autocastable buttons."] = true
 L["Loot History"] = true
-L["Auto show/hide"] = true
-L["Automaticaly show Blizzard loot histroy frame when in instance and hide it when out"] = true
+L["Auto hide"] = true
+L["Automaticaly hide Blizzard loot histroy frame when leaving the instance."] = true
 L["Sets alpha of loot histroy frame."] = true
 L["SLE_LOGIN_MSG"] = [=[You are using |cff1784d1Shadow & Light Edit|r for ElvUI.
 If you wish to use the original ElvUI addon, disable this edit's plugin in your Addons manager.
diff --git a/ElvUI_SLE/locales/russian.lua b/ElvUI_SLE/locales/russian.lua
index c977d3b..982408b 100644
--- a/ElvUI_SLE/locales/russian.lua
+++ b/ElvUI_SLE/locales/russian.lua
@@ -18,8 +18,8 @@ L["Show/hide error messages in combat."] = "Показать/скрыть соо
 L["Pet autocast corners"] = "Автокаст питомца"
 L["Show/hide triangles in corners of autocastable buttons."] = "Показать/скрыть треугольники в углах кнопок с автоматически применяемыми заклинаниями питомца."
 L["Loot History"] = "История добычи"
-L["Auto show/hide"] = "Автопоказ"
-L["Automaticaly show Blizzard loot histroy frame when in instance and hide it when out"] = "Автоматически показывать окно истории добычи Blizzard в подземельях и скрывать вне их"
+L["Auto hide"] = "Автоматически скрывать"
+L["Automaticaly hide Blizzard loot histroy frame when leaving the instance."] = "Автоматически скрывать окно истории добычи Blizzard при выходе из подземелья."
 L["Sets alpha of loot histroy frame."] = "Устанавливает прозрачность окна истории добычи"
 L["SLE_LOGIN_MSG"] = [=[Вы используете редакцию ElvUI под названием |cff1784d1"Тень и Свет"|r.
 Если вы хотите использовать оригинальный ElvUI, просто отключите плагин этой редакции в вашем менеджере аддонов.
diff --git a/ElvUI_SLE/modules/options.lua b/ElvUI_SLE/modules/options.lua
index 7e52d09..a3e3a1b 100644
--- a/ElvUI_SLE/modules/options.lua
+++ b/ElvUI_SLE/modules/options.lua
@@ -46,8 +46,8 @@ E.Options.args.sle = {
 				window = {
 					order = 1,
 					type = "toggle",
-					name = L["Auto show/hide"],
-					desc = L["Automaticaly show Blizzard loot histroy frame when in instance and hide it when out"],
+					name = L["Auto hide"],
+					desc = L["Automaticaly hide Blizzard loot histroy frame when leaving the instance."],
 					get = function(info) return E.db.sle.lootwin end,
 					set = function(info, value) E.db.sle.lootwin = value; SLE:LootShow() end
 				},