• the-events-calendar.class.php :

    find (line 1310)
    $description = preg_replace("/[\n\t\r]/", " ", strip_tags( $eventPost->post_content) );
    and replace with
    $description = preg_replace("/[\n\t\r]/", " ", strip_tags( __($eventPost->post_content) ) );

    find (line 1321)
    $events .= "SUMMARY:" . $eventPost->post_title . "\n";
    and replace with
    $events .= "SUMMARY:" . __($eventPost->post_title) . "\n";

    therefore, for your custom/themed grid, table, list, single, widget (etc.) i used this solution:

    simply wrap with __( ); get_the_title, get_the_content, get_the_excerpt

  • The topic ‘[Plugin: The Events Calendar] the events calendar & qtranslate’ is closed to new replies.