Plugin not working at all - French localization
Layz666 opened this issue ยท 2 comments
Same problem for the german client. I think something changed in the localization module in betterbags. the localized names for the section do not get set anymore
L:S("Hearthstones", "Piedras de hogar")
throws an error.
workaround for me was to modify _retail_\Interface\AddOns\BetterBags\core\localization.lua file and add the S function before L:enable()
function L:S(key,localkey)
if not self.data[key] then self.data[key] = {} end
self.data[key][L.locale] = localkey
end