Add subuser list and new subuser views

Holy 🐄 translations are annoying to implement for these views.
This commit is contained in:
Dane Everitt 2017-01-20 23:39:37 -05:00
parent 994588c82d
commit 3d2278ba3e
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
6 changed files with 668 additions and 1 deletions

View file

@ -6,6 +6,166 @@ return [
'header' => 'Server Console',
'header_sub' => 'Control your server in real time.',
],
'users' => [
'header' => 'Manage Users',
'header_sub' => 'Control who can access your server.',
'configure' => 'Configure Permissions',
'list' => 'Accounts with Access',
'add' => 'Add New Subuser',
'new' => [
'header' => 'Add New User',
'header_sub' => 'Add a new user with permissions to this server.',
'email' => 'Email Address',
'email_help' => 'Enter the email address for the user you wish to invite to manage this server.',
'power_header' => 'Power Management',
'file_header' => 'File Management',
'subuser_header' => 'Subuser Management',
'server_header' => 'Server Management',
'task_header' => 'Task Management',
'sftp_header' => 'SFTP Management',
'db_header' => 'Database Management',
'start' => [
'title' => 'Start Server',
'description' => 'Allows user to start the server.',
],
'stop' => [
'title' => 'Stop Server',
'description' => 'Allows user to stop the server.',
],
'restart' => [
'title' => 'Stop Server',
'description' => 'Allows user to restart the server.',
],
'kill' => [
'title' => 'Stop Server',
'description' => 'Allows user to kill the server process.',
],
'command' => [
'title' => 'Send Console Command',
'description' => 'Allows sending a command from the console. If the user does not have stop or restart permissions they cannot send the application\'s stop command.',
],
'list_files' => [
'title' => 'List Files',
'description' => 'Allows user to list all files and folders on the server but not view file contents.',
],
'edit_files' => [
'title' => 'Edit Files',
'description' => 'Allows user to open a file for viewing only.',
],
'save_files' => [
'title' => 'Save Files',
'description' => 'Allows user to save modified file contents.',
],
'move_files' => [
'title' => 'Rename & Move Files',
'description' => 'Allows user to move and rename files and folders on the filesystem.',
],
'copy_files' => [
'title' => 'Copy Files',
'description' => 'Allows user to copy files and folders on the filesystem.',
],
'compress_files' => [
'title' => 'Compress Files',
'description' => 'Allows user to make archives of files and folders on the system.',
],
'decompress_files' => [
'title' => 'Decompress Files',
'description' => 'Allows user to decompress .zip and .tar(.gz) archives.',
],
'create_files' => [
'title' => 'Create Files',
'description' => 'Allows user to create a new file within the panel.',
],
'upload_files' => [
'title' => 'Upload Files',
'description' => 'Allows user to upload files through the file manager.',
],
'delete_files' => [
'title' => 'Delete Files',
'description' => 'Allows user to delete files from the system.',
],
'download_files' => [
'title' => 'Download Files',
'description' => 'Allows user to download files. If a user is given this permission they can download and view file contents even if that permission is not assigned on the panel.',
],
'list_subusers' => [
'title' => 'List Subusers',
'description' => 'Allows user to view a listing of all subusers assigned to the server.',
],
'view_subuser' => [
'title' => 'View Subuser',
'description' => 'Allows user to view permissions assigned to subusers.',
],
'edit_subuser' => [
'title' => 'Edit Subuser',
'description' => 'Allows a user to edit permissions assigned to other subusers.',
],
'create_subuser' => [
'title' => 'Create Subuser',
'description' => 'Allows user to create additional subusers on the server.',
],
'delete_subuser' => [
'title' => 'Delete Subuser',
'description' => 'Allows a user to delete other subusers on the server.',
],
'set_connection' => [
'title' => 'Set Default Connection',
'description' => 'Allows user to set the default connection used for a server as well as view avaliable ports.',
],
'view_startup' => [
'title' => 'View Startup Command',
'description' => 'Allows user to view the startup command and associated variables for a server.',
],
'edit_startup' => [
'title' => 'Edit Startup Command',
'description' => 'Allows a user to modify startup variables for a server.',
],
'list_tasks' => [
'title' => 'List Tasks',
'description' => 'Allows a user to list all tasks (enabled and disabled) on a server.',
],
'view_task' => [
'title' => 'View Task',
'description' => 'Allows a user to view a specific task\'s details.',
],
'toggle_task' => [
'title' => 'Toggle Task',
'description' => 'Allows a user to toggle a task on or off.',
],
'queue_task' => [
'title' => 'Queue Task',
'description' => 'Allows a user to queue a task to run on next cycle.',
],
'create_task' => [
'title' => 'Create Task',
'description' => 'Allows a user to create new tasks.',
],
'delete_task' => [
'title' => 'Delete Task',
'description' => 'Allows a user to delete a task.',
],
'view_sftp' => [
'title' => 'View SFTP Details',
'description' => 'Allows user to view the server\'s SFTP information but not the password.',
],
'view_sftp_password' => [
'title' => 'View SFTP Password',
'description' => 'Allows user to view the SFTP password for the server.',
],
'reset_sftp' => [
'title' => 'Reset SFTP Password',
'description' => 'Allows user to change the SFTP password for the server.',
],
'view_databases' => [
'title' => 'View Database Details',
'description' => 'Allows user to view all databases associated with this server including the usernames and passwords for the databases.',
],
'reset_db_password' => [
'title' => 'Reset Database Password',
'description' => 'Allows a user to reset passwords for databases.',
],
],
],
'files' => [
'header' => 'File Manager',
'header_sub' => 'Manage all of your files directly from the web.',

View file

@ -50,4 +50,5 @@ return [
'make_primary' => 'Make Primary',
'none' => 'None',
'cancel' => 'Cancel',
'created_at' => 'Created At',
];