BUG 0000 Changed hardcoded for type of User Expedience SOLVED
- Changed "Simplified" by "Mobile" Label
This commit is contained in:
@@ -224,17 +224,17 @@ class adminProxy extends HttpProxyController
|
|||||||
|
|
||||||
if ($type == 'assoc') {
|
if ($type == 'assoc') {
|
||||||
$list = array(
|
$list = array(
|
||||||
'NORMAL' => 'Normal',
|
'NORMAL' => G::loadTranslation('ID_UXS_NORMAL'),
|
||||||
'SIMPLIFIED' => 'Simplified',
|
'SIMPLIFIED' => G::loadTranslation('ID_UXS_SIMPLIFIED'),
|
||||||
'SWITCHABLE' => 'Switchable',
|
'SWITCHABLE' => G::loadTranslation('ID_UXS_SWITCHABLE'),
|
||||||
'SINGLE' => 'Single Application'
|
'SINGLE' => G::loadTranslation('ID_UXS_SINGLE')
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
$list = array(
|
$list = array(
|
||||||
array('NORMAL', 'Normal'),
|
array('NORMAL', G::loadTranslation('ID_UXS_NORMAL') ),
|
||||||
array('SIMPLIFIED', 'Simplified'),
|
array('SIMPLIFIED', G::loadTranslation('ID_UXS_SIMPLIFIED') ),
|
||||||
array('SWITCHABLE', 'Switchable'),
|
array('SWITCHABLE', G::loadTranslation('ID_UXS_SWITCHABLE') ),
|
||||||
array('SINGLE', 'Single Application')
|
array('SINGLE', G::loadTranslation('ID_UXS_SINGLE') )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return $list;
|
return $list;
|
||||||
|
|||||||
Reference in New Issue
Block a user