Hi Cory,
I have updated manually duplicator to version 1.1.7 and I have made a new package and it fixes this issue for me.
Thanks
You can add this code in your theme functions.php file
add_filter( 'gettext', 'change_projects_label', 10, 2 );
function change_projects_label( $translation, $text ) {
if ( $text == 'Projects' )
return __('your_title_label','your_theme');
return $translation;
}
Replace ‘your_title_label’ and ‘your_theme’ and add the translation to your .po language file with apps like poedit