How do i change SubNavigation Label?

How can i change this sub navigation label or make it translateable?
4EBE4E8E-6323-4529-9DAC-C96DED2BF0AB.png
Solution
use navigationLabel in the ViewProduct.php, EditProduct.php

protected static ?string $navigationLabel = 'Custom Label';

//or

public static function getNavigationLabel(): string
{
    return __('Custom Label');
}
Was this page helpful?