diff options
-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, "" |