@gameap/debug 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +222 -0
- package/empty-plugin/plugin.js +7 -0
- package/index.html +111 -0
- package/package.json +38 -0
- package/postcss.config.cjs +12 -0
- package/src/main.ts +328 -0
- package/src/mocks/README.md +68 -0
- package/src/mocks/browser.ts +22 -0
- package/src/mocks/files.ts +347 -0
- package/src/mocks/handlers.ts +940 -0
- package/src/mocks/servers.ts +397 -0
- package/src/mocks/translations-en.json +704 -0
- package/src/mocks/translations-ru.json +692 -0
- package/src/mocks/users.ts +34 -0
- package/src/shims-vue.d.ts +5 -0
- package/tailwind.config.js +25 -0
- package/tsconfig.json +31 -0
- package/tsconfig.node.json +11 -0
- package/vite.config.ts +93 -0
|
@@ -0,0 +1,704 @@
|
|
|
1
|
+
{
|
|
2
|
+
"auth": {
|
|
3
|
+
"sign_in": "Login",
|
|
4
|
+
"sign_up": "Register",
|
|
5
|
+
"login": "Login",
|
|
6
|
+
"username_email": "Username / E-Mail Address",
|
|
7
|
+
"email": "E-Mail Address",
|
|
8
|
+
"password": "Password",
|
|
9
|
+
"confirm_password": "Confirm Password",
|
|
10
|
+
"remember": "Remember Me",
|
|
11
|
+
"forgot_password": "Forgot Your Password?",
|
|
12
|
+
"reset_password": "Reset Password",
|
|
13
|
+
"send_reset_link": "Send Password Reset Link",
|
|
14
|
+
"failed": "These credentials do not match our records.",
|
|
15
|
+
"throttle": "Too many login attempts. Please try again in :seconds seconds.",
|
|
16
|
+
"registration_not_allowed": "Registration not allowed."
|
|
17
|
+
},
|
|
18
|
+
"client_certificates": {
|
|
19
|
+
"title_create": "Create Certificate",
|
|
20
|
+
"title_upload": "Upload Certificate",
|
|
21
|
+
"title_list": "Certificates List",
|
|
22
|
+
"title_view": "Certificate View",
|
|
23
|
+
"client_certificates": "Client Certificates",
|
|
24
|
+
"fingerprint": "Fingerprint",
|
|
25
|
+
"certificate": "Certificate",
|
|
26
|
+
"private_key": "Private Key",
|
|
27
|
+
"private_key_pass": "Private Key Password",
|
|
28
|
+
"list": "Client Certificates List",
|
|
29
|
+
"upload": "Upload Certificate",
|
|
30
|
+
"create": "Create Certificate",
|
|
31
|
+
"view": "View Certificate",
|
|
32
|
+
"signature_type": "Signature Type",
|
|
33
|
+
"country": "Country (C)",
|
|
34
|
+
"state": "State (ST)",
|
|
35
|
+
"locality": "Locality (L)",
|
|
36
|
+
"common_name": "Common Name (CN)",
|
|
37
|
+
"organization": "Organization (O)",
|
|
38
|
+
"organizational_unit": "Organizational Unit (OU)",
|
|
39
|
+
"email": "Email",
|
|
40
|
+
"expires": "Expires On",
|
|
41
|
+
"used": "Used",
|
|
42
|
+
"delete_confirm_msg": "Are you sure you want to delete this Certificate?",
|
|
43
|
+
"upload_success_msg": "Client Certificate uploaded successfully.",
|
|
44
|
+
"create_success_msg": "Client Certificate created successfully",
|
|
45
|
+
"delete_success_msg": "Client Certificate deleted successfully",
|
|
46
|
+
"private_key_not_correspond": "Private key not corresponds to a certificate"
|
|
47
|
+
},
|
|
48
|
+
"dedicated_servers": {
|
|
49
|
+
"title_list": "Dedicated servers list",
|
|
50
|
+
"title_create": "Create Dedicated Server",
|
|
51
|
+
"title_edit": "Edit Dedicated Server",
|
|
52
|
+
"title_view": "View Dedicated Server",
|
|
53
|
+
"dedicated_servers": "Dedicated servers",
|
|
54
|
+
"nodes": "Nodes",
|
|
55
|
+
"create": "Create",
|
|
56
|
+
"edit": "Edit",
|
|
57
|
+
"view": "View",
|
|
58
|
+
"save": "Save",
|
|
59
|
+
"main": "Main",
|
|
60
|
+
"name": "Name",
|
|
61
|
+
"location": "Location",
|
|
62
|
+
"provider": "Provider",
|
|
63
|
+
"ip": "IP",
|
|
64
|
+
"os": "OS",
|
|
65
|
+
"servers_count": "Servers count",
|
|
66
|
+
"download_logs": "Download logs",
|
|
67
|
+
"download_certificates": "Download certificates",
|
|
68
|
+
"scripts": "Scripts",
|
|
69
|
+
"edit_scripts": "Edit scripts",
|
|
70
|
+
"server_certificate": "Server Certificate",
|
|
71
|
+
"client_certificate": "Client Certificate",
|
|
72
|
+
"change_certificate": "Change Certificate",
|
|
73
|
+
"ip_list": "IP List",
|
|
74
|
+
"gdaemon_api_key": "GDaemon API Key",
|
|
75
|
+
"gdaemon_version": "GameAP Daemon version",
|
|
76
|
+
"gdaemon_uptime": "GameAP Daemon uptime",
|
|
77
|
+
"gdaemon_online_servers_count": "GameAP Daemon servers",
|
|
78
|
+
"gdaemon_working_tasks_count": "GameAP Daemon working tasks",
|
|
79
|
+
"gdaemon_waiting_tasks_count": "GameAP Daemon waiting tasks",
|
|
80
|
+
"gdaemon_empty_info": "Failed to get information",
|
|
81
|
+
"game_server_shortcodes": "Game Server Shortcodes",
|
|
82
|
+
"d_shortcodes_host": "server host/ip",
|
|
83
|
+
"d_shortcodes_port": "server port",
|
|
84
|
+
"d_shortcodes_query_port": "server query port",
|
|
85
|
+
"d_shortcodes_rcon_port": "server rcon port",
|
|
86
|
+
"d_shortcodes_dir": "absolute path to server directory",
|
|
87
|
+
"d_shortcodes_id": "server id",
|
|
88
|
+
"d_shortcodes_uuid": "unique id",
|
|
89
|
+
"d_shortcodes_uuid_short": "short unique id",
|
|
90
|
+
"d_shortcodes_game": "game code",
|
|
91
|
+
"d_shortcodes_user": "user name (exist user in dedicated server, not admin panel)",
|
|
92
|
+
"start_restart_shortcodes": "Start/Restart Shortcodes",
|
|
93
|
+
"d_shortcodes_start_command": "Game server start command",
|
|
94
|
+
"console_command_shortcodes": "Script Send Command",
|
|
95
|
+
"d_shortcodes_console_command": "Console command",
|
|
96
|
+
"delete_confirm_msg": "Are you sure you want to delete this node?",
|
|
97
|
+
"create_success_msg": "Dedicated server created successfully",
|
|
98
|
+
"update_success_msg": "Dedicated server updated successfully",
|
|
99
|
+
"delete_success_msg": "Dedicated server deleted successfully",
|
|
100
|
+
"delete_has_servers_error_msg": "You can't delete dedicated server with game servers",
|
|
101
|
+
"autosetup_title": "Dedicated Server Auto Setup",
|
|
102
|
+
"autosetup_description_linux": "<p>You can use this host and token to setup GDaemon via gameapctl:</p>\n<ul class=\"list-disc\">\n<li>Host: <code>:host</code></li>\n<li>Token: <code>:token</code></li>\n</ul>\n<p>Or to auto setup GDaemon run the command on Dedicated Server:</p>",
|
|
103
|
+
"autosetup_description_windows": "<p>Only for Windows</p>\n<ul class=\"list-disc\">\n<li>Go to <a target=\"_blank\" href=\"https://github.com/gameap/gameapctl/releases\">gameapctl releases page</a>\n(<code>https://github.com/gameap/gameapctl/releases</code>)\n </li>\n <li>Select a last version and download an archive for you architecture, most likely gameapctl-vX.Y.Z-windows-amd64.zip will work for you</li>\n<li>Run gameapctl.exe on your Windows host</li>\n<li>Click Install button in a GameAP Daemon section</li>\n<li>Fill in all the fields:<br>\nHost: <code>:host</code><br>\nToken: <code>:token</code>\n</li>\n<li>Push the install button</li>\n </ul>",
|
|
104
|
+
"autosetup_expire_msg": "Your link will expire in 5 minutes.",
|
|
105
|
+
"autosetup_expire_token_msg": "Your token will expire in 5 minutes."
|
|
106
|
+
},
|
|
107
|
+
"games": {
|
|
108
|
+
"title_games_list": "Games List",
|
|
109
|
+
"title_game": "Game",
|
|
110
|
+
"title_game_mod": "Game Mod",
|
|
111
|
+
"title_add": "Add Game",
|
|
112
|
+
"title_add_mod": "Add Game Mod",
|
|
113
|
+
"title_edit": "Edit Game",
|
|
114
|
+
"title_edit_mod": "Edit Game Mod",
|
|
115
|
+
"game": "Game",
|
|
116
|
+
"games": "Games",
|
|
117
|
+
"add": "Add Game",
|
|
118
|
+
"add_mod": "Add Mod",
|
|
119
|
+
"add_first_mod": "Add first mod",
|
|
120
|
+
"upgrade": "Upgrade Games",
|
|
121
|
+
"name": "Name",
|
|
122
|
+
"code": "Code",
|
|
123
|
+
"engine": "Engine",
|
|
124
|
+
"mods": "Mods",
|
|
125
|
+
"run_commands": "Run Commands",
|
|
126
|
+
"main": "Main",
|
|
127
|
+
"servers_commands": "Game Servers Commands",
|
|
128
|
+
"vars": "Vars",
|
|
129
|
+
"fast_rcon_commands": "Fast RCON commands",
|
|
130
|
+
"basic_info": "Basic info",
|
|
131
|
+
"game_info": "Game info",
|
|
132
|
+
"game_mod_info": "Game mod info",
|
|
133
|
+
"steam_info": "Steamcmd settings",
|
|
134
|
+
"repositories": "Repositories",
|
|
135
|
+
"repositories_local": "Local repositories",
|
|
136
|
+
"repositories_remote": "Remote repositories",
|
|
137
|
+
"d_kick_cmd": "Shortcodes: {id} -- player id, {name} -- player name",
|
|
138
|
+
"d_ban_cmd": "Shortcodes: {id} -- player id, {name} -- player name, {time} -- time, {reason}",
|
|
139
|
+
"d_srestart_cmd": "",
|
|
140
|
+
"d_chname_cmd": "Shortcodes: {id} -- player id, {name} -- current player name, {new_name} -- new player name, {time} -- time, {reason}",
|
|
141
|
+
"d_chmap_cmd": "Shortcodes: {map}",
|
|
142
|
+
"d_sendmsg_cmd": "Shortcodes: {msg} -- message",
|
|
143
|
+
"d_passwd_cmd": "Shortcodes: {password} -- password",
|
|
144
|
+
"d_upgrade_confirm": "This action will upgrade games and game mods. Some of the data you have changed may be overwritten. Continue?",
|
|
145
|
+
"var": "Var",
|
|
146
|
+
"default": "Default",
|
|
147
|
+
"info": "Info",
|
|
148
|
+
"admin_var": "Admin Var",
|
|
149
|
+
"description": "Description",
|
|
150
|
+
"rcon_command": "RCON Command",
|
|
151
|
+
"create_success_msg": "Game created successfully",
|
|
152
|
+
"update_success_msg": "Game updated successfully",
|
|
153
|
+
"delete_success_msg": "Game deleted successfully",
|
|
154
|
+
"mod_create_success_msg": "Game Modification created successfully",
|
|
155
|
+
"mod_update_success_msg": "Game Modification updated successfully",
|
|
156
|
+
"mod_delete_success_msg": "Game Modification deleted successfully",
|
|
157
|
+
"upgrade_success_msg": "Games upgraded sucessfully",
|
|
158
|
+
"upgrade_fail_msg": "Unable to upgrade Games",
|
|
159
|
+
"delete_game_confirm_msg": "Are you sure you want to delete the game?",
|
|
160
|
+
"delete_mod_confirm_msg": "Are you sure you want to delete the game modification?"
|
|
161
|
+
},
|
|
162
|
+
"gdaemon_tasks": {
|
|
163
|
+
"title_list": "GDaemon Tasks List",
|
|
164
|
+
"title_view": "GDaemon Task",
|
|
165
|
+
"gdaemon_tasks": "GDaemon Tasks",
|
|
166
|
+
"task": "Task",
|
|
167
|
+
"status": "Status",
|
|
168
|
+
"created": "Created",
|
|
169
|
+
"updated": "Updated",
|
|
170
|
+
"cancel": "Cancel",
|
|
171
|
+
"gsstart": "Start game server",
|
|
172
|
+
"gsstop": "Stop game server",
|
|
173
|
+
"gsrest": "Restart game server",
|
|
174
|
+
"gsupd": "Update game server",
|
|
175
|
+
"gsinst": "Install game server",
|
|
176
|
+
"gsdel": "Delete game server",
|
|
177
|
+
"gsmove": "Move game server",
|
|
178
|
+
"cmdexec": "Execute command",
|
|
179
|
+
"status_waiting": "waiting",
|
|
180
|
+
"status_working": "working",
|
|
181
|
+
"status_error": "error",
|
|
182
|
+
"status_success": "success",
|
|
183
|
+
"status_canceled": "canceled",
|
|
184
|
+
"canceled_success_msg": "Tasks canceled successfully",
|
|
185
|
+
"canceled_fail_msg": "Tasks cancel error: :error",
|
|
186
|
+
"cancel_fail_cannot_be_canceled": "Task cannot be canceled",
|
|
187
|
+
"common_error_msg": "Task completed with an error",
|
|
188
|
+
"common_canceled_msg": "Task canceled",
|
|
189
|
+
"empty_server_start_command": "Empty server start command",
|
|
190
|
+
"empty_server_start_command_doc": "<br>See the documentation to fix the error — \n<a target=\"_blank\" href=\"https://docs.gameap.com/en/troubleshooting.html#empty-server-start-command\">Empty server start command</a>",
|
|
191
|
+
"long_waiting_doc": "It looks like the wait is stuck. If the status does not change for a long time, try looking \n at the documentation to fix the error — <a target=\"_blank\" href=\"https://docs.gameap.com/en/troubleshooting.html#the-information-modal-window-does-not-change-for-a-long-time\">The information modal window does not change for a long time</a>"
|
|
192
|
+
},
|
|
193
|
+
"home": {
|
|
194
|
+
"main": "Main",
|
|
195
|
+
"servers_list": "Servers list",
|
|
196
|
+
"your_version": "Your version",
|
|
197
|
+
"latest_stable": "Latest stable",
|
|
198
|
+
"latest_beta": "Latest beta",
|
|
199
|
+
"latest_unstable": "Latest unstable",
|
|
200
|
+
"old_version": "Your GameAP version is old",
|
|
201
|
+
"actual_version": "Your GameAP version is actual",
|
|
202
|
+
"dev_version": "Your GameAP version is unknown or dev",
|
|
203
|
+
"information": "Information",
|
|
204
|
+
"problems": "Problems",
|
|
205
|
+
"get_help": "Get Help",
|
|
206
|
+
"documentation": "Documentation",
|
|
207
|
+
"api_documentation": "API Documentation",
|
|
208
|
+
"report_bug": "Report a bug",
|
|
209
|
+
"update": "Check for updates",
|
|
210
|
+
"channels": "Channels",
|
|
211
|
+
"support_gameap": "Support GameAP",
|
|
212
|
+
"need_help": "Need help?",
|
|
213
|
+
"d_report_bug": "Please check the PHP version and the availability of the necessary PHP extensions.\n PHP versions should be no lower than the minimum recommended.\n Some functions of the panel will not work correctly without the necessary extensions",
|
|
214
|
+
"send_report": "Send report",
|
|
215
|
+
"system_check": "System check",
|
|
216
|
+
"send_bug_success_msg": "Error message sent successfully",
|
|
217
|
+
"required_extenstions_are_missed": "Required PHP extenstions are missed: :extensions",
|
|
218
|
+
"nodes_is_not_available": "Some dedicated servers are not available. Failed to connect to the following dedicated servers: :nodes",
|
|
219
|
+
"not_writable_directories": "The following directories are not writable: :paths"
|
|
220
|
+
},
|
|
221
|
+
"labels": {
|
|
222
|
+
"name": "Name",
|
|
223
|
+
"the_value": "Value",
|
|
224
|
+
"private_key_pass": "Private Key Password",
|
|
225
|
+
"enabled": "Enabled",
|
|
226
|
+
"os": "Operating system",
|
|
227
|
+
"location": "Location",
|
|
228
|
+
"provider": "Provider",
|
|
229
|
+
"ip": "IP",
|
|
230
|
+
"ram": "RAM",
|
|
231
|
+
"cpu": "CPU",
|
|
232
|
+
"work_path": "Work Path",
|
|
233
|
+
"steamcmd_path": "SteamCMD Path",
|
|
234
|
+
"gdaemon_host": "GDaemon Host",
|
|
235
|
+
"gdaemon_port": "GDaemon Port",
|
|
236
|
+
"gdaemon_api_key": "GDaemon API Key",
|
|
237
|
+
"gdaemon_api_token": "GDaemon API Token",
|
|
238
|
+
"gdaemon_login": "GDaemon Login",
|
|
239
|
+
"gdaemon_password": "GDaemon Password",
|
|
240
|
+
"gdaemon_server_cert": "GDaemon Server Certificate",
|
|
241
|
+
"client_certificate_id": "GDaemon Client Certificate",
|
|
242
|
+
"prefer_install_method": "Prefer Installation Method",
|
|
243
|
+
"script_install": "Script Install",
|
|
244
|
+
"script_reinstall": "Script Reinstall",
|
|
245
|
+
"script_update": "Script Update",
|
|
246
|
+
"script_start": "Script Start",
|
|
247
|
+
"script_pause": "Script Pause",
|
|
248
|
+
"script_unpause": "Script Unpause",
|
|
249
|
+
"script_stop": "Script Stop",
|
|
250
|
+
"script_kill": "Script Kill",
|
|
251
|
+
"script_restart": "Script Restart",
|
|
252
|
+
"script_status": "Script Status",
|
|
253
|
+
"script_stats": "Script Stats",
|
|
254
|
+
"script_get_console": "Script Get Console",
|
|
255
|
+
"script_send_command": "Script Send Command",
|
|
256
|
+
"script_delete": "Script Delete",
|
|
257
|
+
"code": "Code",
|
|
258
|
+
"start_code": "Start Code",
|
|
259
|
+
"engine": "Engine",
|
|
260
|
+
"engine_version": "Engine Version",
|
|
261
|
+
"steam_app_id_linux": "Steam App ID (Linux)",
|
|
262
|
+
"steam_app_id_windows": "Steam App ID (Windows)",
|
|
263
|
+
"steam_app_set_config": "Steam App Set Config",
|
|
264
|
+
"game_code": "Game Code",
|
|
265
|
+
"fast_rcon": "Fast RCON",
|
|
266
|
+
"vars": "Vars",
|
|
267
|
+
"remote_repository_linux": "Remote Repository (Linux)",
|
|
268
|
+
"remote_repository_windows": "Remote Repository (Windows)",
|
|
269
|
+
"local_repository_linux": "Local Repository (Linux)",
|
|
270
|
+
"local_repository_windows": "Local Repository (Windows)",
|
|
271
|
+
"kick_cmd": "Kick Command",
|
|
272
|
+
"ban_cmd": "Ban Command",
|
|
273
|
+
"chname_cmd": "Change Name Command",
|
|
274
|
+
"srestart_cmd": "Server Restart Command",
|
|
275
|
+
"chmap_cmd": "Change Map Command",
|
|
276
|
+
"sendmsg_cmd": "Send Message Command",
|
|
277
|
+
"passwd_cmd": "Set/Change Password Command",
|
|
278
|
+
"start_cmd_linux": "Start Command (Linux)",
|
|
279
|
+
"start_cmd_windows": "Start Command (Windows)",
|
|
280
|
+
"game_server": "Game server",
|
|
281
|
+
"installed": "Installed",
|
|
282
|
+
"blocked": "Blocked",
|
|
283
|
+
"uuid": "UUID",
|
|
284
|
+
"uuid_short": "Short UUID",
|
|
285
|
+
"ds_id": "Dedicated Server",
|
|
286
|
+
"game_id": "Game",
|
|
287
|
+
"game_mod_id": "Game Mod",
|
|
288
|
+
"expires": "Expires",
|
|
289
|
+
"server_port": "Server Port",
|
|
290
|
+
"query_port": "Query Port",
|
|
291
|
+
"rcon_port": "RCON Port",
|
|
292
|
+
"rcon": "RCON Password",
|
|
293
|
+
"dir": "Dir",
|
|
294
|
+
"su_user": "Su User",
|
|
295
|
+
"cpu_limit": "CPU Limit",
|
|
296
|
+
"ram_limit": "RAM Limit",
|
|
297
|
+
"net_limit": "NET Limit",
|
|
298
|
+
"start_command": "Start Command",
|
|
299
|
+
"stop_command": "Stop Command",
|
|
300
|
+
"force_stop_command": "Force Stop Command",
|
|
301
|
+
"restart_command": "Restart Command",
|
|
302
|
+
"login": "Login",
|
|
303
|
+
"email": "Email",
|
|
304
|
+
"current_password": "Current Password",
|
|
305
|
+
"new_password": "New Password",
|
|
306
|
+
"password": "Password",
|
|
307
|
+
"password_confirmation": "Password Confirmation",
|
|
308
|
+
"roles": "Roles",
|
|
309
|
+
"token_name": "Token Name",
|
|
310
|
+
"host": "Host",
|
|
311
|
+
"port": "Port",
|
|
312
|
+
"username": "UserName"
|
|
313
|
+
},
|
|
314
|
+
"main": {
|
|
315
|
+
"actions": "Actions",
|
|
316
|
+
"view": "View",
|
|
317
|
+
"edit": "Edit",
|
|
318
|
+
"delete": "Delete",
|
|
319
|
+
"add": "Add",
|
|
320
|
+
"create": "Create",
|
|
321
|
+
"save": "Save",
|
|
322
|
+
"change": "Change",
|
|
323
|
+
"close": "Close",
|
|
324
|
+
"send": "Send",
|
|
325
|
+
"clear": "Clear",
|
|
326
|
+
"search": "Search",
|
|
327
|
+
"generate": "Generate",
|
|
328
|
+
"upload_file": "Upload file",
|
|
329
|
+
"confirm_message": "Are you sure?",
|
|
330
|
+
"wait": "Please wait...",
|
|
331
|
+
"something_missing": "Something missing",
|
|
332
|
+
"something_went_wrong": "Something went wrong",
|
|
333
|
+
"yes": "Yes",
|
|
334
|
+
"no": "No",
|
|
335
|
+
"more": "More",
|
|
336
|
+
"autoscroll": "Autoscroll",
|
|
337
|
+
"common_admin_error": "Contact an administrator",
|
|
338
|
+
"error": "Error",
|
|
339
|
+
"success": "Success",
|
|
340
|
+
"info": "Info",
|
|
341
|
+
"never": "Never"
|
|
342
|
+
},
|
|
343
|
+
"modules": {
|
|
344
|
+
"modules": "Modules",
|
|
345
|
+
"title": "GameAP Modules",
|
|
346
|
+
"migrate": "Run migrate",
|
|
347
|
+
"installed": "Installed",
|
|
348
|
+
"marketplace": "Marketplace",
|
|
349
|
+
"name": "Module name",
|
|
350
|
+
"description": "Description",
|
|
351
|
+
"keywords": "Keywords",
|
|
352
|
+
"tags": "Tags",
|
|
353
|
+
"install": "Install",
|
|
354
|
+
"update": "Update",
|
|
355
|
+
"enable": "Enable",
|
|
356
|
+
"disable": "Disable",
|
|
357
|
+
"already_installed": "Installed",
|
|
358
|
+
"migrate_success_msg": "Module migrated successfully",
|
|
359
|
+
"install_success_msg": "Module installed successfully",
|
|
360
|
+
"enable_success_msg": "Module enabled successfully",
|
|
361
|
+
"disable_success_msg": "Module disabled successfully",
|
|
362
|
+
"remove_success_msg": "Module removed successfully"
|
|
363
|
+
},
|
|
364
|
+
"navbar": {
|
|
365
|
+
"main": "Home",
|
|
366
|
+
"logs": "Logs",
|
|
367
|
+
"files": "Files",
|
|
368
|
+
"profile": "Profile",
|
|
369
|
+
"admin": "Administration",
|
|
370
|
+
"servers": "Servers",
|
|
371
|
+
"dedicated_servers": "Dedicated servers",
|
|
372
|
+
"game_servers": "Servers",
|
|
373
|
+
"games": "Games",
|
|
374
|
+
"game_mods": "Game mods",
|
|
375
|
+
"gdaemon_tasks": "GDaemon tasks",
|
|
376
|
+
"users": "Users",
|
|
377
|
+
"add_user": "Add user",
|
|
378
|
+
"modules": "Modules",
|
|
379
|
+
"control_modules": "- Modules control panel -",
|
|
380
|
+
"gameap": "GameAP",
|
|
381
|
+
"documentation": "Documentation",
|
|
382
|
+
"api_documentation": "API Documentation",
|
|
383
|
+
"update": "Check for updates",
|
|
384
|
+
"error_report": "Report a bug",
|
|
385
|
+
"help": "Help",
|
|
386
|
+
"donate": "Donate",
|
|
387
|
+
"sign_out": "Sign out",
|
|
388
|
+
"panel_logs": "GameAP logs"
|
|
389
|
+
},
|
|
390
|
+
"pagination": {
|
|
391
|
+
"previous": "« Previous",
|
|
392
|
+
"next": "Next »"
|
|
393
|
+
},
|
|
394
|
+
"passwords": {
|
|
395
|
+
"password": "Passwords must be at least six characters and match the confirmation.",
|
|
396
|
+
"reset": "Your password has been reset!",
|
|
397
|
+
"sent": "We have e-mailed your password reset link!",
|
|
398
|
+
"token": "This password reset token is invalid.",
|
|
399
|
+
"user": "We can"
|
|
400
|
+
},
|
|
401
|
+
"profile": {
|
|
402
|
+
"title": "Profile",
|
|
403
|
+
"login": "Login",
|
|
404
|
+
"email": "Email",
|
|
405
|
+
"name": "Name",
|
|
406
|
+
"roles": "Roles",
|
|
407
|
+
"profile": "Profile",
|
|
408
|
+
"edit": "Edit Profile",
|
|
409
|
+
"change_password": "Change Password",
|
|
410
|
+
"language": "Language",
|
|
411
|
+
"password_not_match_msg": "Your current password does not matches with the password you provided. Please try again.",
|
|
412
|
+
"password_change_success_msg": "Password changed successfully",
|
|
413
|
+
"update_success_msg": "Profile updated successfully",
|
|
414
|
+
"update_with_lang_success_msg": "Profile updated successfully. Reload the page to apply the new language."
|
|
415
|
+
},
|
|
416
|
+
"rcon": {
|
|
417
|
+
"console": "RCON console",
|
|
418
|
+
"players_manage": "Players management",
|
|
419
|
+
"player_name": "Player Name",
|
|
420
|
+
"player_score": "Score",
|
|
421
|
+
"player_ping": "Ping",
|
|
422
|
+
"player_ip": "IP",
|
|
423
|
+
"player_message": "Message",
|
|
424
|
+
"kick": "Kick",
|
|
425
|
+
"ban": "Ban",
|
|
426
|
+
"message": "Message",
|
|
427
|
+
"reason": "Reason",
|
|
428
|
+
"time": "Time (minutes)",
|
|
429
|
+
"modal_title_kick": "Kick :player",
|
|
430
|
+
"modal_title_ban": "Ban :player",
|
|
431
|
+
"modal_title_msg": "Send message to :player",
|
|
432
|
+
"kick_msg_success": "Player kicked",
|
|
433
|
+
"ban_msg_success": "Player banned",
|
|
434
|
+
"message_msg_success": "Message sent"
|
|
435
|
+
},
|
|
436
|
+
"servers": {
|
|
437
|
+
"title_servers_list": "Game Servers List",
|
|
438
|
+
"title_create": "Create Server",
|
|
439
|
+
"title_edit": "Edit Server",
|
|
440
|
+
"title_server": "Game Server",
|
|
441
|
+
"servers": "Servers",
|
|
442
|
+
"game_servers": "Game Servers",
|
|
443
|
+
"file_manager": "File Manager",
|
|
444
|
+
"start": "Start",
|
|
445
|
+
"restart": "Restart",
|
|
446
|
+
"stop": "Stop",
|
|
447
|
+
"control": "Control",
|
|
448
|
+
"update": "Update",
|
|
449
|
+
"reinstall": "Reinstall",
|
|
450
|
+
"status": "Status",
|
|
451
|
+
"commands": "Commands",
|
|
452
|
+
"ip_port": "IP:Port",
|
|
453
|
+
"enabled": "Enabled",
|
|
454
|
+
"not_installed": "not installed",
|
|
455
|
+
"installed": "installed",
|
|
456
|
+
"installation": "installation",
|
|
457
|
+
"disabled": "disabled",
|
|
458
|
+
"blocked": "blocked",
|
|
459
|
+
"offline": "offline",
|
|
460
|
+
"online": "online",
|
|
461
|
+
"name": "Name",
|
|
462
|
+
"game": "Game",
|
|
463
|
+
"game_mod": "Game Mod",
|
|
464
|
+
"tools": "Tools",
|
|
465
|
+
"files": "Files",
|
|
466
|
+
"admin": "Admin",
|
|
467
|
+
"task_scheduler": "Task Scheduler",
|
|
468
|
+
"autostart_setting": "Autostart on crash",
|
|
469
|
+
"update_before_start_setting": "Update server before starting",
|
|
470
|
+
"process_status": "Proccess status",
|
|
471
|
+
"active": "active",
|
|
472
|
+
"inactive": "inactive",
|
|
473
|
+
"last_check": "Last check",
|
|
474
|
+
"query": "Query",
|
|
475
|
+
"query_players": "Players",
|
|
476
|
+
"query_map": "Map",
|
|
477
|
+
"console": "Console",
|
|
478
|
+
"enter_command": "Enter command",
|
|
479
|
+
"not_installed_msg": "Server is not installed",
|
|
480
|
+
"installation_process_msg": "Server installation in progress",
|
|
481
|
+
"disabled_msg": "Server is disabled",
|
|
482
|
+
"blocked_msg": "Server is blocked",
|
|
483
|
+
"offline_console_msg": "Server is offline. The data in the console is up to date at the moment of server stop.",
|
|
484
|
+
"create": "Create",
|
|
485
|
+
"edit": "Edit server",
|
|
486
|
+
"revoke": "Revoke",
|
|
487
|
+
"add_server": "Add server",
|
|
488
|
+
"settings": "Settings",
|
|
489
|
+
"install": "Install server",
|
|
490
|
+
"server_info": "Server Info",
|
|
491
|
+
"basic_info": "Basic Info",
|
|
492
|
+
"ds_ip_ports": "Dedicated server, IP, ports",
|
|
493
|
+
"dedicated_server": "Dedicated Server",
|
|
494
|
+
"game_server": "Game Server",
|
|
495
|
+
"start_command": "Start Command",
|
|
496
|
+
"start_success_msg": "Game Server started successfully",
|
|
497
|
+
"start_fail_msg": "Game Server failed to start",
|
|
498
|
+
"stop_success_msg": "Game Server stopped successfully",
|
|
499
|
+
"stop_fail_msg": "Game Server failed to stop",
|
|
500
|
+
"restart_success_msg": "Game Server restarted successfully",
|
|
501
|
+
"restart_fail_msg": "Game Server failed to restart",
|
|
502
|
+
"create_success_msg": "Game Server created successfully",
|
|
503
|
+
"update_success_msg": "Game Server updated successfully",
|
|
504
|
+
"delete_success_msg": "Game Server deleted successfully",
|
|
505
|
+
"settings_update_success_msg": "Game Server Settings updated successfully",
|
|
506
|
+
"task_success_msg": "Task completed successfully",
|
|
507
|
+
"task_see_log": "See task log for details.",
|
|
508
|
+
"unknown_command_msg": "Unknown server command",
|
|
509
|
+
"d_dir": "Leave blank to set automatically. \n Path relative to the working directory of the dedicated server. \n <br> Example: <strong>servers/my_server</strong>",
|
|
510
|
+
"d_installation_is_stuck": "It looks like the server installation is stuck. ",
|
|
511
|
+
"delete_confirm_msg": "Are you sure to delete game server?",
|
|
512
|
+
"delete_files": "Delete files",
|
|
513
|
+
"starting": "Starting",
|
|
514
|
+
"stopping": "Stopping",
|
|
515
|
+
"restarting": "Restarting",
|
|
516
|
+
"updating": "Updating",
|
|
517
|
+
"installing": "Installing",
|
|
518
|
+
"reinstalling": "Reinstalling",
|
|
519
|
+
"command_progress_waiting": "Waiting task starting",
|
|
520
|
+
"command_progress_executed": "Task is being execuded",
|
|
521
|
+
"command_progress_waiting_status": "Waiting server status",
|
|
522
|
+
"empty_list": "No game servers available",
|
|
523
|
+
"filters": "Filters",
|
|
524
|
+
"select_game_filter_placeholder": "Choose games",
|
|
525
|
+
"select_ip_filter_placeholder": "Choose IP list",
|
|
526
|
+
"select_server": "Select server",
|
|
527
|
+
"server_already_added": "Server already added"
|
|
528
|
+
},
|
|
529
|
+
"servers_tasks": {
|
|
530
|
+
"tasks_title": "Tasks",
|
|
531
|
+
"new_task": "New Task",
|
|
532
|
+
"edit_task": "Edit Task",
|
|
533
|
+
"task": "Task",
|
|
534
|
+
"date": "Date",
|
|
535
|
+
"repeat": "Repeat",
|
|
536
|
+
"once": "Once",
|
|
537
|
+
"endlessly": "Endlessly",
|
|
538
|
+
"no_repeat": "Don't repeat",
|
|
539
|
+
"endlessly_repeat": "Repeat endlessly",
|
|
540
|
+
"custom_repeat": "Custom",
|
|
541
|
+
"repeat_num": "Repeat",
|
|
542
|
+
"repeat_period": "Repeat Period",
|
|
543
|
+
"empty_command": "Empty task command",
|
|
544
|
+
"empty_task_date": "Empty date",
|
|
545
|
+
"empty_period": "Empty task period",
|
|
546
|
+
"empty_period_unit": "Incorrect period unit",
|
|
547
|
+
"minimum_period": "10 minutes is minimum period",
|
|
548
|
+
"invalid_repeat_value": "Invalid repeat value",
|
|
549
|
+
"confirm_remove": "Are you sure to delete task?"
|
|
550
|
+
},
|
|
551
|
+
"sidebar": {
|
|
552
|
+
"profile": "Profile",
|
|
553
|
+
"view_profile": "View profile",
|
|
554
|
+
"logout": "Logout",
|
|
555
|
+
"admin": "Administration",
|
|
556
|
+
"dedicated_servers": "Dedicated servers",
|
|
557
|
+
"game_servers": "Game servers",
|
|
558
|
+
"games": "Games",
|
|
559
|
+
"gdaemon_tasks": "GDaemon tasks",
|
|
560
|
+
"users": "Users",
|
|
561
|
+
"control": "Control",
|
|
562
|
+
"servers": "Servers",
|
|
563
|
+
"gameap": "GameAP",
|
|
564
|
+
"modules": "Modules",
|
|
565
|
+
"update": "Update",
|
|
566
|
+
"support": "Support",
|
|
567
|
+
"forum": "Forum",
|
|
568
|
+
"documentation": "Documentation",
|
|
569
|
+
"help": "Help",
|
|
570
|
+
"report_bug": "Report bug",
|
|
571
|
+
"maximize": "Maximize",
|
|
572
|
+
"minimize": "Minimize"
|
|
573
|
+
},
|
|
574
|
+
"tokens": {
|
|
575
|
+
"generate_token": "Generate New Token",
|
|
576
|
+
"tokens": "Tokens",
|
|
577
|
+
"name": "Token Name",
|
|
578
|
+
"abilities": "Abilities",
|
|
579
|
+
"last_used": "Last Used",
|
|
580
|
+
"delete_confirm_msg": "Are you sure you want to delete the token?",
|
|
581
|
+
"token_created_notification": "Make sure to copy your new personal access token now. You won’t be able to see it again!",
|
|
582
|
+
"token_created_msg": "Token created: :token",
|
|
583
|
+
"token_removed_msg": "Token removed successfully.",
|
|
584
|
+
"create": "Create game server",
|
|
585
|
+
"start": "Start game server",
|
|
586
|
+
"stop": "Stop game server",
|
|
587
|
+
"restart": "Restart game server",
|
|
588
|
+
"update": "Update game server",
|
|
589
|
+
"console": "Access to read and write into game server console",
|
|
590
|
+
"rcon-console": "Access to game server RCON console",
|
|
591
|
+
"rcon-players": "Access to players management on game server",
|
|
592
|
+
"tasks-manage": "Manage game server tasks",
|
|
593
|
+
"settings-manage": "Manage game server settings",
|
|
594
|
+
"read": "Read GameAP Daemon task",
|
|
595
|
+
"abilities_required": "You must select at least one ability",
|
|
596
|
+
"abilities_invalid_format": "Invalid abilities format"
|
|
597
|
+
},
|
|
598
|
+
"users": {
|
|
599
|
+
"title_list": "Users List",
|
|
600
|
+
"title_create": "Create User",
|
|
601
|
+
"title_edit": "Edit User",
|
|
602
|
+
"title_server_permissions_edit": "Edit Server Permission",
|
|
603
|
+
"users": "Users",
|
|
604
|
+
"user": "User",
|
|
605
|
+
"login": "Login",
|
|
606
|
+
"name": "Name",
|
|
607
|
+
"roles": "Roles",
|
|
608
|
+
"create": "Create User",
|
|
609
|
+
"servers": "Servers",
|
|
610
|
+
"servers_privileges_placeholder": "Start typing the server name",
|
|
611
|
+
"game-server-common": "Common Game Server Ability",
|
|
612
|
+
"game-server-start": "Start Game Server",
|
|
613
|
+
"game-server-stop": "Stop Game Server",
|
|
614
|
+
"game-server-restart": "Restart Game Server",
|
|
615
|
+
"game-server-pause": "Pause Game Server",
|
|
616
|
+
"game-server-update": "Update Game Server",
|
|
617
|
+
"game-server-files": "Access to filemanager",
|
|
618
|
+
"game-server-tasks": "Access to task scheduler",
|
|
619
|
+
"game-server-settings": "Access to settings",
|
|
620
|
+
"game-server-console-view": "Access to read server console",
|
|
621
|
+
"game-server-console-send": "Access to send console commands",
|
|
622
|
+
"game-server-rcon-console": "RCON console",
|
|
623
|
+
"game-server-rcon-players": "RCON players manage",
|
|
624
|
+
"update_password": "Update Password",
|
|
625
|
+
"server_permission_edit": "Edit Server Permission",
|
|
626
|
+
"delete_confirm_msg": "Are you sure you want to delete this user?",
|
|
627
|
+
"create_success_msg": "User created successfully",
|
|
628
|
+
"update_success_msg": "User updated successfully",
|
|
629
|
+
"delete_success_msg": "User deleted successfully",
|
|
630
|
+
"privileges_saved_success_msg": "Privileges saved successfully",
|
|
631
|
+
"delete_self_error_msg": "You can not delete yourself"
|
|
632
|
+
},
|
|
633
|
+
"validation": {
|
|
634
|
+
"accepted": "The :attribute must be accepted.",
|
|
635
|
+
"accepted_if": "The :attribute must be accepted when :other is :value.",
|
|
636
|
+
"active_url": "The :attribute is not a valid URL.",
|
|
637
|
+
"after": "The :attribute must be a date after :date.",
|
|
638
|
+
"after_or_equal": "The :attribute must be a date after or equal to :date.",
|
|
639
|
+
"alpha": "The :attribute must only contain letters.",
|
|
640
|
+
"alpha_dash": "The :attribute must only contain letters, numbers, dashes and underscores.",
|
|
641
|
+
"alpha_num": "The :attribute must only contain letters and numbers.",
|
|
642
|
+
"array": "The :attribute must contain :size items.",
|
|
643
|
+
"before": "The :attribute must be a date before :date.",
|
|
644
|
+
"before_or_equal": "The :attribute must be a date before or equal to :date.",
|
|
645
|
+
"numeric": "The :attribute must be :size.",
|
|
646
|
+
"file": "The :attribute must be :size kilobytes.",
|
|
647
|
+
"string": "The :attribute must be a string.",
|
|
648
|
+
"boolean": "The :attribute field must be true or false.",
|
|
649
|
+
"confirmed": "The :attribute confirmation does not match.",
|
|
650
|
+
"current_password": "The password is incorrect.",
|
|
651
|
+
"date": "The :attribute is not a valid date.",
|
|
652
|
+
"date_equals": "The :attribute must be a date equal to :date.",
|
|
653
|
+
"date_format": "The :attribute does not match the format :format.",
|
|
654
|
+
"declined": "The :attribute must be declined.",
|
|
655
|
+
"declined_if": "The :attribute must be declined when :other is :value.",
|
|
656
|
+
"different": "The :attribute and :other must be different.",
|
|
657
|
+
"digits": "The :attribute must be :digits digits.",
|
|
658
|
+
"digits_between": "The :attribute must be between :min and :max digits.",
|
|
659
|
+
"dimensions": "The :attribute has invalid image dimensions.",
|
|
660
|
+
"distinct": "The :attribute field has a duplicate value.",
|
|
661
|
+
"email": "The :attribute must be a valid email address.",
|
|
662
|
+
"ends_with": "The :attribute must end with one of the following: :values.",
|
|
663
|
+
"enum": "The selected :attribute is invalid.",
|
|
664
|
+
"exists": "The selected :attribute is invalid.",
|
|
665
|
+
"filled": "The :attribute field must have a value.",
|
|
666
|
+
"image": "The :attribute must be an image.",
|
|
667
|
+
"in": "The selected :attribute is invalid.",
|
|
668
|
+
"in_array": "The :attribute field does not exist in :other.",
|
|
669
|
+
"integer": "The :attribute must be an integer.",
|
|
670
|
+
"ip": "The :attribute must be a valid IP address.",
|
|
671
|
+
"ipv4": "The :attribute must be a valid IPv4 address.",
|
|
672
|
+
"ipv6": "The :attribute must be a valid IPv6 address.",
|
|
673
|
+
"json": "The :attribute must be a valid JSON string.",
|
|
674
|
+
"mac_address": "The :attribute must be a valid MAC address.",
|
|
675
|
+
"mimes": "The :attribute must be a file of type: :values.",
|
|
676
|
+
"mimetypes": "The :attribute must be a file of type: :values.",
|
|
677
|
+
"multiple_of": "The :attribute must be a multiple of :value.",
|
|
678
|
+
"not_in": "The selected :attribute is invalid.",
|
|
679
|
+
"not_regex": "The :attribute format is invalid.",
|
|
680
|
+
"password": "The password is incorrect.",
|
|
681
|
+
"present": "The :attribute field must be present.",
|
|
682
|
+
"prohibited": "The :attribute field is prohibited.",
|
|
683
|
+
"prohibited_if": "The :attribute field is prohibited when :other is :value.",
|
|
684
|
+
"prohibited_unless": "The :attribute field is prohibited unless :other is in :values.",
|
|
685
|
+
"prohibits": "The :attribute field prohibits :other from being present.",
|
|
686
|
+
"regex": "The :attribute format is invalid.",
|
|
687
|
+
"required": "The :attribute field is required.",
|
|
688
|
+
"required_array_keys": "The :attribute field must contain entries for: :values.",
|
|
689
|
+
"required_if": "The :attribute field is required when :other is :value.",
|
|
690
|
+
"required_unless": "The :attribute field is required unless :other is in :values.",
|
|
691
|
+
"required_with": "The :attribute field is required when :values is present.",
|
|
692
|
+
"required_with_all": "The :attribute field is required when :values are present.",
|
|
693
|
+
"required_without": "The :attribute field is required when :values is not present.",
|
|
694
|
+
"required_without_all": "The :attribute field is required when none of :values are present.",
|
|
695
|
+
"same": "The :attribute and :other must match.",
|
|
696
|
+
"starts_with": "The :attribute must start with one of the following: :values.",
|
|
697
|
+
"timezone": "The :attribute must be a valid timezone.",
|
|
698
|
+
"unique": "The :attribute has already been taken.",
|
|
699
|
+
"uploaded": "The :attribute failed to upload.",
|
|
700
|
+
"url": "The :attribute must be a valid URL.",
|
|
701
|
+
"uuid": "The :attribute must be a valid UUID.",
|
|
702
|
+
"rule-name": "custom-message"
|
|
703
|
+
}
|
|
704
|
+
}
|