ManaPlus
gui.cpp
Go to the documentation of this file.
1 /*
2  * The ManaPlus Client
3  * Copyright (C) 2011-2019 The ManaPlus Developers
4  * Copyright (C) 2019-2021 Andrei Karas
5  *
6  * This file is part of The ManaPlus Client.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #include "gui/setupactiondata.h"
23 
24 #include "utils/gettext.h"
25 
26 #include "debug.h"
27 
29 {
30  {
31  // TRANSLATORS: input action name
32  N_("Move & selection"),
34  "",
35  },
36  {
37  // TRANSLATORS: input action name
38  N_("Move Up"),
40  "",
41  },
42  {
43  // TRANSLATORS: input action name
44  N_("Move Down"),
46  "",
47  },
48  {
49  // TRANSLATORS: input action name
50  N_("Move Left"),
52  "",
53  },
54  {
55  // TRANSLATORS: input action name
56  N_("Move Right"),
58  "",
59  },
60  {
61  // TRANSLATORS: input action name
62  N_("Move Home"),
64  "",
65  },
66  {
67  // TRANSLATORS: input action name
68  N_("Move End"),
70  "",
71  },
72  {
73  // TRANSLATORS: input action name
74  N_("Page up"),
76  "",
77  },
78  {
79  // TRANSLATORS: input action name
80  N_("Page down"),
82  "",
83  },
84  {
85  // TRANSLATORS: input action name
86  N_("Other"),
88  "",
89  },
90  {
91  // TRANSLATORS: input action name
92  N_("Select"),
94  "",
95  },
96  {
97  // TRANSLATORS: input action name
98  N_("Select2"),
100  "",
101  },
102  {
103  // TRANSLATORS: input action name
104  N_("Cancel"),
106  "",
107  },
108  {
109  // TRANSLATORS: input action name
110  N_("Delete"),
112  "",
113  },
114  {
115  // TRANSLATORS: input action name
116  N_("Backspace"),
118  "",
119  },
120  {
121  // TRANSLATORS: input action name
122  N_("Insert"),
124  "",
125  },
126  {
127  // TRANSLATORS: input action name
128  N_("Tab"),
130  "",
131  },
132  {
133  // TRANSLATORS: input action name
134  N_("Mod"),
136  "",
137  },
138  {
139  // TRANSLATORS: input action name
140  N_("Ctrl"),
142  "",
143  },
144  {
145  "B",
147  "",
148  },
149  {
150  "C",
152  "",
153  },
154  {
155  "D",
157  "",
158  },
159  {
160  "E",
162  "",
163  },
164  {
165  "F",
167  "",
168  },
169  {
170  "H",
172  "",
173  },
174  {
175  "K",
177  "",
178  },
179  {
180  "U",
182  "",
183  },
184  {
185  "V",
187  "",
188  },
189  {
190  "W",
192  "",
193  },
194  {
195  "",
197  ""
198  }
199 };
#define N_(s)
Definition: gettext.h:36
SetupActionData setupActionDataGui[]
Definition: gui.cpp:28