GCC Code Coverage Report | |||||||||||||||||||||
|
|||||||||||||||||||||
Line | Branch | Exec | Source |
1 |
/* |
||
2 |
* The ManaPlus Client |
||
3 |
* Copyright (C) 2007 Joshua Langley <[email protected]> |
||
4 |
* Copyright (C) 2009 The Mana World Development Team |
||
5 |
* Copyright (C) 2009-2010 The Mana Developers |
||
6 |
* Copyright (C) 2011-2019 The ManaPlus Developers |
||
7 |
* Copyright (C) 2019-2021 Andrei Karas |
||
8 |
* |
||
9 |
* This file is part of The ManaPlus Client. |
||
10 |
* |
||
11 |
* This program is free software; you can redistribute it and/or modify |
||
12 |
* it under the terms of the GNU General Public License as published by |
||
13 |
* the Free Software Foundation; either version 2 of the License, or |
||
14 |
* any later version. |
||
15 |
* |
||
16 |
* This program is distributed in the hope that it will be useful, |
||
17 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
18 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
19 |
* GNU General Public License for more details. |
||
20 |
* |
||
21 |
* You should have received a copy of the GNU General Public License |
||
22 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||
23 |
*/ |
||
24 |
|||
25 |
#include "gui/setupactiondata.h" |
||
26 |
|||
27 |
#include "utils/gettext.h" |
||
28 |
|||
29 |
#include "debug.h" |
||
30 |
|||
31 |
✓✓ | 2 |
SetupActionData setupActionDataWindows[] = |
32 |
{ |
||
33 |
{ |
||
34 |
// TRANSLATORS: input action label |
||
35 |
N_("Windows"), |
||
36 |
InputAction::NO_VALUE, |
||
37 |
"", |
||
38 |
}, |
||
39 |
{ |
||
40 |
// TRANSLATORS: input action name |
||
41 |
N_("Show Windows Menu"), |
||
42 |
InputAction::SHOW_WINDOWS, |
||
43 |
"", |
||
44 |
}, |
||
45 |
{ |
||
46 |
// TRANSLATORS: input action name |
||
47 |
N_("Hide Windows"), |
||
48 |
InputAction::HIDE_WINDOWS, |
||
49 |
"", |
||
50 |
}, |
||
51 |
{ |
||
52 |
// TRANSLATORS: input action name |
||
53 |
N_("About Window"), |
||
54 |
InputAction::WINDOW_ABOUT, |
||
55 |
"", |
||
56 |
}, |
||
57 |
{ |
||
58 |
// TRANSLATORS: input action name |
||
59 |
N_("Bank Window"), |
||
60 |
InputAction::WINDOW_BANK, |
||
61 |
"", |
||
62 |
}, |
||
63 |
{ |
||
64 |
// TRANSLATORS: input action name |
||
65 |
N_("Help Window"), |
||
66 |
InputAction::WINDOW_HELP, |
||
67 |
"", |
||
68 |
}, |
||
69 |
{ |
||
70 |
// TRANSLATORS: input action name |
||
71 |
N_("Server Info Window"), |
||
72 |
InputAction::WINDOW_SERVER_INFO, |
||
73 |
"", |
||
74 |
}, |
||
75 |
{ |
||
76 |
// TRANSLATORS: input action name |
||
77 |
N_("Status Window"), |
||
78 |
InputAction::WINDOW_STATUS, |
||
79 |
"", |
||
80 |
}, |
||
81 |
{ |
||
82 |
// TRANSLATORS: input action name |
||
83 |
N_("Inventory Window"), |
||
84 |
InputAction::WINDOW_INVENTORY, |
||
85 |
"", |
||
86 |
}, |
||
87 |
{ |
||
88 |
// TRANSLATORS: input action name |
||
89 |
N_("Equipment Window"), |
||
90 |
InputAction::WINDOW_EQUIPMENT, |
||
91 |
"", |
||
92 |
}, |
||
93 |
{ |
||
94 |
// TRANSLATORS: input action name |
||
95 |
N_("Skill Window"), |
||
96 |
InputAction::WINDOW_SKILL, |
||
97 |
"", |
||
98 |
}, |
||
99 |
{ |
||
100 |
// TRANSLATORS: input action name |
||
101 |
N_("Minimap Window"), |
||
102 |
InputAction::WINDOW_MINIMAP, |
||
103 |
"", |
||
104 |
}, |
||
105 |
{ |
||
106 |
// TRANSLATORS: input action name |
||
107 |
N_("Chat Window"), |
||
108 |
InputAction::WINDOW_CHAT, |
||
109 |
"", |
||
110 |
}, |
||
111 |
{ |
||
112 |
// TRANSLATORS: input action name |
||
113 |
N_("Item Shortcut Window"), |
||
114 |
InputAction::WINDOW_SHORTCUT, |
||
115 |
"", |
||
116 |
}, |
||
117 |
{ |
||
118 |
// TRANSLATORS: input action name |
||
119 |
N_("Setup Window"), |
||
120 |
InputAction::WINDOW_SETUP, |
||
121 |
"", |
||
122 |
}, |
||
123 |
{ |
||
124 |
// TRANSLATORS: input action name |
||
125 |
N_("Debug Window"), |
||
126 |
InputAction::WINDOW_DEBUG, |
||
127 |
"", |
||
128 |
}, |
||
129 |
{ |
||
130 |
// TRANSLATORS: input action name |
||
131 |
N_("Social Window"), |
||
132 |
InputAction::WINDOW_SOCIAL, |
||
133 |
"", |
||
134 |
}, |
||
135 |
{ |
||
136 |
// TRANSLATORS: input action name |
||
137 |
N_("Emote Shortcut Window"), |
||
138 |
InputAction::WINDOW_EMOTE_SHORTCUT, |
||
139 |
"", |
||
140 |
}, |
||
141 |
{ |
||
142 |
// TRANSLATORS: input action name |
||
143 |
N_("Outfits Window"), |
||
144 |
InputAction::WINDOW_OUTFIT, |
||
145 |
"", |
||
146 |
}, |
||
147 |
{ |
||
148 |
// TRANSLATORS: input action name |
||
149 |
N_("Shop Window"), |
||
150 |
InputAction::WINDOW_SHOP, |
||
151 |
"", |
||
152 |
}, |
||
153 |
{ |
||
154 |
// TRANSLATORS: input action name |
||
155 |
N_("Quick drop Window"), |
||
156 |
InputAction::WINDOW_DROP, |
||
157 |
"", |
||
158 |
}, |
||
159 |
{ |
||
160 |
// TRANSLATORS: input action name |
||
161 |
N_("Kill Stats Window"), |
||
162 |
InputAction::WINDOW_KILLS, |
||
163 |
"", |
||
164 |
}, |
||
165 |
{ |
||
166 |
// TRANSLATORS: input action name |
||
167 |
N_("Commands Window"), |
||
168 |
InputAction::WINDOW_SPELLS, |
||
169 |
"", |
||
170 |
}, |
||
171 |
{ |
||
172 |
// TRANSLATORS: input action name |
||
173 |
N_("Who Is Online Window"), |
||
174 |
InputAction::WINDOW_ONLINE, |
||
175 |
"", |
||
176 |
}, |
||
177 |
{ |
||
178 |
// TRANSLATORS: input action name |
||
179 |
N_("Did you know Window"), |
||
180 |
InputAction::WINDOW_DIDYOUKNOW, |
||
181 |
"", |
||
182 |
}, |
||
183 |
{ |
||
184 |
// TRANSLATORS: input action name |
||
185 |
N_("Quests Window"), |
||
186 |
InputAction::WINDOW_QUESTS, |
||
187 |
"", |
||
188 |
}, |
||
189 |
{ |
||
190 |
// TRANSLATORS: input action name |
||
191 |
N_("Updates Window"), |
||
192 |
InputAction::WINDOW_UPDATER, |
||
193 |
"", |
||
194 |
}, |
||
195 |
{ |
||
196 |
// TRANSLATORS: input action name |
||
197 |
N_("Cart window"), |
||
198 |
InputAction::WINDOW_CART, |
||
199 |
"", |
||
200 |
}, |
||
201 |
{ |
||
202 |
// TRANSLATORS: input action name |
||
203 |
N_("Quick settings window"), |
||
204 |
InputAction::WINDOW_QUICK_SETTINGS, |
||
205 |
"", |
||
206 |
}, |
||
207 |
{ |
||
208 |
// TRANSLATORS: input action name |
||
209 |
N_("Clan window"), |
||
210 |
InputAction::WINDOW_CLAN, |
||
211 |
"", |
||
212 |
}, |
||
213 |
{ |
||
214 |
// TRANSLATORS: input action label |
||
215 |
N_("Tabs"), |
||
216 |
InputAction::NO_VALUE, |
||
217 |
"", |
||
218 |
}, |
||
219 |
{ |
||
220 |
// TRANSLATORS: input action name |
||
221 |
N_("Previous Social Tab"), |
||
222 |
InputAction::PREV_SOCIAL_TAB, |
||
223 |
"", |
||
224 |
}, |
||
225 |
{ |
||
226 |
// TRANSLATORS: input action name |
||
227 |
N_("Next Social Tab"), |
||
228 |
InputAction::NEXT_SOCIAL_TAB, |
||
229 |
"", |
||
230 |
}, |
||
231 |
{ |
||
232 |
// TRANSLATORS: input action name |
||
233 |
N_("Previous Shortcuts tab"), |
||
234 |
InputAction::PREV_SHORTCUTS_TAB, |
||
235 |
"", |
||
236 |
}, |
||
237 |
{ |
||
238 |
// TRANSLATORS: input action name |
||
239 |
N_("Next Shortcuts tab"), |
||
240 |
InputAction::NEXT_SHORTCUTS_TAB, |
||
241 |
"", |
||
242 |
}, |
||
243 |
{ |
||
244 |
// TRANSLATORS: input action name |
||
245 |
N_("Previous Commands tab"), |
||
246 |
InputAction::PREV_COMMANDS_TAB, |
||
247 |
"", |
||
248 |
}, |
||
249 |
{ |
||
250 |
// TRANSLATORS: input action name |
||
251 |
N_("Next Commands tab"), |
||
252 |
InputAction::NEXT_COMMANDS_TAB, |
||
253 |
"", |
||
254 |
}, |
||
255 |
{ |
||
256 |
// TRANSLATORS: input action name |
||
257 |
N_("Previous inventory tab"), |
||
258 |
InputAction::PREV_INV_TAB, |
||
259 |
"", |
||
260 |
}, |
||
261 |
{ |
||
262 |
// TRANSLATORS: input action name |
||
263 |
N_("Next inventory tab"), |
||
264 |
InputAction::NEXT_INV_TAB, |
||
265 |
"", |
||
266 |
}, |
||
267 |
{ |
||
268 |
// TRANSLATORS: input action name |
||
269 |
N_("Clear drops window"), |
||
270 |
InputAction::DROP_CLEAR, |
||
271 |
"", |
||
272 |
}, |
||
273 |
{ |
||
274 |
"", |
||
275 |
InputAction::NO_VALUE, |
||
276 |
"" |
||
277 |
} |
||
278 |
✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✓✗ ✓✗✗✗ |
249 |
}; |
Generated by: GCOVR (Version 3.3) |