Changeset 69dd60c in python-cinema-club-bot for strings.py
- Timestamp:
- Oct 11, 2024, 1:53:24 AM (5 weeks ago)
- Branches:
- master
- Children:
- ac7b16a
- Parents:
- 694d823
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
strings.py
r694d823 r69dd60c 20 20 MOVIE_REMOVE = "Movie \"{title}\" with id {id} has been removed" 21 21 MOVIE_SET = "Movie \"{title}\" proposed by {user} is succesfully set as next to watch" 22 MOVIES_LIST = "\"{title}\" IMDB:{id}by {user} \n"22 MOVIES_LIST = "\"{title}\" by {user} \n" 23 23 NO_MOVIES = "No movies. You can add movie if you are next to choose (see /next). Too add a movie use /movie <imdb_id>" 24 24 … … 55 55 EVENT_CREATED = "Event \"{movie}\" at {when} was created" 56 56 EVENT_EDITED = "Event \"{movie}\" at {old_when} in {old_where} was modified to {when} in {where}" 57 EVENTS_LIST = "[{finished}] \"{movie}\" by {user} at {when} in {where}\n" 57 EVENTS_LIST = "[{status}] \"{movie}\" by {user} at {when} in {where}\n" 58 EVENTS_LIST_MOVIE_SET = "[{status}] \"{movie}\" by {user}\n" 59 EVENTS_LIST_PLANNING = "[{status}] by {user}\n" 58 60 EVENT_MOVIE_NOT_CHOOSEN = "You should choose a film first using /movie <imdb_id>" 59 61 EVENT_MOVIE_NOT_SET = "<None>" 60 EVENT_USER_HAD_EVENT = "User {user} have already finished event, so he can't choose twice. See /next or /list" 62 EVENT_USER_HAD_MOVIE = "User {user} can't set the sa, so he can't choose twice. See /next or /list" 63 EVENT_FINISHED = "Event is finished. Use /next to see who chooses a film now." 61 64 NO_EVENTS = "No events." 62 65 63 66 UNDEFINED_ERROR = "Exception: something unexpected happened. Check the logs." 64 67 68 ANNOUNCEMENT_EVENT_NEEDS_EDITING = "Event is missing either Movie, When or Where fields. See /event" 65 69 ANNOUNCEMENT_FINISHED_EVENT = "There is no planned events. Create one using /event <when> <where>" 66 70 ANNOUNCEMENT_TEMPLATE = """
Note:
See TracChangeset
for help on using the changeset viewer.