vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 if not ace:LoadTranslation('SkillsPlusFu') then
2  
3 -- binding labels
4 BINDING_HEADER_SKILLSPLUSHEADER = 'SkillsPlusFu'
5 BINDING_NAME_SKILLSPLUSNAME = 'Use the selected skill.'
6  
7 SkillsPlusFuLocals = {
8 -- general labels
9 NAME = 'FuBar - SkillsPlusFu',
10 DESCRIPTION = 'Show and access skills, also shows cooldowns.',
11 COMMANDS = {'/spf', '/skillsplusfu'},
12 CMD_OPTIONS = {},
13  
14 TOOLTIP_HINT = 'Click to access the named skill.\nRight-click to select a skill.',
15  
16 FUBAR_LABEL = 'Skills',
17  
18 -- menu labels
19 MENU_SHOW_BOOLEAN_SKILLS = 'Show boolean skills',
20 MENU_SHOW_OTHER_TOON_SKILLS = 'Show other player skills',
21 MENU_SHOW_SKILL_LABEL = 'Show skill label',
22 MENU_SHOW_TOON_NAMES = 'Show player names',
23 MENU_SHOW_NOTIFICATION = 'Show cooldown notification',
24 MENU_CLEAR_COOLDOWN_DATA = 'Clear current cooldown data',
25  
26 -- skill labels
27 SKILL_ALCHEMY = 'Alchemy',
28 SKILL_BLACKSMITHING = 'Blacksmithing',
29 SKILL_COOKING = 'Cooking',
30 SKILL_DISENCHANTING = 'Disenchant',
31 SKILL_ENCHANTING = 'Enchanting',
32 SKILL_ENGINEERING = 'Engineering',
33 SKILL_FIRSTAID = 'First Aid',
34 SKILL_FISHING = 'Fishing',
35 SKILL_MINING = 'Mining',
36 SKILL_LEATHERWORKING = 'Leatherworking',
37 SKILL_POISONS = 'Poisons',
38 SKILL_SMELTING = 'Smelting',
39 SKILL_TAILORING = 'Tailoring',
40  
41 -- cooldown labels
42 COOLDOWN_COLOR_READY = '|cff00FF00',
43 COOLDOWN_COLOR_NOTREADY = '|cffFF0000',
44 COOLDOWN_COLOR_ALMOSTREADY = '|cffF0F000',
45  
46 COOLDOWN_TIMER_FREQUENCY = 30,
47 COOLDOWN_NOTIFYTIME = 60,
48 COOLDOWN_FORMAT = ' (%d/%d)',
49 COOLDOWN_IS_READY = '|cff00FF00Cooldown:|r %s for %s: %s is ready.',
50 COOLDOWN_WILL_BE_READY = '|cff00FF00Cooldown:|r %s for %s: %s will be ready in %ss.',
51  
52 COOLDOWN_CATEGORY = 'Cooldown',
53 COOLDOWN_READY = 'Ready!',
54  
55 COOLDOWN_ELUNES_LANTERN = 'Elune\'s Lantern',
56 COOLDOWN_ELUNE_STONE = 'Elune Stone',
57 COOLDOWN_MOONCLOTH = 'Mooncloth',
58 COOLDOWN_REFINED_SALT = 'Refined Deeprock Salt',
59 COOLDOWN_SALT_SHAKER = 'Salt Shaker',
60 COOLDOWN_SNOWMASTER = 'SnowMaster 9000',
61 COOLDOWN_SNOWBALL = 'Snowball',
62 COOLDOWN_TRANSMUTE_MATCH = 'Transmute',
63 COOLDOWN_TRANSMUTES = 'Transmutes',
64 COOLDOWN_CREATE_ITEM = 'You create',
65 }
66  
67 end
68