--- a/rust/hedgewars-server/src/handlers/strings.rs Sat Dec 21 00:26:17 2019 +0300
+++ b/rust/hedgewars-server/src/handlers/strings.rs Sat Dec 21 23:33:50 2019 +0300
@@ -3,6 +3,7 @@
pub const ILLEGAL_ROOM_NAME: &str = "Illegal room name! A room name must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}";
pub const NO_ROOM: &str = "No such room.";
pub const NO_TEAM: &str = "No such team.";
+pub const NO_TEAM_TO_REMOVE: &str = "Error: The team you tried to remove does not exist.";
pub const NO_USER: &str = "No such user.";
pub const NOT_MASTER: &str = "You're not the room master!";
pub const REPLAY_LOAD_FAILED: &str = "Could't load the replay";
@@ -19,7 +20,13 @@
pub const ROOM_EXISTS: &str = "A room with the same name already exists.";
pub const ROOM_FULL: &str = "This room is already full.";
pub const ROOM_JOIN_RESTRICTED: &str = "Access denied. This room currently doesn't allow joining.";
+pub const ROUND_IN_PROGRESS: &str = "Joining not possible: Round is in progress.";
pub const SUPER_POWER: &str = "Super power activated.";
+pub const TEAM_EXISTS: &str = "There's already a team with same name in the list.";
+pub const TEAM_NOT_OWNED: &str = "You can't remove a team you don't own.";
+pub const TEAM_ADD_RESTRICTED: &str = "This room currently does not allow adding new teams.";
+pub const TOO_MANY_HEDGEHOGS: &str = "Too many hedgehogs!";
+pub const TOO_MANY_TEAMS: &str = "Too many teams!";
pub const USER_OFFLINE: &str = "Player is not online.";
pub const VARIABLE_UPDATED: &str = "Server variable has been updated.";
pub const WRONG_PROTOCOL: &str = "Room version incompatible to your Hedgewars version!";