author | Wuzzy <Wuzzy2@mail.ru> |
Thu, 15 Feb 2018 13:49:14 +0100 | |
changeset 13007 | 8a8aaaf97a95 |
parent 12997 | f06660523198 |
child 13188 | 16b375b21af1 |
permissions | -rw-r--r-- |
539 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
539 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
539 | 17 |
*/ |
18 |
||
19 |
#include "binds.h" |
|
20 |
||
21 |
const BindAction cbinds[BINDS_NUMBER] = |
|
22 |
{ |
|
8346 | 23 |
{"+up", "up", QT_TRANSLATE_NOOP("binds", "up"), QT_TRANSLATE_NOOP("binds (categories)", "Movement"), QT_TRANSLATE_NOOP("binds (descriptions)", "Hedgehog movement")}, |
7870 | 24 |
{"+left", "left", QT_TRANSLATE_NOOP("binds", "left"), NULL, NULL}, |
25 |
{"+right", "right", QT_TRANSLATE_NOOP("binds", "right"), NULL, NULL}, |
|
26 |
{"+down", "down", QT_TRANSLATE_NOOP("binds", "down"), NULL, NULL}, |
|
27 |
{"+precise", "left_shift", QT_TRANSLATE_NOOP("binds", "precise aim"), NULL, NULL}, |
|
28 |
{"ljump", "return", QT_TRANSLATE_NOOP("binds", "long jump"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Traverse gaps and obstacles by jumping:")}, |
|
29 |
{"hjump", "backspace", QT_TRANSLATE_NOOP("binds", "high jump"), NULL, NULL}, |
|
30 |
{"switch", "tab", QT_TRANSLATE_NOOP("binds", "switch"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Switch your currently active hog (if possible):")}, |
|
8346 | 31 |
{"ammomenu", "mouser", QT_TRANSLATE_NOOP("binds", "ammo menu"), QT_TRANSLATE_NOOP("binds (categories)", "Weapons"), QT_TRANSLATE_NOOP("binds (descriptions)", "Pick a weapon or utility item:")}, |
7870 | 32 |
{"slot 1", "f1", QT_TRANSLATE_NOOP("binds", "slot 1"), NULL, NULL}, |
33 |
{"slot 2", "f2", QT_TRANSLATE_NOOP("binds", "slot 2"), NULL, NULL}, |
|
34 |
{"slot 3", "f3", QT_TRANSLATE_NOOP("binds", "slot 3"), NULL, NULL}, |
|
35 |
{"slot 4", "f4", QT_TRANSLATE_NOOP("binds", "slot 4"), NULL, NULL}, |
|
36 |
{"slot 5", "f5", QT_TRANSLATE_NOOP("binds", "slot 5"), NULL, NULL}, |
|
37 |
{"slot 6", "f6", QT_TRANSLATE_NOOP("binds", "slot 6"), NULL, NULL}, |
|
38 |
{"slot 7", "f7", QT_TRANSLATE_NOOP("binds", "slot 7"), NULL, NULL}, |
|
39 |
{"slot 8", "f8", QT_TRANSLATE_NOOP("binds", "slot 8"), NULL, NULL}, |
|
40 |
{"slot 9", "f9", QT_TRANSLATE_NOOP("binds", "slot 9"), NULL, NULL}, |
|
41 |
{"slot :", "f10", QT_TRANSLATE_NOOP("binds", "slot 10"), NULL, NULL}, |
|
42 |
{"timer 1", "1", QT_TRANSLATE_NOOP("binds", "timer 1 sec"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Set the timer on bombs and timed weapons:")}, |
|
43 |
{"timer 2", "2", QT_TRANSLATE_NOOP("binds", "timer 2 sec"), NULL, NULL}, |
|
44 |
{"timer 3", "3", QT_TRANSLATE_NOOP("binds", "timer 3 sec"), NULL, NULL}, |
|
45 |
{"timer 4", "4", QT_TRANSLATE_NOOP("binds", "timer 4 sec"), NULL, NULL}, |
|
46 |
{"timer 5", "5", QT_TRANSLATE_NOOP("binds", "timer 5 sec"), NULL, NULL}, |
|
8346 | 47 |
{"+attack", "space", QT_TRANSLATE_NOOP("binds", "attack"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Fire your selected weapon or trigger an utility item:")}, |
48 |
{"put", "mousel", QT_TRANSLATE_NOOP("binds", "put"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Pick a weapon or a target location under the cursor:")}, |
|
10315
d464a04450cc
Qt-Frontend: update description of findhh to better reflect current behavior. thanks to the friendly reminder in issue 805
sheepluva
parents:
10108
diff
changeset
|
49 |
{"findhh", "h", QT_TRANSLATE_NOOP("binds", "autocam / find hedgehog"),QT_TRANSLATE_NOOP("binds (categories)", "Camera"), QT_TRANSLATE_NOOP("binds (descriptions)", "Toggle automatic camera / refocus on active hedgehog:")}, |
7870 | 50 |
{"+cur_u", "[8]", QT_TRANSLATE_NOOP("binds", "up"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Move the cursor or camera without using the mouse:")}, |
51 |
{"+cur_l", "[4]", QT_TRANSLATE_NOOP("binds", "left"), NULL, NULL}, |
|
52 |
{"+cur_r", "[6]", QT_TRANSLATE_NOOP("binds", "right"), NULL, NULL}, |
|
53 |
{"+cur_d", "[2]", QT_TRANSLATE_NOOP("binds", "down"), NULL, NULL}, |
|
54 |
// {"+cur_m", "", QT_TRANSLATE_NOOP("binds", "movement key modifier"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Specify a modifier key to move camera and cursor using your default hog movement keys:")}, |
|
55 |
{"zoomin", "wheelup", QT_TRANSLATE_NOOP("binds", "zoom in"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Modify the camera's zoom level:")}, |
|
56 |
{"zoomout", "wheeldown", QT_TRANSLATE_NOOP("binds", "zoom out"), NULL, NULL}, |
|
57 |
{"zoomreset", "mousem", QT_TRANSLATE_NOOP("binds", "reset zoom"), NULL, NULL}, |
|
8346 | 58 |
{"chat", "t", QT_TRANSLATE_NOOP("binds", "chat"), QT_TRANSLATE_NOOP("binds (categories)", "Miscellaneous"), QT_TRANSLATE_NOOP("binds (descriptions)", "Talk to your team or all participants:")}, |
12990
8dd95c095882
Make team chat its own control and use [U] key by default
Wuzzy <Wuzzy2@mail.ru>
parents:
12645
diff
changeset
|
59 |
{"chat team", "u", QT_TRANSLATE_NOOP("binds", "team chat"), NULL, NULL}, |
7870 | 60 |
{"history", "`", QT_TRANSLATE_NOOP("binds", "chat history"), NULL, NULL}, |
12996
2bafaeed5e2e
Rename AFK Mode to “Auto Skip” (bug 78)
Wuzzy <Wuzzy2@mail.ru>
parents:
12990
diff
changeset
|
61 |
{"pause", "p", QT_TRANSLATE_NOOP("binds", "pause / auto skip"),NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Pause, continue or leave your game:")}, |
7870 | 62 |
{"quit", "escape", QT_TRANSLATE_NOOP("binds", "quit"), NULL, NULL}, |
63 |
{"confirm", "y", QT_TRANSLATE_NOOP("binds", "confirmation"), NULL, NULL}, |
|
64 |
{"+voldown", "9", QT_TRANSLATE_NOOP("binds", "volume down"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Modify the game's volume while playing:")}, |
|
65 |
{"+volup", "0", QT_TRANSLATE_NOOP("binds", "volume up"), NULL, NULL}, |
|
66 |
{"mute", "8", QT_TRANSLATE_NOOP("binds", "mute audio"), NULL, NULL}, |
|
67 |
{"fullscr", "f12", QT_TRANSLATE_NOOP("binds", "change mode"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Toggle fullscreen mode:")}, |
|
68 |
{"capture", "c", QT_TRANSLATE_NOOP("binds", "capture"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Take a screenshot:")}, |
|
9948 | 69 |
{"+speedup", "s", QT_TRANSLATE_NOOP("binds", "speed up replay"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Demo replay:")}, |
12645
a4a04a700153
Add translator comment for "toggle team bars"
Wuzzy <almikes@aol.com>
parents:
12491
diff
changeset
|
70 |
//: This refers to the team info bars (name/flag/health) of all teams. These are shown at the bottom center of the screen |
12491
24cd4840d3e2
Fix the key for toggling team bars being incorrectly described in the settings page
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
71 |
{"rotmask", "delete", QT_TRANSLATE_NOOP("binds", "toggle team bars"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Heads-up display:")}, |
13007
8a8aaaf97a95
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags
Wuzzy <Wuzzy2@mail.ru>
parents:
12997
diff
changeset
|
72 |
{"rottags", "home", QT_TRANSLATE_NOOP("binds", "toggle hedgehog tags"), NULL, NULL}, |
8147
53190e590919
Use same macro for hiding video record button and keybinding
Mitchell Kember <mk12360@gmail.com>
parents:
8144
diff
changeset
|
73 |
#ifdef VIDEOREC |
7870 | 74 |
{"record", "r", QT_TRANSLATE_NOOP("binds", "record"), NULL, QT_TRANSLATE_NOOP("binds (descriptions)", "Record video:")} |
8144
f3ba33d5d2b1
Google Code-in: Hide "video record" keybind option
Mitchell Kember <mk12360@gmail.com>
parents:
7870
diff
changeset
|
75 |
#endif |
539 | 76 |
}; |