vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1  
2  
3 -- FiveSec localization
4 --------------------------------------------------------------------------------
5  
6 -- bar colors to customize rather than localize
7 TNE_FiveSec_BarColors = {}
8 TNE_FiveSec_BarColors["enabled"] = { r = 0.00, g = 1.0, b = 0.10 } -- green (mana regeneration enabled)
9 TNE_FiveSec_BarColors["disabled"] = { r = 0.00, g = 0.70, b = 1.00 } -- light blue (mana regeneration disabled)
10  
11 TNE_FiveSec_RegenerationBuffs = {
12 "Aura of the Blue Dragon", "Innervate", "Spirit Tap",
13 }
14  
15 TNE_FiveSec_NEXT_TICK_IN = "Next tick in: "
16 TNE_FiveSec_DELAYED_BY_CHANNELING = "Delayed by channeling"
17 TNE_FiveSec_REGENERATION_IN = "%.1f sec" -- %d is seconds remaining
18 TNE_FiveSec_REGENERATION_IN_INT = "%d sec"
19  
20 TNE_FiveSec_HELP_MOVING = "Movable frame ($vleft mouse button$ev)"
21 TNE_FiveSec_HELP_STANDARD_MODE = "Standard mode"
22 TNE_FiveSec_HELP_REVERSE_MODE = "Reverse mode"
23 TNE_FiveSec_HELP_RESET = "The bar position has been restored."
24 TNE_FiveSec_HELP_HIDDEN = "FiveSec hidden mode"
25 TNE_FiveSec_HELP_FRACTION = "Split seconds in timer"
26  
27 TNE_FiveSec_CMD_UNKNOWN = "Unknown command. Use %s for help." -- %s is the help command
28 TNE_FiveSec_CMD_ADDON_STATUS = "Addon is %s. Use %s for help." -- first %s is enabled or disabled, second is the help command
29 TNE_FiveSec_CMD_HELP = "help"
30 TNE_FiveSec_CMD_DISABLED = "disabled"
31 TNE_FiveSec_CMD_ENABLED = "enabled"
32 TNE_FiveSec_CMD_ON = "on"
33 TNE_FiveSec_CMD_OFF = "off"
34 TNE_FiveSec_CMD_MOVE = "move" -- to move the bar
35 TNE_FiveSec_CMD_ABOUT = "about" -- author and addon information
36 TNE_FiveSec_CMD_RESET = "reset" -- restore to defaults
37 TNE_FiveSec_CMD_HIDDEN = "hidden" -- invisible mode
38 TNE_FiveSec_CMD_FRACTION = "fraction" -- display timer with one decimal
39 TNE_FiveSec_CMD_MODE = "mode" -- as in 'state'
40 TNE_FiveSec_CMD_MODE_STANDARD = "standard" -- bar is increasing
41 TNE_FiveSec_CMD_MODE_REVERSE = "reverse" -- bar is decreasing
42  
43  
44 if (GetLocale() == "deDE") then
45  
46 TNE_FiveSec_RegenerationBuffs = {
47 "Aura des blauen Drachen", "Anregen", "Willensentzug",
48 }
49  
50 end
51  
52 if (GetLocale() == "frFR") then
53  
54 TNE_FiveSec_RegenerationBuffs = {
55 "Aura du dragon bleu", "Innervation", "Connexion spirituelle",
56 }
57  
58 end
59  
60 if (GetLocale() == "koKR") then
61  
62 end