Hello
You may change it for Files/Photos/Sounds/Videos modules at the same time. In this case you need to edit in/classes/BxDolFilesModule.php file -> actionView function. Find the following code in it
if (!$this->isAllowedView($aInfo)) {
$sKey = _t('_' . $this->_oConfig->getMainPrefix() . '_forbidden');
$sCode = DesignBoxContent($sKey, MsgBox($sKey), 1);
}
and change it to
if (!$this->isAllowedView($aInfo)) {
$sKey = _t('_' . $this->_oConfig->getMainPrefix() . '_forbidden');
$sCode = DesignBoxContent($sKey, MsgBox( _t('_' . $this->_oConfig->getMainPrefix() . '_forbidden_my')), 1);
}
Then add the following language keys with necessary translations via admin panel -> settings -> languages settings.
_bx_files_forbidden_my
_bx_photos_forbidden_my
_bx_sounds_forbidden_my
_bx_videos_forbidden_my
But if you need it for Videos module only then it will require more changes.