forked from pelican-dev/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New translations users.php (Italian)
- Loading branch information
1 parent
967de6b
commit 610bb60
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
return [ | ||
'permissions' => [ | ||
'websocket_*' => 'Allows access to the websocket for this server.', | ||
'control_console' => 'Allows the user to send data to the server console.', | ||
'control_start' => 'Allows the user to start the server instance.', | ||
'control_stop' => 'Allows the user to stop the server instance.', | ||
'control_restart' => 'Allows the user to restart the server instance.', | ||
'control_kill' => 'Allows the user to kill the server instance.', | ||
'user_create' => 'Allows the user to create new user accounts for the server.', | ||
'user_read' => 'Allows the user permission to view users associated with this server.', | ||
'user_update' => 'Allows the user to modify other users associated with this server.', | ||
'user_delete' => 'Allows the user to delete other users associated with this server.', | ||
'file_create' => 'Allows the user permission to create new files and directories.', | ||
'file_read' => 'Allows the user to see files and folders associated with this server instance, as well as view their contents.', | ||
'file_update' => 'Allows the user to update files and folders associated with the server.', | ||
'file_delete' => 'Allows the user to delete files and directories.', | ||
'file_archive' => 'Allows the user to create file archives and decompress existing archives.', | ||
'file_sftp' => 'Allows the user to perform the above file actions using a SFTP client.', | ||
'allocation_read' => 'Allows access to the server allocation management pages.', | ||
'allocation_update' => 'Allows user permission to make modifications to the server\'s allocations.', | ||
'database_create' => 'Allows user permission to create a new database for the server.', | ||
'database_read' => 'Allows user permission to view the server databases.', | ||
'database_update' => 'Allows a user permission to make modifications to a database. If the user does not have the "View Password" permission as well they will not be able to modify the password.', | ||
'database_delete' => 'Allows a user permission to delete a database instance.', | ||
'database_view_password' => 'Allows a user permission to view a database password in the system.', | ||
'schedule_create' => 'Allows a user to create a new schedule for the server.', | ||
'schedule_read' => 'Allows a user permission to view schedules for a server.', | ||
'schedule_update' => 'Allows a user permission to make modifications to an existing server schedule.', | ||
'schedule_delete' => 'Allows a user to delete a schedule for the server.', | ||
], | ||
]; |