Try adding this code in wp-admin > plugins > editor > select wplms customizer plugin > wplms-customizer.php
add_filter('wplms-bbb_script_args','share_bbb_script_args', 999);
function share_bbb_script_args($container){
$container['shared_tabs'] = array(
'shared' =>__('shared2','wplms-bbb'),
'group' =>__('group2','wplms-bbb'),
'course' =>__('course2','wplms-bbb')
);
return $container;
}
Instead of shared --> it will show shared2, so you can replace these values with your string
I tried everything but still translation is not working. so you can use this code snippet