source: python-cinema-club-bot/strings.py@ 0d48ea2

Last change on this file since 0d48ea2 was 0d48ea2, checked in by Mikhail Kirillov <w96k@…>, on Oct 9, 2024 at 3:40:27 AM

Add /set command; Add error_handler;

  • Property mode set to 100644
File size: 967 bytes
Line 
1# This file is part of python-cinema-club-bot
2# contributed in 2024 by Mikhail Kirillov (~w96k) <w96k@runbox.com>
3
4# To the extent possible under law, the author(s) have dedicated all copyright
5# and related and neighboring rights to this software to the public domain
6# worldwide. This software is distributed without any warranty.
7
8# You should have received a copy of the CC0 Public Domain Dedication along
9# with this software. If not, see:
10# <http://creativecommons.org/publicdomain/zero/1.0/>
11
12INVALID_COMMAND = "Invalid command. Available commands: /add /list /remove /chooser /about"
13USER_NOT_PROVIDED = "User(s) is not provided"
14EXPECTED_ONE_USER = "Expected only one user"
15USER_ADD = "User {user} has been added"
16USERS_ADDED = "Users have been added successfully. Use /list to view."
17USER_REMOVE = "User {user} has been removed. Use /list to view."
18USERS_REMOVED = "Users has been removed"
19USER_SET = "Users have been set successfully. Use /list to view."
20
Note: See TracBrowser for help on using the repository browser.