forked from Alex/Pterodactyl-Panel
6810375d2b
This commit implements an interface into the Admin Panel that allows users to be viewed, modified, and deleted.
36 lines
885 B
PHP
36 lines
885 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Standalone Pterodactyl Language Strings
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
'login' => 'Login',
|
|
'password' => 'Password',
|
|
'email' => 'Email',
|
|
'whoops' => 'Whoops',
|
|
'success' => 'Success',
|
|
'location' => 'Location',
|
|
'node' => 'Node',
|
|
'connection' => 'Connection',
|
|
'language' => 'Language',
|
|
'close' => 'Close',
|
|
'start' => 'Start',
|
|
'stop' => 'Stop',
|
|
'restart' => 'Restart',
|
|
'save' => 'Save',
|
|
'enabled' => 'Enabled',
|
|
'disabled' => 'Disabled',
|
|
'submit' => 'Submit',
|
|
'current_password' => 'Current Password',
|
|
'again' => 'Again',
|
|
'registered' => 'Registered',
|
|
'root_administrator' => 'Root Administrator',
|
|
'yes' => 'Yes',
|
|
'no' => 'No'
|
|
|
|
];
|