diff --git a/module/execution/ui/ajaxgetdropmenu.html.php b/module/execution/ui/ajaxgetdropmenu.html.php index 79e6c3ab7f..53ee5187bd 100644 --- a/module/execution/ui/ajaxgetdropmenu.html.php +++ b/module/execution/ui/ajaxgetdropmenu.html.php @@ -63,7 +63,7 @@ foreach ($data as $key => $value) $data[$key] = array_values($value); * Define every group name, include expanded group. */ $tabs = array(); -$tabs[] = array('name' => 'my', 'text' => $lang->execution->mine); +$tabs[] = array('name' => 'my', 'text' => $lang->execution->involved); $tabs[] = array('name' => 'other', 'text' => $lang->execution->other); $tabs[] = array('name' => 'closed', 'text' => $lang->execution->closedExecution); diff --git a/module/project/ui/ajaxgetdropmenu.html.php b/module/project/ui/ajaxgetdropmenu.html.php index 33284c21dd..d8d3d9364a 100644 --- a/module/project/ui/ajaxgetdropmenu.html.php +++ b/module/project/ui/ajaxgetdropmenu.html.php @@ -68,7 +68,7 @@ foreach ($data as $key => $value) $data[$key] = array_values($value); * Define every group name, include expanded group. */ $tabs = array(); -$tabs[] = array('name' => 'my', 'text' => $lang->project->mine); +$tabs[] = array('name' => 'my', 'text' => $lang->project->myProject); $tabs[] = array('name' => 'other', 'text' => $lang->project->other); $tabs[] = array('name' => 'closed', 'text' => $lang->project->closedProject);