mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Support: Translate operations result messages
This commit is contained in:
parent
1b510ca6a3
commit
6cc68b5480
3 changed files with 15 additions and 6 deletions
|
@ -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"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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:";
|
||||||
|
|
|
@ -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" = "Вы можете пригласить своих друзей или знакомых в сеть с помощью индивидуальной ссылки:";
|
||||||
|
|
Loading…
Reference in a new issue