vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 -- Translatable strings, English (and default) version
2  
3 BINDING_HEADER_FLIGHTMAP = "FlightMap";
4 BINDING_NAME_FLIGHTMAP = "Show flight map";
5  
6 FLIGHTMAP_NAME = "FlightMap";
7 FLIGHTMAP_DESCRIPTION = "Flight path info on the World Map";
8 FLIGHTMAP_ALLIANCE = "Alliance";
9 FLIGHTMAP_HORDE = "Horde";
10 FLIGHTMAP_CONTESTED = "Contested";
11  
12 -- Zone names
13 FLIGHTMAP_MOONGLADE = "Moonglade";
14 FLIGHTMAP_ELWYNN = "Elwynn Forest";
15 FLIGHTMAP_DUNMOROGH = "Dun Morogh";
16 FLIGHTMAP_TIRISFAL = "Tirisfal Glades";
17 FLIGHTMAP_LOCHMODAN = "Loch Modan";
18 FLIGHTMAP_SILVERPINE = "Silverpine Forest";
19 FLIGHTMAP_WESTFALL = "Westfall";
20 FLIGHTMAP_REDRIDGE = "Redridge Mountains";
21 FLIGHTMAP_DUSKWOOD = "Duskwood";
22 FLIGHTMAP_HILLSBRAD = "Hillsbrad Foothills";
23 FLIGHTMAP_WETLANDS = "Wetlands";
24 FLIGHTMAP_ALTERAC = "Alterac Mountains";
25 FLIGHTMAP_ARATHI = "Arathi Highlands";
26 FLIGHTMAP_STRANGLETHORN = "Stranglethorn Vale";
27 FLIGHTMAP_BADLANDS = "Badlands";
28 FLIGHTMAP_SORROWS = "Swamp of Sorrows";
29 FLIGHTMAP_HINTERLANDS = "The Hinterlands";
30 FLIGHTMAP_SEARINGGORGE = "Searing Gorge";
31 FLIGHTMAP_BLASTEDLANDS = "Blasted Lands";
32 FLIGHTMAP_BURNINGSTEPPE = "Burning Steppes";
33 FLIGHTMAP_WESTERNPLAGUE = "Western Plaguelands";
34 FLIGHTMAP_EASTERNPLAGUE = "Eastern Plaguelands";
35 FLIGHTMAP_DUROTAR = "Durotar";
36 FLIGHTMAP_MULGORE = "Mulgore";
37 FLIGHTMAP_DARKSHORE = "Darkshore";
38 FLIGHTMAP_BARRENS = "The Barrens";
39 FLIGHTMAP_STONETALON = "Stonetalon Mountains";
40 FLIGHTMAP_ASHENVALE = "Ashenvale";
41 FLIGHTMAP_1KNEEDLES = "Thousand Needles";
42 FLIGHTMAP_DESOLACE = "Desolace";
43 FLIGHTMAP_DUSTWALLOW = "Dustwallow Marsh";
44 FLIGHTMAP_FERALAS = "Feralas";
45 FLIGHTMAP_TANARIS = "Tanaris";
46 FLIGHTMAP_AZSHARA = "Azshara";
47 FLIGHTMAP_FELWOOD = "Felwood";
48 FLIGHTMAP_UNGOROCRATER = "Un'Goro Crater";
49 FLIGHTMAP_SILITHUS = "Silithus";
50 FLIGHTMAP_WINTERSPRING = "Winterspring";
51 FLIGHTMAP_TELDRASSIL = "Teldrassil";
52 FLIGHTMAP_DEADWINDPASS = "Deadwind Pass";
53 FLIGHTMAP_ORGRIMMAR = "Orgrimmar";
54 FLIGHTMAP_THUNDERBLUFF = "Thunder Bluff";
55 FLIGHTMAP_UNDERCITY = "Undercity";
56 FLIGHTMAP_IRONFORGE = "Ironforge";
57 FLIGHTMAP_STORMWIND = "Stormwind City";
58 FLIGHTMAP_DARNASSUS = "Darnassus";
59  
60 -- General strings
61 FLIGHTMAP_TIMING = "(timing)";
62 FLIGHTMAP_LEVELS = "Levels %d - %d";
63 FLIGHTMAP_NOFLIGHTS = "None known!";
64 FLIGHTMAP_NOT_KNOWN = "(Not known)";
65 FLIGHTMAP_NO_COST = "Free";
66 FLIGHTMAP_MONEY_GOLD = "g";
67 FLIGHTMAP_MONEY_SILVER = "s";
68 FLIGHTMAP_MONEY_COPPER = "c";
69 FLIGHTMAP_FLIGHTTIME = "Flight time: ";
70 FLIGHTMAP_QUICKEST = "Fastest route";
71 FLIGHTMAP_TOTAL_TIME = "Total time";
72 FLIGHTMAP_VIA = "Via ";
73 FLIGHTMAP_CONFIRM = "Are you sure you wish to fly to %s?%s";
74 FLIGHTMAP_CONFIRM_TIME = " This flight will take ";
75  
76 -- Command strings
77 FLIGHTMAP_RESET = "reset";
78 FLIGHTMAP_SHOWMAP = "open";
79 FLIGHTMAP_LOCKTIMES = "lock";
80 FLIGHTMAP_GETHELP = "help"; -- TODO translate
81  
82 -- Help text TODO translate
83 FLIGHTMAP_TIMER_HELP =
84 "Hold down SHIFT and drag the timer bar to reposition.";
85 FLIGHTMAP_SUBCOMMANDS = {
86 [FLIGHTMAP_RESET] = "Reset timer bar position",
87 [FLIGHTMAP_SHOWMAP] = "Open flight map window",
88 [FLIGHTMAP_GETHELP] = "Show this text",
89 };
90  
91 -- Locked/unlocked status
92 FLIGHTMAP_TIMESLOCKED = {
93 [true] = "Flight times will no longer be recorded.",
94 [false] = "Flight times will now be recorded.",
95 };
96  
97 -- Option strings
98 FLIGHTMAP_OPTIONS_CLOSE = "Close";
99 FLIGHTMAP_OPTIONS_TITLE = "FlightMap Options";
100 FLIGHTMAP_OPTIONS = {};
101 FLIGHTMAP_OPTIONS[1] = { -- Option 1: flight path lines
102 label = "Flight path lines",
103 option = "showPaths",
104 tooltip = "Draw lines on the world map for flight paths.",
105 };
106 FLIGHTMAP_OPTIONS[2] = { -- Option 2: extra POI buttons
107 label = "Flight master icons",
108 option = "showPOIs",
109 tooltip = "Show extra world map icons for flight masters.",
110 };
111 FLIGHTMAP_OPTIONS[3] = { -- Option 3: Unknown masters
112 label = "Show unknown flights",
113 option = "showAllInfo",
114 tooltip = "Show all data, even for unvisited flight masters.",
115 };
116 FLIGHTMAP_OPTIONS[4] = { -- Option 4: Auto-Dismount
117 label = "Auto dismount",
118 option = "autoDismount",
119 tooltip = "Automatically dismount when speaking to a flight master",
120 };
121 FLIGHTMAP_OPTIONS[5] = { -- Option 5: flight timers
122 label = "In-flight timers",
123 option = "useTimer",
124 tooltip = "Enable/disable the flight duration meter.",
125 };
126  
127 FLIGHTMAP_OPTIONS[6] = { -- Option 6: Show flight destinations
128 label = "Show destinations",
129 option = "showDestinations",
130 tooltip = "Show flight destinations on tooltips",
131 children = {7, 8, 9},
132 };
133 FLIGHTMAP_OPTIONS[7] = { -- Option 7: Show multi-hop destinations
134 label = "Including multi-hop",
135 option = "showMultiHop",
136 tooltip = "Show multi-hop destinations on tooltips",
137 };
138 FLIGHTMAP_OPTIONS[8] = { -- Option 8: Show flight times
139 label = "With flight times",
140 option = "showTimes",
141 tooltip = "Show flight times on tooltips.",
142 };
143 FLIGHTMAP_OPTIONS[9] = { -- Option 9: Show flight costs
144 label = "With flight costs",
145 option = "showCosts",
146 tooltip = "Show flight costs on tooltips.",
147 };
148 FLIGHTMAP_OPTIONS[10] = { -- Option 10: Taxi window extras
149 label = "Enhanced flight window",
150 option = "fullTaxiMap",
151 tooltip = "Show flight network on flight selection window",
152 };
153 FLIGHTMAP_OPTIONS[11] = { -- Option 11: Confirm flight destinations
154 label = "Confirm flights",
155 option = "confirmFlights",
156 tooltip = "Prompt for confirmation before taking a flight",
157 };
158  
159 -- These constants determine how "Town, Zone" strings look.
160 -- SEP_STRING is what separates Town from Zone. SEP_POSTAMBLE
161 -- is anything that is after Zone.
162 FLIGHTMAP_SEP_STRING = ", ";
163 FLIGHTMAP_SEP_POSTAMBLE = "";