mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
always need to translate app-title, as users might use different languages
This commit is contained in:
parent
d2f28aab34
commit
c450438583
@ -81,15 +81,9 @@ class Applications
|
||||
$apps = array();
|
||||
foreach($this->db->select($this->table_name,'*',false,__LINE__,__FILE__,false,'ORDER BY app_order ASC') as $row)
|
||||
{
|
||||
$title = $app_name = $row['app_name'];
|
||||
|
||||
if (@is_array($GLOBALS['egw_info']['user']['preferences']) && ($t = lang($app_name)) != $app_name.'*')
|
||||
{
|
||||
$title = $t;
|
||||
}
|
||||
$apps[$app_name] = Array(
|
||||
'title' => $title,
|
||||
'name' => $app_name,
|
||||
$apps[$row['app_name']] = Array(
|
||||
'title' => $row['app_name'],
|
||||
'name' => $row['app_name'],
|
||||
'enabled' => True,
|
||||
'status' => $row['app_enabled'],
|
||||
'id' => (int)$row['app_id'],
|
||||
@ -102,6 +96,14 @@ class Applications
|
||||
}
|
||||
return $apps;
|
||||
});
|
||||
|
||||
if (!empty($GLOBALS['egw_info']['user']['preferences']['common']['lang']))
|
||||
{
|
||||
foreach($GLOBALS['egw_info']['apps'] as &$app)
|
||||
{
|
||||
$app['title'] = lang($app['title']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user