Quantcast

Locales for mount search filter

Darthpred [09-17-12 - 09:10]
Locales for mount search filter
Filename
ElvUI_SLE/locales/english.lua
ElvUI_SLE/locales/russian.lua
ElvUI_SLE/modules/skins/blizzard/searchmounts.lua
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 = ...