rust/hedgewars-server/src/handlers/strings.rs
changeset 15534 bb93e9642b5b
parent 15532 f1205f33bf5b
child 15697 25371cae9fd7
equal deleted inserted replaced
15533:0606f89698e7 15534:bb93e9642b5b
    25 pub const ROOM_CONFIG_SAVED: &str = "Room configs saved successfully.";
    25 pub const ROOM_CONFIG_SAVED: &str = "Room configs saved successfully.";
    26 pub const ROOM_EXISTS: &str = "A room with the same name already exists.";
    26 pub const ROOM_EXISTS: &str = "A room with the same name already exists.";
    27 pub const ROOM_FULL: &str = "This room is already full.";
    27 pub const ROOM_FULL: &str = "This room is already full.";
    28 pub const ROOM_JOIN_RESTRICTED: &str = "Access denied. This room currently doesn't allow joining.";
    28 pub const ROOM_JOIN_RESTRICTED: &str = "Access denied. This room currently doesn't allow joining.";
    29 pub const ROUND_IN_PROGRESS: &str = "Joining not possible: Round is in progress.";
    29 pub const ROUND_IN_PROGRESS: &str = "Joining not possible: Round is in progress.";
       
    30 pub const ROOM_REGISTRATION_REQUIRED: &str =
       
    31     "Access denied. This room is for registered users only.";
    30 pub const SUPER_POWER: &str = "Super power activated.";
    32 pub const SUPER_POWER: &str = "Super power activated.";
    31 pub const TEAM_EXISTS: &str = "There's already a team with same name in the list.";
    33 pub const TEAM_EXISTS: &str = "There's already a team with same name in the list.";
    32 pub const TEAM_NOT_OWNED: &str = "You can't remove a team you don't own.";
    34 pub const TEAM_NOT_OWNED: &str = "You can't remove a team you don't own.";
    33 pub const TEAM_ADD_RESTRICTED: &str = "This room currently does not allow adding new teams.";
    35 pub const TEAM_ADD_RESTRICTED: &str = "This room currently does not allow adding new teams.";
    34 pub const TOO_MANY_HEDGEHOGS: &str = "Too many hedgehogs!";
    36 pub const TOO_MANY_HEDGEHOGS: &str = "Too many hedgehogs!";
    35 pub const TOO_MANY_TEAMS: &str = "Too many teams!";
    37 pub const TOO_MANY_TEAMS: &str = "Too many teams!";
    36 pub const USER_OFFLINE: &str = "Player is not online.";
    38 pub const USER_OFFLINE: &str = "Player is not online.";
    37 pub const VARIABLE_UPDATED: &str = "Server variable has been updated.";
    39 pub const VARIABLE_UPDATED: &str = "Server variable has been updated.";
    38 pub const WRONG_PROTOCOL: &str = "Room version incompatible to your Hedgewars version!";
    40 pub const INCOMPATIBLE_ROOM_PROTOCOL: &str = "Room version incompatible to your Hedgewars version!";