Skip to content
Snippets Groups Projects
Commit 3b856bd0 authored by Chefkeks's avatar Chefkeks
Browse files

i18n: Add a few forgotten strings

After testing 1.9.4 I noticed that these strings are not yet included in the translation. So this is the (hopefully correct) pull request to add them ;)
parent ef79e444
No related branches found
No related tags found
No related merge requests found
...@@ -158,12 +158,12 @@ if($thisstaff->canAssignTickets()) ...@@ -158,12 +158,12 @@ if($thisstaff->canAssignTickets())
$options[]=array('action'=>($ticket->isAssigned()?__('Reassign'):__('Assign')),'url'=>"tickets.php?id=$tid#assign"); $options[]=array('action'=>($ticket->isAssigned()?__('Reassign'):__('Assign')),'url'=>"tickets.php?id=$tid#assign");
if($thisstaff->canTransferTickets()) if($thisstaff->canTransferTickets())
$options[]=array('action'=>'Transfer','url'=>"tickets.php?id=$tid#transfer"); $options[]=array('action'=>__('Transfer'),'url'=>"tickets.php?id=$tid#transfer");
$options[]=array('action'=>'Post Note','url'=>"tickets.php?id=$tid#note"); $options[]=array('action'=>__('Post Note'),'url'=>"tickets.php?id=$tid#note");
if($thisstaff->canEditTickets()) if($thisstaff->canEditTickets())
$options[]=array('action'=>'Edit Ticket','url'=>"tickets.php?id=$tid&a=edit"); $options[]=array('action'=>__('Edit Ticket'),'url'=>"tickets.php?id=$tid&a=edit");
if($options) { if($options) {
echo '<ul class="tip_menu">'; echo '<ul class="tip_menu">';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment