Changeset 23bddf3 in python-cinema-club-bot for strings.py
- Timestamp:
- Oct 10, 2024, 6:20:52 AM (5 weeks ago)
- Branches:
- master
- Children:
- 1f94544
- Parents:
- 8d2d5ac
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
strings.py
r8d2d5ac r23bddf3 21 21 MOVIE_SET = "Movie \"{title}\" proposed by {user} is succesfully set as next to watch" 22 22 MOVIES_LIST = "\"{title}\" IMDB:{id} by {user} \n" 23 NO_MOVIES = "No movies "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 25 25 USER_NOT_FOUND = "Provided user ({user}) not found. Check /list" … … 28 28 ADD_MORE_USERS = "There is no users added. You can add people who can choose movies using /add nickname" 29 29 NEXT_MOVIE_USER = "Next movie choice is up to {user}" 30 NEXT_MOVIE = " and they have choosen to watch \"{movie}\"" 30 31 31 32 USER_ADD = "User {user} has been added" … … 41 42 /event 1.08.2024/18:00 <where> 42 43 """ 43 EVENT_CANT_BE_IN_PAST = "Event can't happen in the past. You set {when}, but todayis {today}"44 EVENT_CANT_BE_IN_PAST = "Event can't happen in the past. You set {when}, but now is {today}" 44 45 EVENT_ARGS_NOT_PROVIDED = """ 45 46 Event commands need arguments provided: … … 53 54 """ 54 55 55 EVENT_CREATED = "Event at {when} was created"56 EVENT_EDITED = "Event at {when} was modified"56 EVENT_CREATED = "Event \"{movie}\" at {when} was created" 57 EVENT_EDITED = "Event \"{movie}\" at {old_when} in {old_where} was modified to {when} in {where}" 57 58 EVENTS_LIST = "[{finished}] \"{movie}\" by {user} at {when} in {where}\n" 58 59 EVENT_MOVIE_NOT_CHOOSEN = "You should choose a film first using /movie <imdb_id>" 59 60 EVENT_MOVIE_NOT_SET = "<None>" 60 61 EVENT_USER_HAD_EVENT = "User {user} have already finished event, so he can't choose twice. See /next or /list" 61 NO_EVENTS = "No events "62 NO_EVENTS = "No events." 62 63 63 64 UNDEFINED_ERROR = "Exception: something unexpected happened. Check the logs." 65 66 ANNOUNCEMENT_FINISHED_EVENT = "There is no planned events. Create one using /event <when> <where>" 67 ANNOUNCEMENT_TEMPLATE = """ 68 {intro} 69 70 Movie: {movie_title} 71 Choosen by: @{user} 72 Runtime: {movie_runtime} minutes 73 74 When: {when} 75 Where: {where} 76 77 Rating: {rating} 78 Genres: {genres} 79 80 https://imdb.com/title/tt{movie_id}/ 81 """ 82 83 ABOUT = """ 84 v{version} #{commit} 85 86 python-cinema-club-bot is a bot for Telegram specialized for managing cinema club activities. This software is released as Public Domain using CC0 license. 87 88 Project information: http://57.129.46.169/trac/wiki/python-cinema-club-bot 89 Source code: http://57.129.46.169/cgit/python-cinema-club-bot/ 90 91 Contributed in 2024 by Mikhail Kirillov (~w96k) <w96k@runbox.com> 92 93 To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. 94 95 You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see: <http://creativecommons.org/publicdomain/zero/1.0/> 96 """
Note:
See TracChangeset
for help on using the changeset viewer.