diff --git a/backends/events/maemosdl/maemosdl-events.cpp b/backends/events/maemosdl/maemosdl-events.cpp index 3001f5d7902..6a62f539503 100644 --- a/backends/events/maemosdl/maemosdl-events.cpp +++ b/backends/events/maemosdl/maemosdl-events.cpp @@ -25,6 +25,7 @@ #include "common/scummsys.h" #include "backends/events/maemosdl/maemosdl-events.h" +#include "common/translation.h" MaemoSdlEventSource::MaemoSdlEventSource() : SdlEventSource(), _clickEnabled(true) { @@ -72,6 +73,8 @@ bool MaemoSdlEventSource::remapKey(SDL_Event &ev, Common::Event &event) { return true; } else if (ev.key.keysym.sym == SDLK_F8) { _clickEnabled = !_clickEnabled; + ((SurfaceSdlGraphicsManager*) _graphicsManager)->displayMessageOnOSD( + _clickEnabled ? _("Clicking Enabled") : _("Clicking Disabled")); return true; } break; diff --git a/po/POTFILES b/po/POTFILES index 0d0a4270b09..6ce26a05395 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -80,3 +80,4 @@ backends/events/gph/gph-events.cpp backends/events/openpandora/op-events.cpp backends/updates/macosx/macosx-updates.mm backends/platform/bada/form.cpp +backends/events/maemosdl/maemosdl-events.cpp