Fixed missing translation strings

This commit is contained in:
Pinga 2024-02-19 14:33:15 +02:00
parent 4bfdca752f
commit 26c983a0b2
15 changed files with 570 additions and 45 deletions

View file

@ -283,7 +283,7 @@ class SupportController extends Controller
);
$this->container->get('flash')->addMessage('success', 'Ticket has been escalated successfully');
return $response->withHeader('Location', '/ticket/'.$ticket_id)->withStatus(302);
} else if ($action === 'reopen') {
} else if ($action === 'reopen') {
$db->update(
'support_tickets',
[
@ -294,7 +294,7 @@ class SupportController extends Controller
'id' => $ticket_id
]
);
$this->container->get('flash')->addMessage('success', 'Ticket has been escalated successfully');
$this->container->get('flash')->addMessage('success', 'Ticket has been reopened successfully');
return $response->withHeader('Location', '/ticket/'.$ticket_id)->withStatus(302);
} else {
$this->container->get('flash')->addMessage('error', 'Incorrect action specified');