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