Change "Tasks" label

Created on 13 October 2019, over 4 years ago
Updated 27 July 2023, 11 months ago

Our customers tend to be confused a bit by the label "Tasks", especially with its default translation in german "Aufgaben", The first association there is often something like a to-do list, aka "your tasks".

Our suggestion would be to use "Actions" (Aktionen in German), which sounds more like things you can do on this page to us.

If you prefer to keep Tasks, then I'd suggest to add a custom translation context that makes it easier for us to translate/change it.

✨ Feature request
Status

Closed: won't fix

Version

1.7

Component

Code

Created by

🇨🇭Switzerland Berdir Switzerland

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇮🇳India ashraf.hussain Bangalore

    "Actions" is more relevant as compared to "Tasks".
    The patch didn't work for Drupal 9.5.4. Contributing a patch here

  • Status changed to Closed: won't fix 11 months ago
  • 🇦🇺Australia elgandoz Canberra

    As @samuel.mortenson already mentioned this is not going to change for now and he's not planning to commit it. Maybe it could be worth creating an extra input in the configuration form where each admin can put what they want (in another issue.

    If anyone wants to change it, they can easy put a hook in their custom .module file:

    /**
     * Implements hook_toolbar_alter().
     */
    function mymodule_toolbar_alter(&$items) {
      // Changes the title of the 'Task' moderation sidebar tab.
      if (isset($items['moderation_sidebar'])) {
        $items['moderation_sidebar']['tab']['#title'] = t('Actions');
      }
    }
    
Production build 0.69.0 2024