Revize 1302
Přidáno uživatelem Michal Kliment před asi 13 roky(ů)
freenetis/branches/testing/application/i18n/cs_CZ/texts.php | ||
---|---|---|
'polarization' => 'Polarizace',
|
||
'port' => 'Port',
|
||
'port detail' => 'Detail portu',
|
||
'port for self-canceling' => 'Port pro samozrušení',
|
||
'port has been successfully deleted' => 'Port byl úspěšně smazán.',
|
||
'port has been successfully saved' => 'Port byl úspěšně uložen.',
|
||
'port has been successfully updated' => 'Port byl úspěšně upraven.',
|
||
... | ... | |
'show voip account' => 'Zobrazit VoIP účet',
|
||
'show work' => 'Zobrazit práci',
|
||
'show work report' => 'Zobrazit pracovní výkaz',
|
||
'show work reports' => 'Zobrazit pracovní výkazy',
|
||
'show works' => 'Zobrazit práce',
|
||
'signature of applicant member' => 'podpis žadatele - člena',
|
||
'signature and stamp' => 'Podpis a razítko',
|
freenetis/branches/testing/application/controllers/members.php | ||
---|---|---|
__('Show works')
|
||
);
|
||
}
|
||
|
||
// user's work reports link
|
||
if ($member->id != 1 &&
|
||
$this->acl_check_view('Users_Controller', 'work', $member->id))
|
||
{
|
||
$user_links[] = html::anchor(
|
||
'work_reports/show_by_user/'.$user->id,
|
||
__('Show work reports')
|
||
);
|
||
}
|
||
|
||
if ($member->type != $former_type_id)
|
||
{
|
freenetis/branches/testing/application/views/users/show.php | ||
---|---|---|
if ($this->acl_check_view('Devices_Controller', 'devices', $user_data->member_id))
|
||
$links[] = html::anchor('devices/show_by_user/'.$user_data->id,__('Show devices'));
|
||
if ($user_data->id <> 1 && $this->acl_check_view('Users_Controller', 'work', $user_data->member_id))
|
||
{
|
||
$links[] = html::anchor('works/show_by_user/'.$user_data->id,__('Show works'));
|
||
$links[] = html::anchor('work_reports/show_by_user/'.$user_data->id,__('Show work reports'));
|
||
}
|
||
if ($this->acl_check_edit(get_class($this),'password',$user_data->member_id))
|
||
$links[] = html::anchor('users/change_password/'.$user_data->id,__('Change password'));
|
||
if ($this->acl_check_edit(get_class($this), 'application_password', $user_data->member_id))
|
Také k dispozici: Unified diff
Na profily clena a uzivatele pridan odkaz na zobrazeni jejich pracovnich vykazu.