From a6906f6f6340bfcd53c6bfb8909115cfe1d05bb4 Mon Sep 17 00:00:00 2001 From: Darthpred Date: Wed, 26 Feb 2014 00:23:04 +0400 Subject: [PATCH] locales again --- ElvUI_SLE/locales/english.lua | 11 +++++++++++ ElvUI_SLE/locales/russian.lua | 10 ++++++++++ ElvUI_SLE/modules/datatexts/currency.lua | 20 ++++++++++---------- 3 files changed, 31 insertions(+), 10 deletions(-) diff --git a/ElvUI_SLE/locales/english.lua b/ElvUI_SLE/locales/english.lua index 9d58a30..d3b7837 100755 --- a/ElvUI_SLE/locales/english.lua +++ b/ElvUI_SLE/locales/english.lua @@ -182,6 +182,17 @@ L["D"] = true L["Previous Level:"] = true L['Current:'] = true L['Weekly:'] = true +L['ElvUI Improved Currency Options'] = true +L['Show Archaeology Fragments'] = true +L['Show Jewelcrafting Tokens'] = true +L['Show Player vs Player Currency'] = true +L['Show Dungeon and Raid Currency'] = true +L['Show Cooking Awards'] = true +L['Show Miscellaneous Currency'] = true +L['Show Zero Currency'] = true +L['Show Icons'] = true +L['Show Faction Totals'] = true + --Exp/Rep Bar-- L["Xp-Rep Text"] = true diff --git a/ElvUI_SLE/locales/russian.lua b/ElvUI_SLE/locales/russian.lua index 89ad2d5..2bf5bc2 100755 --- a/ElvUI_SLE/locales/russian.lua +++ b/ElvUI_SLE/locales/russian.lua @@ -181,6 +181,16 @@ L["D"] = "Дн" L["Previous Level:"] = "Предыдущий уровень:" L['Current:'] = "Текущее:" L['Weekly:'] = "За неделю:" +L['ElvUI Improved Currency Options'] = "Опции расширенного инфо-текста валюты" +L['Show Archaeology Fragments'] = "Показывать фрагменты археологии" +L['Show Jewelcrafting Tokens'] = "Показывать ювелирные значки" +L['Show Player vs Player Currency'] = "Показывать PvP валюту" +L['Show Dungeon and Raid Currency'] = "Показывать валюту подземелий" +L['Show Cooking Awards'] = "Показывать кулиназные значки" +L['Show Miscellaneous Currency'] = "Показывать прочую валюту" +L['Show Zero Currency'] = "Показывать отсутствующую валюту" +L['Show Icons'] = "Показывать иконки" +L['Show Faction Totals'] = "Показывать сумму по фракциям" --Exp/Rep Bar-- L["Xp-Rep Text"] = "Текст Опыта/Репутации" diff --git a/ElvUI_SLE/modules/datatexts/currency.lua b/ElvUI_SLE/modules/datatexts/currency.lua index 7bcb6e0..31bf50d 100644 --- a/ElvUI_SLE/modules/datatexts/currency.lua +++ b/ElvUI_SLE/modules/datatexts/currency.lua @@ -52,16 +52,16 @@ local function GetOption(name) end local menu = { - { text = 'ElvUI Improved Currency Options', isTitle = true , notCheckable = true }, - { text = 'Show Archaeology Fragments', checked = function() return GetOption('Archaeology') end, func = function() ToggleOption('Archaeology') end }, - { text = 'Show Jewelcrafting Tokens', checked = function() return GetOption('Jewelcrafting') end, func = function() ToggleOption('Jewelcrafting') end }, - { text = 'Show Player vs Player Currency', checked = function() return GetOption('PvP') end, func = function() ToggleOption('PvP') end }, - { text = 'Show Dungeon and Raid Currency', checked = function() return GetOption('Raid') end, func = function() ToggleOption('Raid') end }, - { text = 'Show Cooking Awards', checked = function() return GetOption('Cooking') end, func = function() ToggleOption('Cooking') end }, - { text = 'Show Miscellaneous Currency', checked = function() return GetOption('Miscellaneous') end, func = function() ToggleOption('Miscellaneous') end }, - { text = 'Show Zero Currency', checked = function() return GetOption('Zero') end, func = function() ToggleOption('Zero') end }, - { text = 'Show Icons', checked = function() return GetOption('Icons') end, func = function() ToggleOption('Icons') end }, - { text = 'Show Faction Totals', checked = function() return GetOption('Faction') end, func = function() ToggleOption('Faction') end }, + { text = L['ElvUI Improved Currency Options'], isTitle = true , notCheckable = true }, + { text = L['Show Archaeology Fragments'], checked = function() return GetOption('Archaeology') end, func = function() ToggleOption('Archaeology') end }, + { text = L['Show Jewelcrafting Tokens'], checked = function() return GetOption('Jewelcrafting') end, func = function() ToggleOption('Jewelcrafting') end }, + { text = L['Show Player vs Player Currency'], checked = function() return GetOption('PvP') end, func = function() ToggleOption('PvP') end }, + { text = L['Show Dungeon and Raid Currency'], checked = function() return GetOption('Raid') end, func = function() ToggleOption('Raid') end }, + { text = L['Show Cooking Awards'], checked = function() return GetOption('Cooking') end, func = function() ToggleOption('Cooking') end }, + { text = L['Show Miscellaneous Currency'], checked = function() return GetOption('Miscellaneous') end, func = function() ToggleOption('Miscellaneous') end }, + { text = L['Show Zero Currency'], checked = function() return GetOption('Zero') end, func = function() ToggleOption('Zero') end }, + { text = L['Show Icons'], checked = function() return GetOption('Icons') end, func = function() ToggleOption('Icons') end }, + { text = L['Show Faction Totals'], checked = function() return GetOption('Faction') end, func = function() ToggleOption('Faction') end }, } local HiddenCurrency = {} -- 1.7.9.5