If you want to change lines then change them everywhere damn you
Darthpred [02-22-13 - 18:25]
If you want to change lines then change them everywhere damn you
diff --git a/ElvUI_SLE/locales/english.lua b/ElvUI_SLE/locales/english.lua
index 41e4206..c361f2a 100644
--- a/ElvUI_SLE/locales/english.lua
+++ b/ElvUI_SLE/locales/english.lua
@@ -126,12 +126,13 @@ L["Changes the way text is shown on rep bar."] = true
L['Equipment Manager'] = true
L["EM_DESC"] = "This module provides different options to automatically change your equipment sets on spec change or entering certain locations."
L['Spam Throttling'] = true
+L["Removes the spam from chat stating what talents were learned or unlearned during spec change."] = true
L["Here you can choose what equipment sets to use in different situations."] = true
L["Equip this set when switching to primary talents."] = true
L["Equip this set when switching to secondary talents."] =true
L["Equip this set after entering dungeons or raids."] = true
L["Equip this set after entering battlegrounds or arens."] = true
-L["Removes the spam from chat stating what talents were learned or unlearned during spec change."] = true
+
--Farm--
L['Farm'] = true
diff --git a/ElvUI_SLE/locales/russian.lua b/ElvUI_SLE/locales/russian.lua
index d16d6e6..15ac887 100644
--- a/ElvUI_SLE/locales/russian.lua
+++ b/ElvUI_SLE/locales/russian.lua
@@ -123,9 +123,10 @@ L["Full value on Rep Bar"] = "Полное значение репутации"
L["Changes the way text is shown on rep bar."] = "Изменяет отображение значений репутации на полосе."
--Equip Manager--
-L['Equipment manager'] = "Менеджер экипировки"
+L['Equipment Manager'] = "Менеджер экипировки"
L["EM_DESC"] = "Этот модуль предоставляет различные опции для автоматической смены комплектов экипировки при переключении набора талантов или попадании в определенную локацию."
L['Spam Throttling'] = "Подавление спама"
+L["Removes the spam from chat stating what talents were learned or unlearned during spec change."] = "Удаляет спам об изученных/забытых заклинаниях при смене талантов."
L["Here you can choose what equipment sets to use in different situations."] = "Здесь Вы можете выбрать какие комплекты экипировки использовать в различных случаях."
L["Equip this set when switching to primary talents."] = "Надеть этот набор при переключении на основной набор талантов."
L["Equip this set when switching to secondary talents."] = "Надеть этот набор при переключении на дополнительный набор талантов."
diff --git a/ElvUI_SLE/modules/equipmanager/options.lua b/ElvUI_SLE/modules/equipmanager/options.lua
index 2f08f87..ac9a33d 100644
--- a/ElvUI_SLE/modules/equipmanager/options.lua
+++ b/ElvUI_SLE/modules/equipmanager/options.lua
@@ -6,7 +6,7 @@ local function configTable()
E.Options.args.sle.args.equipmanager = {
type = 'group',
order = 2,
- name = L['Equipment manager'],
+ name = L['Equipment Manager'],
args = {
intro = {
order = 1,
@@ -24,6 +24,7 @@ E.Options.args.sle.args.equipmanager = {
type = "toggle",
order = 3,
name = L['Spam Throttling'],
+ desc = L["Removes the spam from chat stating what talents were learned or unlearned during spec change."],
disabled = function() return not E.private.sle.equip.enable end,
get = function(info) return E.private.sle.equip.spam end,
set = function(info, value) E.private.sle.equip.spam = value; EM:SpamThrottle() end