Hi smallmammothdesign,
This text is located in /wp-content/plugins/the-events-calendar/lib/widget-list.class.php on line 114. This is not an override-able file so you’d either need to de-register the widget and register your own copy, or simply use this snippet to replace the text:
function filter_translations($translation, $text, $domain) {
if ($domain == 'tribe-events-calendar') {
switch ($text) {
case 'View All Events':
$translation = 'View Full Calendar';
break;
}
}
return $translation;
}
add_filter('gettext', 'filter_translations', 10, 3);
I hope that helps but let me know if you need anything else.
– Jonah