Support: Translate operations result messages

This commit is contained in:
Maxim Leshchenko 2021-12-10 18:52:32 +02:00
parent 1b510ca6a3
commit 6cc68b5480
No known key found for this signature in database
GPG key ID: BB9C44A8733FBEEE
3 changed files with 15 additions and 6 deletions

View file

@ -4,10 +4,7 @@ use openvk\Web\Models\Entities\Ticket;
use openvk\Web\Models\Repositories\Tickets; use openvk\Web\Models\Repositories\Tickets;
use openvk\Web\Models\Entities\TicketComment; use openvk\Web\Models\Entities\TicketComment;
use openvk\Web\Models\Repositories\TicketComments; use openvk\Web\Models\Repositories\TicketComments;
use openvk\Web\Models\RowModel;
use openvk\Web\Util\Telegram; use openvk\Web\Util\Telegram;
use Nette\Database\Table\ActiveRow;
use Chandler\Database\DatabaseConnection;
use Chandler\Session\Session; use Chandler\Session\Session;
use Netcarver\Textile; use Netcarver\Textile;
@ -62,7 +59,7 @@ final class SupportPresenter extends OpenVKPresenter
header("HTTP/1.1 302 Found"); header("HTTP/1.1 302 Found");
header("Location: /support/view/" . $ticket->getId()); header("Location: /support/view/" . $ticket->getId());
} else { } else {
$this->flashFail("err", "Ошибка", "Вы не ввели имя или текст"); $this->flashFail("err", tr("error"), tr("you_have_not_entered_name_or_text"));
} }
} }
} }
@ -154,7 +151,7 @@ final class SupportPresenter extends OpenVKPresenter
header("HTTP/1.1 302 Found"); header("HTTP/1.1 302 Found");
header("Location: /support/view/" . $id); header("Location: /support/view/" . $id);
} else { } else {
$this->flashFail("err", "Ошибка", "Вы не ввели текст"); $this->flashFail("err", tr("error"), tr("you_have_not_entered_text"));
} }
} }
} }
@ -199,7 +196,7 @@ final class SupportPresenter extends OpenVKPresenter
$ticket->save(); $ticket->save();
} }
$this->flashFail("succ", "Тикет изменён", "Изменения вступят силу через несколько секунд."); $this->flashFail("succ", tr("ticket_changed"), tr("ticket_changed_comment"));
} }
} }

View file

@ -557,6 +557,12 @@
"author" = "Author"; "author" = "Author";
"you_have_not_entered_text" = "You have not entered any text";
"you_have_not_entered_name_or_text" = "You did not enter a name or text";
"support_ticket_changed" = "Ticket changed";
"support_ticket_changed_comment" = "The changes will take effect in a few seconds.";
/* Invite */ /* Invite */
"invite" = "Invite"; "invite" = "Invite";
"you_can_invite" = "You can invite your friends or acquaintances to the network using an individual link:"; "you_can_invite" = "You can invite your friends or acquaintances to the network using an individual link:";

View file

@ -582,6 +582,12 @@
"author" = "Автор"; "author" = "Автор";
"you_have_not_entered_text" = "Вы не ввели текст";
"you_have_not_entered_name_or_text" = "Вы не ввели имя или текст";
"support_ticket_changed" = "Тикет изменён";
"support_ticket_changed_comment" = "Изменения вступят силу через несколько секунд.";
/* Invite */ /* Invite */
"invite" = "Пригласить"; "invite" = "Пригласить";
"you_can_invite" = "Вы можете пригласить своих друзей или знакомых в сеть с помощью индивидуальной ссылки:"; "you_can_invite" = "Вы можете пригласить своих друзей или знакомых в сеть с помощью индивидуальной ссылки:";