Description of the need
I've noticed that in a handful of contrib modules, there is an install hook that simply sets a message with a link to the configuration page. In Drupal, I love this feature as it saves me from needing to find the module that was just installed, open it's collapsed set of buttons, and click it's configuration link.
Here's some example code from the sendgrid integration module:
function sendgrid_integration_install() {
$t = get_t();
backdrop_set_message($t('You can configure SendGrid settings under Administer > Configuration > !link', ['!link' => l($t('SendGrid settings'), 'admin/config/system/sendgrid'),]));
}
Proposed solution
Since modules already define a configuration link in the .info file, we could use that link to set this message automatically for all projects.
[DX] This would improve the experience for contributed module developers, as they wouldn't need to repeat the same action for every module they build.
[UX] I believe this would also be a user experience improvement, but I'd love more feedback from others.
Alternatives that have been considered
In Backdrop, we've already improved the module installation scenario by 1) remembering the filter for the module that was just installed, if you'd used it before installing the module it remains after -- making the actions links immediately available. And 2) we've removed the collapsed set of buttons, instead replacing them with action links that are more immediately available.
Additional information
TBD
Draft of feature description for Press Release (1 paragraph at most)
When installing a module in Backdrop, you'll be immediately be presented with a link to the module's configuration page, if it has one.
Recent comments
There is a Drupal 7 contrib module that "lets the administrator see all administration pages in her preferred language" and which could be ported to Backdrop: https://www.drupal.org/project/...
Allow admin to select admin language seperate from front end language (multilingual)
@stpaultim – You're right: my approach affects also the main menu. I guess, because menus are also considered as user interface (not as content). @findlabnet – If I didn't miss anything,...
Allow admin to select admin language seperate from front end language (multilingual)
Go to the account edit of the desired user. On the horizontal tab below "Region and Language," select "English" or another language. WFM.
Allow admin to select admin language seperate from front end language (multilingual)