diff options
author | clarkzjw <[email protected]> | 2023-02-22 11:43:10 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-22 11:43:10 -0800 |
commit | b3786171167337685c21d64f4eed4a7cc1c5b130 (patch) | |
tree | 8d1f31958930f4cc3628c8d5e31ad239bfb4857b /prompt | |
parent | eab21831cf13c9afdafc59adde32c85b9716e76b (diff) | |
download | swarm2fediverse-b3786171167337685c21d64f4eed4a7cc1c5b130.tar.gz |
more code formatting
Diffstat (limited to 'prompt')
-rw-r--r-- | prompt/string.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/prompt/string.py b/prompt/string.py index af3363a..9a5a357 100644 --- a/prompt/string.py +++ b/prompt/string.py | |||
@@ -1,9 +1,16 @@ | |||
1 | PROMPT_START = "Hello, this is `checkin.bot`. \n\n" \ | ||
2 | "This is a Telegram bot with functionality similar to Foursquare Swarm, " \ | ||
3 | "but check in and post your location to the Fediverse (Mastodon/Pleroma) instead of Twitter.\n\n" \ | ||
4 | "Aware of privacy concerns, this bot will not store your location data." \ | ||
5 | "*Be safe and cautious when sharing your real time location on the web.* \n\n" \ | ||
6 | "Start using this bot by sharing your location using Telegram context menu to it." | ||
7 | |||
1 | PROMPT_CHOOSE_ACTION = "Use bot keyboard to choose an action" | 8 | PROMPT_CHOOSE_ACTION = "Use bot keyboard to choose an action" |
2 | PROMPT_ADD_COMMENT = "You can continue adding comments, or press skip" | 9 | PROMPT_ADD_COMMENT = "You can continue adding comments, or press skip" |
3 | PROMPT_ADD_MEDIA = "You can continue adding photos, or press skip" | 10 | PROMPT_ADD_MEDIA = "You can continue adding photos, or press skip" |
4 | PROMPT_LOCATION_KEYWORD = "You can input location search keywords or press skip" | 11 | PROMPT_LOCATION_KEYWORD = "You can input location search keywords or press skip" |
5 | PROMPT_NO_NEARBY_POI = "No nearby places found. You can input location name manually" | 12 | PROMPT_WAIT_LOCATION_CONFIRMATION_NO_NEARBY_POI = "No nearby places found. But you can input location name manually." |
6 | PROMPT_CHOOSE_POI_FROM_LIST = "Where are you?" | 13 | PROMPT_WAIT_LOCATION_CONFIRMATION = "Where are you?" |
7 | PROMPT_HELP = "Use /start to test this bot." | 14 | PROMPT_HELP = "Use /start to test this bot." |
8 | PROMPT_CANCELED = "Canceled" | 15 | PROMPT_CANCELED = "Canceled" |
9 | PROMPT_MAX_PHOTO_REACHED = "Cannot attach more than 4 medias, only first 4 will be posted" | 16 | PROMPT_MAX_PHOTO_REACHED = "Cannot attach more than 4 medias, only first 4 will be posted" |