This repository was archived by the owner on Apr 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEventTracker_en.lua
41 lines (38 loc) · 2.03 KB
/
EventTracker_en.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
--[[ =================================================================
Description:
All strings (English) used by EventTracker.
================================================================= --]]
-- Frame Strings
ET_PURGE_BUTTON = "Purge";
ET_CLOSE_BUTTON = "Close";
ET_STATE_ON = "On";
ET_STATE_OFF = "Off";
ET_TRACKING = "Tracking is "..C_YELLOW.."%s"..C_CLOSE;
ET_STATE_ONOFF = ET_STATE_ON.." / "..ET_STATE_OFF;
ET_EVENT_COUNT = "Events/Functions: "..C_BLUE.."%d"..C_CLOSE;
ET_EVENTS_TRACKED = "Events/Functions tracked: "..C_BLUE.."%d"..C_CLOSE;
ET_MEMORY = "Memory: "..C_BLUE.."%.2f KB"..C_CLOSE;
ET_ARGUMENTS_TEXT = "Arguments";
ET_REGISTERED_TEXT = "Registered by";
ET_CALLSTACK_TEXT = "Call Stack";
ET_UNNAMED_FRAME = "< "..C_RED.."Unnamed frame"..C_CLOSE.." >";
ET_REMOVED = "Event "..C_YELLOW.."%s"..C_CLOSE.." has been removed"
ET_SHOW_DETAILS = "Show details >>";
ET_HIDE_DETAILS = "Hide details <<";
ET_TIME_CURRENT = "Time (current) : "..C_BLUE.."%.2f ms"..C_CLOSE;
ET_TIME_TOTAL = "Time (total) : "..C_BLUE.."%.2f ms"..C_CLOSE;
-- Binding strings
BINDING_HEADER_ET = "EventTracker Bindings";
BINDING_NAME_TOGGLEET = "Toggle EventTracker";
-- Help information
ET_HELP = { "EventTracker commands:",
" /et : open/close EventTracker dialog",
" /et { help | ? }: Show this list of commands",
" /et add <event>: Add event to be tracked",
" /et remove <event>: Remove event to be tracked",
" /et registerall: Register all events to be tracked (# of events not known)",
" /et unregisterall: Unregister all events to be tracked (except for VARIABLES_LOADED)",
" /et resetpos: Reset position of the main EventTracker frame",
" /et filter: Adds a filter to showed events (substring search, no regexp) - Requires registerall to be active",
" /et removefilter: Remove filter",
};