From bb58ebeaa6c391b1c6385f4b7d20ff9bdf0138e1 Mon Sep 17 00:00:00 2001 From: Darthpred Date: Mon, 17 Sep 2012 13:10:35 +0400 Subject: [PATCH] Locales for mount search filter --- ElvUI_SLE/locales/english.lua | 4 ++++ ElvUI_SLE/locales/russian.lua | 4 ++++ ElvUI_SLE/modules/skins/blizzard/searchmounts.lua | 8 ++++---- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/ElvUI_SLE/locales/english.lua b/ElvUI_SLE/locales/english.lua index 174aa37..49e16fb 100644 --- a/ElvUI_SLE/locales/english.lua +++ b/ElvUI_SLE/locales/english.lua @@ -123,6 +123,10 @@ L["Show/hide Raid Utility button.\nThis option is not permanent. The button will --Skins-- L["This options require Azilroka's skin pack to work."] = true L["Sets font size on DBM bars"] = true +L["Ground"] = true +L["Flying"] = true +L["Flying & Ground"] = true +L["Swimming"] = true --UI buttons-- L["UI Buttons"] = true diff --git a/ElvUI_SLE/locales/russian.lua b/ElvUI_SLE/locales/russian.lua index 97e5664..71a2bae 100644 --- a/ElvUI_SLE/locales/russian.lua +++ b/ElvUI_SLE/locales/russian.lua @@ -123,6 +123,10 @@ L["Show/hide Raid Utility button.\nThis option is not permanent. The button will --Skins-- L["This options require Azilroka's skin pack to work."] = "Эти опции требуют наличие пака скинов от Azilroka для работы" L["Sets font size on DBM bars"] = "Устанавливает размер текста на полосах DBM" +L["Ground"] = "Наземные" +L["Flying"] = "Летающие" +L["Flying & Ground"] = "Наземные и Летающие" +L["Swimming"] = "Водные" --UI buttons-- L["UI Buttons"] = "Меню интерфейса" diff --git a/ElvUI_SLE/modules/skins/blizzard/searchmounts.lua b/ElvUI_SLE/modules/skins/blizzard/searchmounts.lua index 9b4f0a8..94b6d4a 100644 --- a/ElvUI_SLE/modules/skins/blizzard/searchmounts.lua +++ b/ElvUI_SLE/modules/skins/blizzard/searchmounts.lua @@ -153,7 +153,7 @@ frame:SetScript("OnEvent", function(self, event, addon) info.keepShownOnClick = true info.isNotRadio = true - info.text = L_MISC_MOUNTS_GROUND + info.text = L["Ground"] info.checked = filterFlags.ground info.func = function(...) local _, _, _, enabled = ... @@ -162,7 +162,7 @@ frame:SetScript("OnEvent", function(self, event, addon) end UIDropDownMenu_AddButton(info) - info.text = L_MISC_MOUNTS_FLYING + info.text = L["Flying"] info.checked = filterFlags.flying info.func = function(...) local _, _, _, enabled = ... @@ -171,7 +171,7 @@ frame:SetScript("OnEvent", function(self, event, addon) end UIDropDownMenu_AddButton(info) - info.text = L_MISC_MOUNTS_FLYINGGROUND + info.text = L["Flying & Ground"] info.checked = filterFlags.combined info.func = function(...) local _, _, _, enabled = ... @@ -180,7 +180,7 @@ frame:SetScript("OnEvent", function(self, event, addon) end UIDropDownMenu_AddButton(info) - info.text = L_MISC_MOUNTS_SWIMMING + info.text = L["Swimming"] info.checked = filterFlags.swimming info.func = function(...) local _, _, _, enabled = ... -- 1.7.9.5