Phase3
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 9s
CI / Go — node-agent tests (push) Failing after 9s
CI / Go — edge-gateway build (push) Successful in 13s

This commit is contained in:
smueller
2026-06-26 12:17:26 +02:00
parent c4077d4673
commit 9b061c3ee7
92 changed files with 4128 additions and 146 deletions

View File

@@ -127,7 +127,10 @@
"planInvalid": "Invalid plan selected",
"versionRequired": "Minecraft version is required",
"softwareRequired": "Software family is required",
"eulaRequired": "You must accept the Minecraft EULA"
"eulaRequired": "You must accept the Minecraft EULA",
"motdMax": "MOTD must be at most 256 characters",
"maxPlayersMin": "At least 1 player required",
"maxPlayersMax": "At most 200 players allowed"
},
"servers": {
"title": "Servers",
@@ -180,6 +183,97 @@
"errors": {
"generic": "Something went wrong. Please try again.",
"loadFailed": "Could not load servers."
},
"tabs": {
"navigation": "Server sections",
"overview": "Overview",
"console": "Console",
"files": "Files",
"properties": "Properties",
"players": "Players"
},
"console": {
"loading": "Loading…",
"notRunning": "The console is only available while the server is running. Start the server from the overview tab.",
"connecting": "Connecting…",
"connected": "Connected",
"disconnected": "Disconnected",
"clear": "Clear log",
"commandPlaceholder": "Enter server command…",
"send": "Send",
"errors": {
"connectionFailed": "Could not connect to the console."
}
},
"files": {
"loading": "Loading…",
"browser": "File browser",
"editor": "Editor",
"up": "Up",
"empty": "This directory is empty.",
"selectFile": "Select a file to view or edit.",
"readOnlyStopped": "Read-only while the server is stopped.",
"notAvailable": "Files are only available when the server is running or stopped.",
"truncated": "File was truncated for display. Edit with care.",
"save": "Save",
"saving": "Saving…",
"saved": "File saved.",
"errors": {
"loadFailed": "Could not load directory.",
"readFailed": "Could not read file.",
"saveFailed": "Could not save file."
}
},
"properties": {
"title": "Server properties",
"description": "Edit common server.properties settings. Unknown properties are preserved on the server.",
"loading": "Loading…",
"motd": "MOTD",
"gamemode": "Gamemode",
"difficulty": "Difficulty",
"maxPlayers": "Max players",
"pvp": "PVP",
"whitelist": "Whitelist",
"hardcore": "Hardcore",
"onlineMode": "Online mode",
"enableCommandBlock": "Command blocks",
"allowFlight": "Allow flight",
"viewDistance": "View distance",
"simulationDistance": "Simulation distance",
"spawnProtection": "Spawn protection",
"save": "Save changes",
"saving": "Saving…",
"saved": "Properties saved.",
"gamemodes": {
"survival": "Survival",
"creative": "Creative",
"adventure": "Adventure",
"spectator": "Spectator"
},
"difficulties": {
"peaceful": "Peaceful",
"easy": "Easy",
"normal": "Normal",
"hard": "Hard"
},
"errors": {
"loadFailed": "Could not load server properties.",
"saveFailed": "Could not save server properties."
}
},
"players": {
"loading": "Loading…",
"onlineCount": "Online players",
"whitelistCount": "Whitelist entries",
"empty": "No players online.",
"retry": "Retry",
"columns": {
"name": "Player",
"ping": "Ping"
},
"errors": {
"loadFailed": "Could not load player list."
}
}
}
}