-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings.py
37 lines (20 loc) · 1.29 KB
/
strings.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
#!/usr/bin/env python3
HELLO_MSG = """Welcome to the SG Blood Stocks Bot!
We update you on the blood stock levels of the Singapore Red Cross, as guess-timated from the Red Cross website. Disclaimer: this is not an official source of information at all.
You can subscribe (/subscribe) to updates for specific blood types so you know when to donate.
You can check for the latest change (/changes) in blood stock levels over the past day.
You can check blood stock levels manually (/check).
Find out how to donate with (/donate).
Read this help message anytime with (/help).
"""
ABOUT_MSG = """SG Blood Stocks Bot Version 0.4 (Beta)
This bot guess-timates blood stock data from https://www.redcross.sg/. Disclaimer: this is not an official source of information at all.
Please report any bugs to the email found at https://sriramsami.com
Alternatively, open a bug report at https://github.com/frizensami/sgbloodstocksbot/issues"""
DONATE_MSG = """1. Check your eligibility for blood donation at https://redcross.sg/give-blood/can-i-donate-blood.html
2. Find out where you can donate at https://redcross.sg/give-blood/where-to-donate-today.html
3. Book an appointment to donate at https://donateblood.hsa.gov.sg/
"""
STATUS = ["Healthy", "Moderate", "Low", "Critical"]
UP_ARROW = "⬆️"
DOWN_ARROW = "🔻"