lenonk / ElvUI_SpellBinder

Note: I no longer have a WoW acount, and therefore can no longer maintain this addon. If you would like to become the maintainer, be my guest! This is a WoW addon that provides Clique like functionality specifically for ElvUI users. It's still currently Alpha, but most of the functionality is there, and it seems solid. Support for hovercasting to come soon.
Other
0 stars 2 forks source link

Druid spells list for Russian language client #5

Open GodHon opened 5 years ago

GodHon commented 5 years ago

Hi.

Rummaging through the files I was able to translate and adapt the some skills of the druid for this addon. Hope this helps you. File World of Warcraft\Interface\AddOns\ElvUI_SpellBinder\modules\ ExtraTables.lua

Code:

addon.HealingSpells = { ...........other code........... ["DRUID"] = { ["Целительное прикосновение"] = L["Целительное прикосновение"], ["Жизнецвет"] = L["Жизнецвет"], ["Восстановление"] = L["Восстановление"], ["Омоложение"] = L["Омоложение"], ["Буйный рост"] = L["Буйный рост"], ["Быстрое восстановление"] = L["Быстрое восстановление"], ["Спокойствие"] = L["Спокойствие"], ...........other code...........

and

addon.OtherSpells = { ...........other code........... ["DRUID"] = { ["Щит Кенария"] = L["Щит Кенария"], ["Оживление"] = L["Оживление"], ["Возрождение"] = L["Возрождение"], ["Железная кора"] = L["Железная кора"], ["REVITALIZE"] = L["Revitalize"], ["Снятие порчи"] = L["Снятие порчи"], ["Природный целитель"] = L["Природный целитель"], }, ...........other code...........

lenonk commented 5 years ago

Thank you, I'll try to implement this soon. Although, I think what I actually need is just english to russian translation. The keys for the table should remain in english I think, as they are irrelevant to the user. The russian translation should actually go in the locales/russian_config.lua, similar to the following.

-- *_DESC locales L["AURAS_DESC"] = "Настройка иконок эффектов, находящихся у миникарты." L["BAGS_DESC"] = "Настройки сумок ElvUI" L["CHAT_DESC"] = "Настройте отображение чата ElvUI."

except it would be: L["HEALING_TOUCH"] = "Целительное прикосновение"

I assume the above is Healing Touch from the order, but even if it's not, I think you get the point.

Feel free to add any translation you'd like to that file, and give me a pull request here on github. Or, just send me the data and I'll add it. EIther way is fine with me.

Thank you SO much for the effort!