add missing locales

This commit is contained in:
cwdg
2008-06-19 11:08:10 +00:00
parent 8d8d57aab4
commit 9c86d78d2e
11 changed files with 45 additions and 17 deletions
+2 -2
View File
@@ -29,7 +29,7 @@ end
function StanceBarMod:OnEnable()
if not self.bar then
self.bar = setmetatable(Bartender4.ButtonBar:Create("Stance", self.db.profile), {__index = StanceBar})
self.bar = setmetatable(Bartender4.ButtonBar:Create(L["Stance"], self.db.profile), {__index = StanceBar})
self.bar:ClearSetPoint("CENTER")
self.bar:SetScript("OnEvent", StanceBar.OnEvent)
@@ -93,7 +93,7 @@ function StanceBarMod:SetupOptions()
childGroups = "tab",
disabled = function(info) return GetNumShapeshiftForms() == 0 end,
}
Bartender4:RegisterBarOptions("Stance", self.options)
Bartender4:RegisterBarOptions(L["Stance"], self.options)
end
self.options.args = self:IsEnabled() and self.optionobject.table or self.disabledoptions
end