diff --git a/web/app/3d/actions/actions.js b/web/app/3d/actions/actions.js
index f65cbf0d..64dd5531 100644
--- a/web/app/3d/actions/actions.js
+++ b/web/app/3d/actions/actions.js
@@ -66,7 +66,7 @@ ActionManager.prototype.run = function(actionId, event) {
if (action.state.enabled) {
action.__handler(this.app, event);
} else {
- this.app.inputManager.messageSink.info("action '"+actionId+"' is disabled and can't be launched
" + action.state.hint);
+ this.app.inputManager.messageSink.info("action '"+actionId+"' is disabled and can't be executed
" + action.state.hint);
}
};