To rename the “Licenses” menu item in WooCommerce My Account page, place the following snippet in your theme’s functions.php file or your plugins/mu-plugins.
add_filter('dlm_myaccount_menu_items', function($items){
$items['digital-licenses'] = 'Your new title';
return $items;
});