Dear Radoslaw Michalak,
Please open theme2.php file(your site/templates/sj_news25/html/mod_sj_content_slideshow/theme2.php) and find:
<div id="play_pause_<?php echo $module->id;?>" class="pause">Pause</div>
<div id="prev<?php echo $module->id;?>" class="preview">Previous</div>
<div id="next<?php echo $module->id;?>" class="next">Next</div>
and you can translate "Pause", "Previous", and "Next" to your native language.
You can adjust number of slideshow, maybe more then 7 slides, then you have to open file style.css(your site/templates/sj_news25/html/mod_sj_content_slideshow/style.css), find:
.ytc-content-slideshow .theme2 div.ytc-center {
color: #FFFFFF;
float: right;
font-weight: bold;
margin: 0;
overflow: hidden;
position: relative;
width: 275px;
}
change width to:
.ytc-content-slideshow .theme2 div.ytc-center {
color: #FFFFFF;
float: right;
font-weight: bold;
margin: 0;
overflow: hidden;
position: relative;
width: 50%;
}
Thanks