misc_pterodactyl-panel/resources/lang/en/base.php

89 lines
4.5 KiB
PHP
Raw Normal View History

<?php
return [
'validation_error' => 'There was an error with one or more fields in the request.',
2017-01-18 01:28:47 +00:00
'errors' => [
'return' => 'Return to Previous Page',
'home' => 'Go Home',
'403' => [
'header' => 'Forbidden',
'desc' => 'You do not have permission to access this resource on this server.',
],
'404' => [
'header' => 'File Not Found',
'desc' => 'We were unable to locate the requested resource on the server.',
],
'installing' => [
'header' => 'Server Installing',
2017-06-16 06:19:27 +00:00
'desc' => 'The requested server is still completing the install process. Please check back in a few minutes, you should receive an email as soon as this process is completed.',
],
'suspended' => [
'header' => 'Server Suspended',
'desc' => 'This server has been suspended and cannot be accessed.',
],
2018-05-04 13:02:51 +00:00
'maintenance' => [
'header' => 'Node Under Maintenance',
2018-05-26 18:00:28 +00:00
'title' => 'Temporarily Unavailable',
'desc' => 'This node is under maintenance, therefore your server can temporarily not be accessed.',
2018-05-04 13:02:51 +00:00
],
2017-01-18 01:28:47 +00:00
],
'index' => [
'header' => 'Your Servers',
2017-05-29 15:45:05 +00:00
'header_sub' => 'Servers you have access to.',
'list' => 'Server List',
],
'api' => [
'index' => [
'list' => 'Your Keys',
'header' => 'Account API',
'header_sub' => 'Manage access keys that allow you to perform actions against the panel.',
2017-01-21 04:48:12 +00:00
'create_new' => 'Create New API key',
2017-11-26 19:26:38 +00:00
'keypair_created' => 'An API key has been successfully generated and is listed below.',
],
'new' => [
'header' => 'New API Key',
'header_sub' => 'Create a new account access key.',
'form_title' => 'Details',
'descriptive_memo' => [
'title' => 'Description',
'description' => 'Enter a brief description of this key that will be useful for reference.',
],
'allowed_ips' => [
'title' => 'Allowed IPs',
'description' => 'Enter a line delimited list of IPs that are allowed to access the API using this key. CIDR notation is allowed. Leave blank to allow any IP.',
],
],
],
'account' => [
'details_updated' => 'Your account details have been successfully updated.',
'invalid_password' => 'The password provided for your account was not valid.',
'header' => 'Your Account',
'header_sub' => 'Manage your account details.',
'update_pass' => 'Update Password',
'update_email' => 'Update Email Address',
'current_password' => 'Current Password',
'new_password' => 'New Password',
'new_password_again' => 'Repeat New Password',
'new_email' => 'New Email Address',
'first_name' => 'First Name',
'last_name' => 'Last Name',
2018-05-13 14:13:51 +00:00
'update_identity' => 'Update Identity',
'username_help' => 'Your username must be unique to your account, and may only contain the following characters: :requirements.',
],
'security' => [
'session_mgmt_disabled' => 'Your host has not enabled the ability to manage account sessions via this interface.',
'header' => 'Account Security',
'header_sub' => 'Control active sessions and 2-Factor Authentication.',
'sessions' => 'Active Sessions',
'2fa_header' => '2-Factor Authentication',
'2fa_token_help' => 'Enter the 2FA Token generated by your app (Google Authenticator, Authy, etc.).',
'disable_2fa' => 'Disable 2-Factor Authentication',
'2fa_enabled' => '2-Factor Authentication is enabled on this account and will be required in order to login to the panel. If you would like to disable 2FA, simply enter a valid token below and submit the form.',
'2fa_disabled' => '2-Factor Authentication is disabled on your account! You should enable 2FA in order to add an extra level of protection on your account.',
'enable_2fa' => 'Enable 2-Factor Authentication',
'2fa_qr' => 'Configure 2FA on Your Device',
'2fa_checkpoint_help' => 'Use the 2FA application on your phone to take a picture of the QR code to the left, or manually enter the code under it. Once you have done so, generate a token and enter it below.',
'2fa_disable_error' => 'The 2FA token provided was not valid. Protection has not been disabled for this account.',
],
];