Change relantion manager tab title

Hello, I wan to change (translate) the tab title of relationships.

I have tried setting all possible labels that I coud find

class DishesRelationManager extends RelationManager
{
    protected static string $relationship = 'dishes';

    protected static ?string $label = 'plato';
    protected static ?string $pluralLabel = 'platos';
    protected static ?string $pluralModelLabel = 'platos';

    // ...


and also the heading() method of the table object
    public function table(Table $table): Table
    {
        return $table
            ->recordTitleAttribute('name')
            ->heading('Platos')
            // ...


but no luck so far. Where can I adjust it?

Thanks in advance.
screenshot_2023-08-07_at_09.35.54.png
Was this page helpful?