Changeset 69dd60c in python-cinema-club-bot for strings.py


Ignore:
Timestamp:
Oct 11, 2024, 1:53:24 AM (5 weeks ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
ac7b16a
Parents:
694d823
Message:

Task #30. Allow anyone create or edit upcoming event

File:
1 edited

Legend:

Unmodified
Added
Removed
  • strings.py

    r694d823 r69dd60c  
    2020MOVIE_REMOVE = "Movie \"{title}\" with id {id} has been removed"
    2121MOVIE_SET = "Movie \"{title}\" proposed by {user} is succesfully set as next to watch"
    22 MOVIES_LIST = "\"{title}\" IMDB:{id} by {user} \n"
     22MOVIES_LIST = "\"{title}\" by {user} \n"
    2323NO_MOVIES = "No movies.  You can add movie if you are next to choose (see /next). Too add a movie use /movie <imdb_id>"
    2424
     
    5555EVENT_CREATED = "Event \"{movie}\" at {when} was created"
    5656EVENT_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"
     57EVENTS_LIST = "[{status}] \"{movie}\" by {user} at {when} in {where}\n"
     58EVENTS_LIST_MOVIE_SET = "[{status}] \"{movie}\" by {user}\n"
     59EVENTS_LIST_PLANNING = "[{status}] by {user}\n"
    5860EVENT_MOVIE_NOT_CHOOSEN = "You should choose a film first using /movie <imdb_id>"
    5961EVENT_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"
     62EVENT_USER_HAD_MOVIE = "User {user} can't set the sa, so he can't choose twice. See /next or /list"
     63EVENT_FINISHED = "Event is finished. Use /next to see who chooses a film now."
    6164NO_EVENTS = "No events."
    6265
    6366UNDEFINED_ERROR = "Exception: something unexpected happened. Check the logs."
    6467
     68ANNOUNCEMENT_EVENT_NEEDS_EDITING = "Event is missing either Movie, When or Where fields. See /event"
    6569ANNOUNCEMENT_FINISHED_EVENT = "There is no planned events. Create one using /event <when> <where>"
    6670ANNOUNCEMENT_TEMPLATE = """
Note: See TracChangeset for help on using the changeset viewer.