diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-28 17:13:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-28 17:13:32 +0300 |
commit | d82cd00f86cf5f902a47ef19fd24c7745e4104d4 (patch) | |
tree | 7a0938a6a8a0a149f7b3b179d10d71da69d43116 /src/input | |
parent | 2cfa0d17583869b7a2fb6e558b160e46389f5599 (diff) | |
download | plus-d82cd00f86cf5f902a47ef19fd24c7745e4104d4.tar.gz plus-d82cd00f86cf5f902a47ef19fd24c7745e4104d4.tar.bz2 plus-d82cd00f86cf5f902a47ef19fd24c7745e4104d4.tar.xz plus-d82cd00f86cf5f902a47ef19fd24c7745e4104d4.zip |
Allow assign keys to move pet actions.
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/pages/move.cpp | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/src/input/pages/move.cpp b/src/input/pages/move.cpp index fb027b9d4..91997ddbe 100644 --- a/src/input/pages/move.cpp +++ b/src/input/pages/move.cpp @@ -40,36 +40,60 @@ SetupActionData setupActionDataMove[] = }, { // TRANSLATORS: input action name - N_("Move Up"), + N_("Move player up"), InputAction::MOVE_UP, "", }, { // TRANSLATORS: input action name - N_("Move Down"), + N_("Move player down"), InputAction::MOVE_DOWN, "", }, { // TRANSLATORS: input action name - N_("Move Left"), + N_("Move player left"), InputAction::MOVE_LEFT, "", }, { // TRANSLATORS: input action name - N_("Move Right"), + N_("Move player right"), InputAction::MOVE_RIGHT, "", }, { // TRANSLATORS: input action name - N_("Move Forward"), + N_("Move player forward"), InputAction::MOVE_FORWARD, "", }, { // TRANSLATORS: input action name + N_("Move pet up"), + InputAction::PET_MOVE_UP, + "", + }, + { + // TRANSLATORS: input action name + N_("Move pet down"), + InputAction::PET_MOVE_DOWN, + "", + }, + { + // TRANSLATORS: input action name + N_("Move pet left"), + InputAction::PET_MOVE_LEFT, + "", + }, + { + // TRANSLATORS: input action name + N_("Move pet right"), + InputAction::PET_MOVE_RIGHT, + "", + }, + { + // TRANSLATORS: input action name N_("Move to navigation point shortcuts"), InputAction::NO_VALUE, "" |