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?