summaryrefslogtreecommitdiff
path: root/strings.py
diff options
context:
space:
mode:
authorMikhail Kirillov <w96k@runbox.com>2024-10-09 03:40:27 +0400
committerMikhail Kirillov <w96k@runbox.com>2024-10-09 03:40:27 +0400
commit0d48ea28aeb8a6290d2aeab202efa9c8d6e30fe3 (patch)
tree8b83495d3eb235194b9d736bf0713ff362e27f2b /strings.py
parentcc34991f2098692a2cb2a9e913bd6667d38fdab5 (diff)
Add /set command; Add error_handler;
Diffstat (limited to 'strings.py')
-rw-r--r--strings.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/strings.py b/strings.py
index 0a7efb9..84171b8 100644
--- a/strings.py
+++ b/strings.py
@@ -9,8 +9,12 @@
# with this software. If not, see:
# <http://creativecommons.org/publicdomain/zero/1.0/>
-INVALID_COMMAND = "Invalid command. Available commands: /add"
+INVALID_COMMAND = "Invalid command. Available commands: /add /list /remove /chooser /about"
USER_NOT_PROVIDED = "User(s) is not provided"
EXPECTED_ONE_USER = "Expected only one user"
-USER_ADDED = "User {user} has been added"
-USER_REMOVED = "User {user} has been removed"
+USER_ADD = "User {user} has been added"
+USERS_ADDED = "Users have been added successfully. Use /list to view."
+USER_REMOVE = "User {user} has been removed. Use /list to view."
+USERS_REMOVED = "Users has been removed"
+USER_SET = "Users have been set successfully. Use /list to view."
+