vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | local _; |
2 | |||
3 | -- metadata magic |
||
4 | YATLAS_TITLE = GetAddOnMetadata("Yatlas", "Title") or "Y"; |
||
5 | YATLAS_VERSION = GetAddOnMetadata("Yatlas","Version") or "???"; |
||
6 | _,_,YATLAS_RELEASE_DATE = string.find(GetAddOnMetadata("Yatlas","X-LastChangedDate") or "", "[(](.+)[)]"); |
||
7 | |||
8 | YATLAS_WEBSITE = "http://endif.cjb.net/wowui/wiki/Yatlas" |
||
9 | YATLAS_AUTHOR = "Robin Schoonover (endx7)"; |
||
10 | YATLAS_AUTHOR_EMAIL = "robin.schoonover@gmail.com"; |
||
11 | |||
12 | -- localize from this point on as needed |
||
13 | YATLAS_HELP_TEXT = { |
||
14 | "Yatlas provides a minimap-based map of the world (reasonably high ".. |
||
15 | "detail).\n\n".. |
||
16 | "To move your view around click and drag on the map itself. You can ".. |
||
17 | "choose which map (currently only Kalimdor and the Eastern ".. |
||
18 | "Kingdoms) at the top. You can jump around by zone and zoom to ".. |
||
19 | "player as well.\n\n".. |
||
20 | "Mousing over a point of interest will bring up a tooltip.\n\n".. |
||
21 | "If you have Gatherer or MapNotes installed, it will shows points from ".. |
||
22 | "these two addons as well.\n" |
||
23 | }; |
||
24 | |||
25 | YATLAS_TAB_DATA = "Show Data"; |
||
26 | YATLAS_TAB_OPTIONS = "Options"; |
||
27 | |||
28 | YATLAS_BUTTON_TOOLTIP1 = "Yatlas"; |
||
29 | YATLAS_BUTTON_TOOLTIP2 = "- Click to open the Yatlas"; |
||
30 | YATLAS_BUTTON_TOOLTIP3 = "- Right-click and drag to move the minimap button."; |
||
31 | YATLAS_PLAYERJUMP = "Goto Player"; |
||
32 | YATLAS_OPTIONSBUTTON = "Options"; |
||
33 | |||
34 | YATLAS_OPTIONS_TITLE = "Yatlas Options"; |
||
35 | YATLAS_OPTIONS_BUTTONPOS = "Minimap Button Position"; |
||
36 | YATLAS_OPTIONS_BUTTONPOS_TIP = "%d degrees"; |
||
37 | YATLAS_OPTIONS_ENABLEBUTTON = "Enable Minimap Button"; |
||
38 | YATLAS_OPTIONS_TRACKONSHOW = "Zoom to Player on Show"; |
||
39 | YATLAS_OPTIONS_ALPHA = "Transparency"; |
||
40 | YATLAS_OPTIONS_ICONSIZE = "Icon Size"; |
||
41 | YATLAS_OPTIONS_ENABLECOORD = "Enable Cursor Coordinates"; |
||
42 | |||
43 | YATLAS_POINTS_SHOWPOINTS_TITLE = "Show Points"; |
||
44 | YATLAS_POINTS_LANDMARKS = "Landmarks"; |
||
45 | YATLAS_POINTS_GRAVEYARDS = "Graveyards"; |
||
46 | YATLAS_POINTS_MAPNOTES = "MapNotes"; |
||
47 | YATLAS_POINTS_GATHERER = "Gatherer"; |
||
48 | YATLAS_POINTS_GATHERER_TREASURE = "Treasure"; |
||
49 | YATLAS_POINTS_GATHERER_ORES = "Ores"; |
||
50 | YATLAS_POINTS_GATHERER_HERBS = "Herbs"; |
||
51 | YATLAS_POINTS_CTMAPMOD = "CTMapMod"; |
||
52 | |||
53 | YATLAS_UNKNOWN_ZONE = "Unknown"; |
||
54 | |||
55 | YATLAS_BIGDRAGMESSAGE = "Click on map and drag to move view." |
||
56 | YATLAS_ZOOMIN = "+"; |
||
57 | YATLAS_ZOOMOUT = "-"; |
||
58 | |||
59 | BINDING_NAME_YATLAS_TOGGLE = "Toggle Yatlas Frame"; |
||
60 | BINDING_NAME_YATLAS_BIG_TOGGLE = "Toggle Fullscreen Yatlas Frame"; |
||
61 | BINDING_HEADER_YATLAS = YATLAS_TITLE; |
||
62 |