- Issue created by @guymandude
- Status changed to Closed: works as designed
7 months ago 8:07am 14 April 2024 - π¦πΊAustralia dpi Perth, Australia
The typical way to change labels would be to use translation.
Install locale.module, and create a translation for your language. You can create an override for English.
Or if you want a low code solution, something like
In settings.php
$settings['locale_custom_strings_en'][''] = [ 'Scheduled transitions' => 'Something else',
Where 'en' is the language you want to override.
If it needs to be conditional on contexts, you'd want to look into core hooks/alters. Or even extending/overriding
\Drupal\scheduled_transitions\Plugin\Menu\LocalTask\ScheduledTransitionsLocalTask
somehow.