Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author mibuthu

    (@mibuthu)

    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.

    oremag14jf

    (@oremag14jf)

    If I want change the text of the days. Where do it?

    wptestert

    (@wptestert)

    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');
    oremag14jf

    (@oremag14jf)

    Not. I want that instead of SAT, appears SATURDAY

    wptestert

    (@wptestert)

    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>';
Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘language 'upcoming'’ is closed to new replies.