Change timesheet list categories empty label to 'All categories' to match other apps

This commit is contained in:
Nathan Gray 2016-03-24 18:52:59 +00:00
parent e764d36d0a
commit 437f6353d0

View File

@ -891,7 +891,7 @@ class timesheet_ui extends timesheet_bo
$sel_options = array(
'ts_owner' => $read_grants,
'pm_id' => array(lang('No project')),
'cat_id' => array(array('value' => '', 'label' => lang('all')), array('value' => 0, 'label'=>lang('None'))),
'cat_id' => array(array('value' => '', 'label' => lang('all categories')), array('value' => 0, 'label'=>lang('None'))),
'ts_status' => $this->status_labels+array(lang('No status')),
);
if($this->config_data['history'])