Multi language support is not included yet, but is already planned.
If you want to change it already now, you have to modify it directly in the code.
If I want change the text of the days. Where do it?
If you have set your language in your wp_config.php , the names of the days will appear in your langauge, for example for dutch:
define('WPLANG', 'nl_NL');
Not. I want that instead of SAT, appears SATURDAY
In the mysql2date function use “l” instead of “D” to write the full daynames, so in sc_event-list.php on line 390:
replace this
$out = '<div class="event-weekday">'.mysql2date( 'D', $date ).'</div>';
by this
$out = '<div class="event-weekday">'.mysql2date( 'l', $date ).'</div>';