From 7b0355b8e83c4089b653dfe4545b3ae46b3c2207 Mon Sep 17 00:00:00 2001
From: Michael <Chefkeks@users.noreply.github.com>
Date: Fri, 3 Jun 2016 09:47:59 +0200
Subject: [PATCH] Oops... Fixed translation

First: Thanks for reviewing Jared!
Second: Re-checked all occurrences of `sprintf('%s %s` to make sure other translations are correct. Just found this one here to be not correct, so others are fine.
---
 scp/tickets.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scp/tickets.php b/scp/tickets.php
index 8aeb537f5..95bbf4c9e 100644
--- a/scp/tickets.php
+++ b/scp/tickets.php
@@ -202,9 +202,9 @@ if($_POST && !$errors):
                     $ticket=null;
             } elseif(!$errors['err']) {
                 $errors['err']=sprintf('%s %s',
-                    __('Unable to update %s.'),
-                    __('ticket'),
-                    __('Correct any errors below and try again.'));
+                    sprintf(__('Unable to update %s.'), __('this ticket')),
+                    __('Correct any errors below and try again.')
+                );
             }
             break;
         case 'process':
-- 
GitLab