Hi there Rafael, welcome back to the forums. š
Yeah, we rely heavily on the community to help provide translations so it’s very possible that particular string has not been translated.
One possible option is to use a filter to translate the text. For example, try adding this to your theme’sĀ functions.php file:
add_filter( 'gettext', 'my_event_change_venue_label', 20, 3 );
function my_event_change_venue_label( $translated_text, $text, $domain ) {
if ( $translated_text == 'Use Saved Venue:' && $domain == 'tribe-events-calendar' ) {
$translated_text = __( 'Your Translated Text Goes Here!', 'tribe-events-calendar' );
}
return $translated_text;
}
If that doesn’t work, I would suggest posting a thread in our Translations forum. The community is fairly active and might be able to help with an updated .pot file that includes the string.
Cheers!
Geoff