From 83e0da535bafcc7b0f935a12b4803003ba6a715e Mon Sep 17 00:00:00 2001
From: Michael <Chefkeks@users.noreply.github.com>
Date: Mon, 18 Apr 2016 11:14:45 +0200
Subject: [PATCH] Update ajax.tickets.php

Fix translation so it makes sense.
Before: "Unable to change status for 2 any of the selected tickets" - sounds wired
After: "Unable to change status of 2 selected tickets" - sounds correct and fits into the rest of the translation scheme ;)
---
 include/ajax.tickets.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/ajax.tickets.php b/include/ajax.tickets.php
index 74bbd13e5..15dc6022a 100644
--- a/include/ajax.tickets.php
+++ b/include/ajax.tickets.php
@@ -1024,7 +1024,7 @@ class TicketsAjaxAPI extends AjaxController {
             if (!$i) {
                 $errors['err'] = $errors['err']
                     ?: sprintf(__('Unable to change status for %s'),
-                        _N('the selected ticket', 'any of the selected tickets', $count));
+                        _N('selected ticket', 'selected tickets', $count));
             }
             else {
                 // Assume success
-- 
GitLab