Temp fix from Zach for wrong text domain in /wp-content/plugins/events-calendar-pro/src/views/pro/widgets/venue-widget.php -- Already fixed in v4.0 beta
<?php
// Temp fix from Zach for wrong text domain in /wp-content/plugins/events-calendar-pro/src/views/pro/widgets/venue-widget.php
// Already fixed in v4.0 beta
// Reference: http://theeventscalendar.com/support/forums/topic/language-files-in-pro/
add_filter( 'gettext', 'fix_missing_translation_1023909', 10, 3 );
function fix_missing_translation_1023909( $unused_translations, $text, $domain ) {
$specific_string = 'View all %1$s at this %2$s';
if ( 'tribe-events-calendar' != $domain || $text != $specific_string ) {
return $text;
}
return 'custom translation for this specific string';
}