Translation??

Home Forums Calendar Products Events Calendar PRO Translation??

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #160425
    wderday
    Participant

    On the event page (all Events) is the question: Show only the first upcoming instance of recurring Events
    My website is in german language. Where can i Change this text?

    #161411
    Barry
    Member

    Hi – sorry you’re facing difficulties.

    It looks like that translation wasn’t compiled into the current release, but the good news it seems to have been fixed as of the very next maintenance release which will arrive shortly 🙂

    In the meantime, perhaps you could workaround this by adding a snippet like the following one to your theme’s functions.php file?

    add_filter( 'gettext', 'temp_translation_fix' );
    
    function temp_translation_fix( $text ) {
    	$target = 'Show only the first upcoming instance of recurring events';
    	if ( $text !== $target ) return $text;
    	else return 'Nur die erste Veranstaltung einer Terminserie anzeigen';
    }

    Would that work until the fix arrives?

    #162289
    wderday
    Participant

    Thanks! Very well!!!!!

    #162342
    Barry
    Member

    Awesome – glad we could help.

    I’ll go ahead and close this thread since we’ve got a temporary solution (and a solid fix is on its way) … if you have a moment though and wanted to share your thoughts on your experiences with The Events Calendar so far we’d love to hear from you on our review page 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Translation??’ is closed to new replies.