vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 if (GetLocale() == "enUS") then
2  
3 -- ###############
4 -- ## MENU TEXT ##
5 -- ###############
6  
7 TITANBT_TOOLTIP = "BattleTracker";
8  
9 TITANBT_MENU_DISP_AV = "Show Alterac Valley Tracker";
10 TITANBT_MENU_DISP_AB = "Show Arathi Basin Tracker";
11 TITANBT_MENU_DISP_WSG = "Show Warsong Gulch Tracker";
12  
13 TITANBT_MENU_OPTS_DEBUG = "Debug Mode";
14  
15 TITANBT_MENU_FUNCS_RESET = "Reset Statistics";
16  
17  
18 -- ###################
19 -- ## BUTTON LABELS ##
20 -- ###################
21  
22 -- Battleground
23 TITANBT_S_AB = " AB:";
24 TITANBT_S_AV = " AV:";
25 TITANBT_S_WSG = " WSG:";
26 TITANBT_S_NULL = "BattleTracker";
27 TITANBT_S_SHORT = "BT ";
28  
29  
30 -- ####################
31 -- ## TOOLTIP LABELS ##
32 -- ####################
33  
34 TITANBT_TT_HeaderLeft = "Battlefield:";
35 TITANBT_TT_HeaderRight = "Total/" .. TitanUtils_GetGreenText("Wins") .. "/" .. TitanUtils_GetRedText("Losses");
36 TITANBT_TT_AB = "Arathi Basin:";
37 TITANBT_TT_AV = "Alterac Valley:";
38 TITANBT_TT_WSG = "Warsong Gulch:";
39  
40  
41  
42 -- ####################
43 -- ## SYSTEM NOTICES ##
44 -- ####################
45  
46 -- Notices sent by the system during battlegrounds play.
47  
48 -- !! WARNING !!
49 -- These must appear EXACTLY as they appear in the game when these events occur.
50  
51 -- Please make certain the text appears EXACTLY as printed. Do not insert capitals where they are not necessary,
52 -- nor not include capitals when they are listed.
53  
54 TITANBT_NOTICE_GAMEOVER = " wins!";
55 TITANBT_NOTICE_GAMEOVER2 = " Wins!";
56  
57 -- !! END WARNING !!
58  
59  
60 -- ######################
61 -- ## TITANBT MESSAGES ##
62 -- ######################
63  
64 TITANBT_GAMELOST = "[%s] Game over, loss tracked";
65 TITANBT_GAMEWON = "[%s] Game over, win tracked.";
66  
67 TITANBT_SEND_DATA = "[BattleTracker] AV: %s, AB: %s, WSG: %s";
68  
69 -- ##################
70 -- ## NOMENCLATURE ##
71 -- ##################
72  
73 -- Short names for the battlegrounds.
74 TITANBT_BG_AV_SHORT = "AV";
75 TITANBT_BG_WSG_SHORT = "WSG";
76 TITANBT_BG_AB_SHORT = "AB";
77  
78 -- Faction names. EXACTLY as returned by UnitFactionGroup("player") or UnitFactionGroup("target").
79 TITANBT_HORDE = "Horde";
80 TITANBT_ALLIANCE = "Alliance";
81  
82 -- !! WARNING !!
83 -- These must apear exactly as sent by the system.
84 -- This can be tested by making certain the lines between !! DEBUG START and !! DEBUG END
85 -- are not commented (do not have a preceeding --) and typing '/console reloadui' into the chat window.
86  
87 -- 'BG = ' will display the name of the battleground. If the slot isn't taken up by a battleground,
88 -- then it will display the zone you are currently in.
89  
90 -- 'STATUS = ' will show the status of the current battleground.
91  
92 -- Please make certain the text appears EXACTLY as printed. Do not insert capitals where they are not necessary,
93 -- nor not include capitals when they are listed.
94  
95 -- Battleground Names
96 TITANBT_BG_AV = "Alterac Valley";
97 TITANBT_BG_WSG = "Warsong Gulch";
98 TITANBT_BG_AB = "Arathi Basin";
99  
100 -- !! END WARNING !!
101 end