18 lines
736 B
PHP
18 lines
736 B
PHP
<?php
|
||
/**
|
||
* Pterodactyl - Panel
|
||
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
||
*
|
||
* This software is licensed under the terms of the MIT license.
|
||
* https://opensource.org/licenses/MIT
|
||
*/
|
||
|
||
return [
|
||
'exceptions' => [
|
||
'user_has_servers' => 'Невозможно удалить пользователя с активными серверами, подключенными к его учетной записи. Пожалуйста, удалите их серверы, прежде чем продолжить.',
|
||
],
|
||
'notices' => [
|
||
'account_created' => 'Аккаунт успешно создан.',
|
||
'account_updated' => 'Аккаунт успешно обновлен.',
|
||
],
|
||
];
|