From b628c75b9e0dceacc95f0f938d5b63b00cd38a96 Mon Sep 17 00:00:00 2001
From: Michael <Chefkeks@users.noreply.github.com>
Date: Fri, 3 Feb 2017 10:49:30 +0100
Subject: [PATCH] Fixes #3650

Actually the issue and the fix are in https://github.com/osTicket/osTicket/issues/3650, just made this PR so it's easier to merge.
---
 include/staff/templates/tickets.tmpl.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/staff/templates/tickets.tmpl.php b/include/staff/templates/tickets.tmpl.php
index 71dc0470a..dc3a8804d 100644
--- a/include/staff/templates/tickets.tmpl.php
+++ b/include/staff/templates/tickets.tmpl.php
@@ -85,7 +85,7 @@ TicketForm::ensureDynamicDataView();
     if ($total) {
         echo '<strong>'.$pageNav->showing().'</strong>';
     } else {
-        echo sprintf(__('%s does not have any tickets'), $user? 'User' : 'Organization');
+        echo sprintf(__('%s does not have any tickets'), $user? __('User') : __('Organization'));
     }
    ?>
 </div>
-- 
GitLab