rust/hedgewars-server/src/handlers/strings.rs
author alfadur <mail@none>
Fri, 27 Dec 2019 22:36:19 +0300
changeset 15532 f1205f33bf5b
parent 15519 b3157d218ae2
child 15534 bb93e9642b5b
permissions -rw-r--r--
complete checker login handling
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15440
96e438b114f0 add missing file
alfadur
parents:
diff changeset
     1
pub const ACCESS_DENIED: &str = "Access denied.";
15532
f1205f33bf5b complete checker login handling
alfadur <mail@none>
parents: 15519
diff changeset
     2
pub const AUTHENTICATION_FAILED: &str = "Authentication failed";
f1205f33bf5b complete checker login handling
alfadur <mail@none>
parents: 15519
diff changeset
     3
pub const BAD_NUMBER: &str = "Bad number.";
f1205f33bf5b complete checker login handling
alfadur <mail@none>
parents: 15519
diff changeset
     4
pub const ILLEGAL_CLIENT_NAME: &str = "Illegal nickname! Nicknames must be between 1-40 characters long, must not have a trailing or leading space and must not have any of these characters: $()*+?[]^{|}";
15440
96e438b114f0 add missing file
alfadur
parents:
diff changeset
     5
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: $()*+?[]^{|}";
15532
f1205f33bf5b complete checker login handling
alfadur <mail@none>
parents: 15519
diff changeset
     6
pub const NICKNAME_PROVIDED: &str = "Nickname already provided.";
f1205f33bf5b complete checker login handling
alfadur <mail@none>
parents: 15519
diff changeset
     7
pub const NO_CHECKER_RIGHTS: &str = "No checker rights";
15440
96e438b114f0 add missing file
alfadur
parents:
diff changeset
     8
pub const NO_ROOM: &str = "No such room.";
15482
4cc9ec732392 refactor some of the room handler
alfadur
parents: 15441
diff changeset
     9
pub const NO_TEAM: &str = "No such team.";
15519
b3157d218ae2 disallow mutable clients to leave the server
alfadur <mail@none>
parents: 15482
diff changeset
    10
pub const NO_TEAM_TO_REMOVE: &str = "Error: The team you tried to remove does not exist.";
15440
96e438b114f0 add missing file
alfadur
parents:
diff changeset
    11
pub const NO_USER: &str = "No such user.";
15482
4cc9ec732392 refactor some of the room handler
alfadur
parents: 15441
diff changeset
    12
pub const NOT_MASTER: &str = "You're not the room master!";
15532
f1205f33bf5b complete checker login handling
alfadur <mail@none>
parents: 15519
diff changeset
    13
pub const PROTOCOL_PROVIDED: &str = "Protocol already known.";
f1205f33bf5b complete checker login handling
alfadur <mail@none>
parents: 15519
diff changeset
    14
pub const PROTOCOL_TOO_OLD: &str = "Protocol version is too old";
15441
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    15
pub const REPLAY_LOAD_FAILED: &str = "Could't load the replay";
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    16
pub const REPLAY_NOT_SUPPORTED: &str = "This server does not support replays!";
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    17
pub const REGISTRATION_REQUIRED: &str = "This server only allows registered users to join.";
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    18
pub const REGISTERED_ONLY_ENABLED: &str =
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    19
    "This server no longer allows unregistered players to join.";
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    20
pub const REGISTERED_ONLY_DISABLED: &str = "This server now allows unregistered players to join.";
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    21
pub const ROOM_CONFIG_SAVE_FAILED: &str = "Unable to save the room configs.";
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    22
pub const ROOM_CONFIG_LOAD_FAILED: &str = "Unable to load the room configs.";
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    23
pub const ROOM_CONFIG_DESERIALIZE_FAILED: &str = "Unable to deserialize the room configs.";
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    24
pub const ROOM_CONFIG_LOADED: &str = "Room configs loaded successfully.";
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    25
pub const ROOM_CONFIG_SAVED: &str = "Room configs saved successfully.";
15440
96e438b114f0 add missing file
alfadur
parents:
diff changeset
    26
pub const ROOM_EXISTS: &str = "A room with the same name already exists.";
96e438b114f0 add missing file
alfadur
parents:
diff changeset
    27
pub const ROOM_FULL: &str = "This room is already full.";
96e438b114f0 add missing file
alfadur
parents:
diff changeset
    28
pub const ROOM_JOIN_RESTRICTED: &str = "Access denied. This room currently doesn't allow joining.";
15519
b3157d218ae2 disallow mutable clients to leave the server
alfadur <mail@none>
parents: 15482
diff changeset
    29
pub const ROUND_IN_PROGRESS: &str = "Joining not possible: Round is in progress.";
15441
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    30
pub const SUPER_POWER: &str = "Super power activated.";
15519
b3157d218ae2 disallow mutable clients to leave the server
alfadur <mail@none>
parents: 15482
diff changeset
    31
pub const TEAM_EXISTS: &str = "There's already a team with same name in the list.";
b3157d218ae2 disallow mutable clients to leave the server
alfadur <mail@none>
parents: 15482
diff changeset
    32
pub const TEAM_NOT_OWNED: &str = "You can't remove a team you don't own.";
b3157d218ae2 disallow mutable clients to leave the server
alfadur <mail@none>
parents: 15482
diff changeset
    33
pub const TEAM_ADD_RESTRICTED: &str = "This room currently does not allow adding new teams.";
b3157d218ae2 disallow mutable clients to leave the server
alfadur <mail@none>
parents: 15482
diff changeset
    34
pub const TOO_MANY_HEDGEHOGS: &str = "Too many hedgehogs!";
b3157d218ae2 disallow mutable clients to leave the server
alfadur <mail@none>
parents: 15482
diff changeset
    35
pub const TOO_MANY_TEAMS: &str = "Too many teams!";
15441
61a0bd0bb021 refactor root handler
alfadur
parents: 15440
diff changeset
    36
pub const USER_OFFLINE: &str = "Player is not online.";
15440
96e438b114f0 add missing file
alfadur
parents:
diff changeset
    37
pub const VARIABLE_UPDATED: &str = "Server variable has been updated.";
96e438b114f0 add missing file
alfadur
parents:
diff changeset
    38
pub const WRONG_PROTOCOL: &str = "Room version incompatible to your Hedgewars version!";