[Scummvm-git-logs] scummvm master -> 933148e5d595abe3f22de6b4d5424d44b908c482

sev- noreply at scummvm.org
Fri Jan 9 17:16:04 UTC 2026


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
933148e5d5 SHERLOCK: Normalize keymapper actions


Commit: 933148e5d595abe3f22de6b4d5424d44b908c482
    https://github.com/scummvm/scummvm/commit/933148e5d595abe3f22de6b4d5424d44b908c482
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-01-09T18:15:17+01:00

Commit Message:
SHERLOCK: Normalize keymapper actions

Changed paths:
    engines/sherlock/metaengine.cpp


diff --git a/engines/sherlock/metaengine.cpp b/engines/sherlock/metaengine.cpp
index 9f1f04a421b..405c144de76 100644
--- a/engines/sherlock/metaengine.cpp
+++ b/engines/sherlock/metaengine.cpp
@@ -569,7 +569,7 @@ Common::KeymapArray SherlockMetaEngine::initKeymaps(const char *target) const {
 		scalpelInvKeymap->addAction(act);
 
 		// I18N: (Game: The Lost Files of Sherlock Holmes: The Case of the Serrated Scalpel) The game has an inventory, this action is go back a page (one page displays 6 items) in the inventory
-		act = new Action("PAGE_LEFT", _("Go back a page"));
+		act = new Action("PAGE_LEFT", _("Previous page"));
 		act->setCustomEngineActionEvent(kActionScalpelInvPageLeft);
 		act->addDefaultInputMapping("COMMA");
 		act->addDefaultInputMapping("JOY_UP");
@@ -581,14 +581,14 @@ Common::KeymapArray SherlockMetaEngine::initKeymaps(const char *target) const {
 		act->addDefaultInputMapping("JOY_LEFT");
 		scalpelInvKeymap->addAction(act);
 
-		act = new Action("RIGHT", _("Scroll Right"));
+		act = new Action("RIGHT", _("Scroll right"));
 		act->setCustomEngineActionEvent(kActionScalpelInvRight);
 		act->addDefaultInputMapping("PLUS");
 		act->addDefaultInputMapping("JOY_RIGHT");
 		scalpelInvKeymap->addAction(act);
 
 		// I18N: (Game: The Lost Files of Sherlock Holmes: The Case of the Serrated Scalpel) The game has an inventory, this action is go ahead a page (one page displays 6 items) in the inventory
-		act = new Action("PAGE_RIGHT", _("Go ahead a page"));
+		act = new Action("PAGE_RIGHT", _("Next page"));
 		act->setCustomEngineActionEvent(kActionScalpelInvPageRight);
 		act->addDefaultInputMapping("PERIOD");
 		act->addDefaultInputMapping("JOY_DOWN");




More information about the Scummvm-git-logs mailing list