Changed a config string
Scott Sibley [12-27-10 - 06:38]
diff --git a/Localization/enUS.lua b/Localization/enUS.lua
index 23143b6..ed69efd 100644
--- a/Localization/enUS.lua
+++ b/Localization/enUS.lua
@@ -3,7 +3,7 @@ local L = AceLocale:NewLocale("StarTip", "enUS", true, true)
if not L then return end
L["Welcome to "] = true
-L[" Type /startip to open config. Alternatively you could press escape and choose the addons menu. Or you can choose to show a minimap icon."] = true
+L[" Type /startip to open config. Alternatively you could press escape and choose the addons menu. Or you can choose to show a minimap icon. You can turn off this message under Settings."] = true
L["None"] = true
L["Ctrl"] = true
L["Alt"] = true
@@ -28,7 +28,7 @@ L["Other Frame"] = true
L["Whether to show other frame tooltips"] = true
L["Error Level"] = true
L["StarTip's error level"] = true
-L["StarTip can throttle your mouseovers, so it doesn't show a tooltip if you mouse over units really fast. There's a few bugs here, which is why it's not enabled by default."] = true
+L["StarTip can throttle your mouseovers, so it doesn't show a tooltip if you mouse over units really fast. There are a few bugs here, which is why it's not enabled by default."] = true
L["Throttle Threshold"] = true
L["Intersect Checks Rate"] = true
L["The rate at which intersecting frames will be checked"] = true
diff --git a/StarTip.lua b/StarTip.lua
index 7c070ab..661129b 100644
--- a/StarTip.lua
+++ b/StarTip.lua
@@ -259,7 +259,7 @@ local options = {
},
throttleVal = {
name = L["Throttle Threshold"],
- desc = L["StarTip can throttle your mouseovers, so it doesn't show a tooltip if you mouse over units really fast. There's a few bugs here, which is why it's not enabled by default."],
+ desc = L["StarTip can throttle your mouseovers, so it doesn't show a tooltip if you mouse over units really fast. There are a few bugs, which is why it's not enabled by default."],
type = "input",
pattern = "%d",
get = function() return tostring(StarTip.db.profile.throttleVal) end,
@@ -514,7 +514,7 @@ function StarTip:OnEnable()
local plugin = {}
LibStub("LibScriptableDisplayPluginColor-1.0"):New(plugin)
if self.db.profile.message then
- ChatFrame1:AddMessage(plugin.Colorize(L["Welcome to "] .. StarTip.name, 0, 1, 1) .. plugin.Colorize(L[" Type /startip to open config. Alternatively you could press escape and choose the addons menu. Or you can choose to show a minimap icon."], 1, 1, 0))
+ ChatFrame1:AddMessage(plugin.Colorize(L["Welcome to "] .. StarTip.name, 0, 1, 1) .. plugin.Colorize(L[" Type /startip to open config. Alternatively you could press escape and choose the addons menu. Or you can choose to show a minimap icon. You can turn off this message under Settings."], 1, 1, 0))
end
end