rust/hedgewars-server/src/handlers/strings.rs
changeset 15446 61a0bd0bb021
parent 15445 96e438b114f0
child 15487 4cc9ec732392
equal deleted inserted replaced
15445:96e438b114f0 15446:61a0bd0bb021
     1 pub const ACCESS_DENIED: &str = "Access denied.";
     1 pub const ACCESS_DENIED: &str = "Access denied.";
       
     2 pub const AUTHENTICATION_FAILED: &str = "Authentication failed.";
     2 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: $()*+?[]^{|}";
     3 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: $()*+?[]^{|}";
     3 pub const NO_ROOM: &str = "No such room.";
     4 pub const NO_ROOM: &str = "No such room.";
     4 pub const NO_USER: &str = "No such user.";
     5 pub const NO_USER: &str = "No such user.";
       
     6 pub const REPLAY_LOAD_FAILED: &str = "Could't load the replay";
       
     7 pub const REPLAY_NOT_SUPPORTED: &str = "This server does not support replays!";
       
     8 pub const REGISTRATION_REQUIRED: &str = "This server only allows registered users to join.";
       
     9 pub const REGISTERED_ONLY_ENABLED: &str =
       
    10     "This server no longer allows unregistered players to join.";
       
    11 pub const REGISTERED_ONLY_DISABLED: &str = "This server now allows unregistered players to join.";
       
    12 pub const ROOM_CONFIG_SAVE_FAILED: &str = "Unable to save the room configs.";
       
    13 pub const ROOM_CONFIG_LOAD_FAILED: &str = "Unable to load the room configs.";
       
    14 pub const ROOM_CONFIG_DESERIALIZE_FAILED: &str = "Unable to deserialize the room configs.";
       
    15 pub const ROOM_CONFIG_LOADED: &str = "Room configs loaded successfully.";
       
    16 pub const ROOM_CONFIG_SAVED: &str = "Room configs saved successfully.";
     5 pub const ROOM_EXISTS: &str = "A room with the same name already exists.";
    17 pub const ROOM_EXISTS: &str = "A room with the same name already exists.";
     6 pub const ROOM_FULL: &str = "This room is already full.";
    18 pub const ROOM_FULL: &str = "This room is already full.";
     7 pub const ROOM_JOIN_RESTRICTED: &str = "Access denied. This room currently doesn't allow joining.";
    19 pub const ROOM_JOIN_RESTRICTED: &str = "Access denied. This room currently doesn't allow joining.";
       
    20 pub const SUPER_POWER: &str = "Super power activated.";
       
    21 pub const USER_OFFLINE: &str = "Player is not online.";
     8 pub const VARIABLE_UPDATED: &str = "Server variable has been updated.";
    22 pub const VARIABLE_UPDATED: &str = "Server variable has been updated.";
     9 pub const WRONG_PROTOCOL: &str = "Room version incompatible to your Hedgewars version!";
    23 pub const WRONG_PROTOCOL: &str = "Room version incompatible to your Hedgewars version!";