-
Notifications
You must be signed in to change notification settings - Fork 0
/
messages.py
88 lines (50 loc) · 1.92 KB
/
messages.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
GREETING_NEW = """Hello {}\!
You seem to be a new user\!
You are now part of upcoming lunch lotteries\.
"""
GREETING = """Hello {}\!
Lunch Lottery is conducted every day at {}\."""
TALLY = """There are {} people using this bot\!"""
REMINDER = """Lunch Lottery is conducted at {}\.
If you don't want to take part to the next lunch pairing, use `\/skip`\."""
LUNCH = """Today you'll be having lunch with @{}\!
You share the group *{}* and you're both free between *{}*\.
Send them a message\!"""
MISS = """Sorry, you were the odd one out today and we couldn't find you a lunch partner :("""
POOL_EXPLANATION = """The lunch lotteries are conducted among the group members\.
Here you can manage the groups you are a member of, and join new ones\.
You can also create your own group\.
"""
POOL_BROWSE_PUBLIC = """Click on the groups below to view them\."""
POOL_DESCRIPTION = """*{}*
_{} _
Public: {}
Members: {}
{}
"""
CREATE_POOL0 = """Let's create you a new lottery lunch group\!
Please enter the name of your group\.
"""
CREATE_POOL1 = """Set name to *{}*,
Do you want your group to be public or private?"""
CREATE_POOL2 = """Do you want to add a description?"""
CREATE_POOL3 = """Please type your group's description\."""
CREATE_POOL4 = """Creating group\.
Name: {}
Description: {}
Public: {}"""
CREATE_POOL_CANCEL = """Group creation cancelled\."""
JOIN_POOL_PROMT = """Enter the group's name you want to join\."""
JOIN_POOL_FAIL = """Group named _{} _doesn't exist\."""
JOIN_POOL_ALREADY_MEMBER = """You are already a member of _{}\._"""
JOIN_POOL_SUCCESS = """You have joined group _{}\._"""
LEAVE_POOL_FAIL = """Group named _{} _doesn't exist\."""
LEAVE_POOL_NOT_MEMBER = """You are not a member of _{}\._"""
LEAVE_POOL_SUCCESS = """You have left group _{}\._"""
POOL_EDIT = """Please enter the new {} of your group\."""
POOL_EDIT_CONFIRM = """change {} {} to {}?"""
SCHEDULE_MENU = """Schedule for *{}*,
```
{}
```
"""