Path: blob/1.0-develop/resources/lang/en/activity.php
7460 views
<?php12/**3* Contains all of the translation strings for different activity log4* events. These should be keyed by the value in front of the colon (:)5* in the event name. If there is no colon present, they should live at6* the top level.7*/8return [9'auth' => [10'fail' => 'Failed log in',11'success' => 'Logged in',12'password-reset' => 'Password reset',13'reset-password' => 'Requested password reset',14'checkpoint' => 'Two-factor authentication requested',15'recovery-token' => 'Used two-factor recovery token',16'token' => 'Solved two-factor challenge',17'ip-blocked' => 'Blocked request from unlisted IP address for :identifier',18'sftp' => [19'fail' => 'Failed SFTP log in',20],21],22'user' => [23'account' => [24'email-changed' => 'Changed email from :old to :new',25'password-changed' => 'Changed password',26],27'api-key' => [28'create' => 'Created new API key :identifier',29'delete' => 'Deleted API key :identifier',30],31'ssh-key' => [32'create' => 'Added SSH key :fingerprint to account',33'delete' => 'Removed SSH key :fingerprint from account',34],35'two-factor' => [36'create' => 'Enabled two-factor auth',37'delete' => 'Disabled two-factor auth',38],39],40'server' => [41'reinstall' => 'Reinstalled server',42'console' => [43'command' => 'Executed ":command" on the server',44],45'power' => [46'start' => 'Started the server',47'stop' => 'Stopped the server',48'restart' => 'Restarted the server',49'kill' => 'Killed the server process',50],51'backup' => [52'download' => 'Downloaded the :name backup',53'delete' => 'Deleted the :name backup',54'restore' => 'Restored the :name backup (deleted files: :truncate)',55'restore-complete' => 'Completed restoration of the :name backup',56'restore-failed' => 'Failed to complete restoration of the :name backup',57'start' => 'Started a new backup :name',58'complete' => 'Marked the :name backup as complete',59'fail' => 'Marked the :name backup as failed',60'lock' => 'Locked the :name backup',61'unlock' => 'Unlocked the :name backup',62],63'database' => [64'create' => 'Created new database :name',65'rotate-password' => 'Password rotated for database :name',66'delete' => 'Deleted database :name',67],68'file' => [69'compress_one' => 'Compressed :directory:file',70'compress_other' => 'Compressed :count files in :directory',71'read' => 'Viewed the contents of :file',72'copy' => 'Created a copy of :file',73'create-directory' => 'Created directory :directory:name',74'decompress' => 'Decompressed :files in :directory',75'delete_one' => 'Deleted :directory:files.0',76'delete_other' => 'Deleted :count files in :directory',77'download' => 'Downloaded :file',78'pull' => 'Downloaded a remote file from :url to :directory',79'rename_one' => 'Renamed :directory:files.0.from to :directory:files.0.to',80'rename_other' => 'Renamed :count files in :directory',81'write' => 'Wrote new content to :file',82'upload' => 'Began a file upload',83'uploaded' => 'Uploaded :directory:file',84],85'sftp' => [86'denied' => 'Blocked SFTP access due to permissions',87'create_one' => 'Created :files.0',88'create_other' => 'Created :count new files',89'write_one' => 'Modified the contents of :files.0',90'write_other' => 'Modified the contents of :count files',91'delete_one' => 'Deleted :files.0',92'delete_other' => 'Deleted :count files',93'create-directory_one' => 'Created the :files.0 directory',94'create-directory_other' => 'Created :count directories',95'rename_one' => 'Renamed :files.0.from to :files.0.to',96'rename_other' => 'Renamed or moved :count files',97],98'allocation' => [99'create' => 'Added :allocation to the server',100'notes' => 'Updated the notes for :allocation from ":old" to ":new"',101'primary' => 'Set :allocation as the primary server allocation',102'delete' => 'Deleted the :allocation allocation',103],104'schedule' => [105'create' => 'Created the :name schedule',106'update' => 'Updated the :name schedule',107'execute' => 'Manually executed the :name schedule',108'delete' => 'Deleted the :name schedule',109],110'task' => [111'create' => 'Created a new ":action" task for the :name schedule',112'update' => 'Updated the ":action" task for the :name schedule',113'delete' => 'Deleted a task for the :name schedule',114],115'settings' => [116'rename' => 'Renamed the server from :old to :new',117'description' => 'Changed the server description from :old to :new',118],119'startup' => [120'edit' => 'Changed the :variable variable from ":old" to ":new"',121'image' => 'Updated the Docker Image for the server from :old to :new',122],123'subuser' => [124'create' => 'Added :email as a subuser',125'update' => 'Updated the subuser permissions for :email',126'delete' => 'Removed :email as a subuser',127],128],129];130131132