From 3b856bd084f572ee51cfd49d308564dc694fa96d Mon Sep 17 00:00:00 2001 From: Chefkeks <Chefkeks@users.noreply.github.com> Date: Wed, 29 Oct 2014 11:27:14 +0100 Subject: [PATCH] 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 ;) --- include/staff/templates/ticket-preview.tmpl.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/staff/templates/ticket-preview.tmpl.php b/include/staff/templates/ticket-preview.tmpl.php index 92d120563..5e2d2219b 100644 --- a/include/staff/templates/ticket-preview.tmpl.php +++ b/include/staff/templates/ticket-preview.tmpl.php @@ -158,12 +158,12 @@ if($thisstaff->canAssignTickets()) $options[]=array('action'=>($ticket->isAssigned()?__('Reassign'):__('Assign')),'url'=>"tickets.php?id=$tid#assign"); 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()) - $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) { echo '<ul class="tip_menu">'; -- GitLab