i found the solution of this issue in osticket 1.18
in ajax.tickets.php line 694 replce this script :
':title' => sprintf(__('Ticket #%s: %s %s'),
$ticket->getNumber(),
__('Update'),
$field->getLabel()
),
with this :
':title' => __(
'Ticket #' . $ticket->getNumber() . ': ' . __('Update') . ' ' . $field->getLabel()
),