diff options
author | clarkzjw <[email protected]> | 2023-02-24 21:08:59 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-28 15:58:02 -0800 |
commit | 353b83d415061bff2881cbe324273409740be64c (patch) | |
tree | 420fa402e7eda3425fd69b24959cffb0b2cc5039 /prompt | |
parent | 0041eb4f9893687565e444be9d50648f49aa4d91 (diff) | |
download | swarm2fediverse-feature/delayed_checkin.tar.gz |
bot: implement delayed checkin, (kind of), some TODO leftfeature/delayed_checkin
Diffstat (limited to 'prompt')
-rw-r--r-- | prompt/string.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/prompt/string.py b/prompt/string.py index 3cc0a24..32f9aee 100644 --- a/prompt/string.py +++ b/prompt/string.py | |||
@@ -37,9 +37,13 @@ PROMPT_HELP = "Available commands:" \ | |||
37 | "\n`/list` - list current linked Fediverse accounts" \ | 37 | "\n`/list` - list current linked Fediverse accounts" \ |
38 | "\n`/logout` - logout from specified Fediverse account, default logout from all" \ | 38 | "\n`/logout` - logout from specified Fediverse account, default logout from all" \ |
39 | "\n`/vis` - toggle visibility of your checkins on specified instances, default=private" \ | 39 | "\n`/vis` - toggle visibility of your checkins on specified instances, default=private" \ |
40 | "\n`/delay` - set delayed checkin in minutes, default=0" \ | ||
40 | "\n`/tos` - show ToS message" \ | 41 | "\n`/tos` - show ToS message" \ |
41 | "\n`/cancel` - cancel current operation during checkins" | 42 | "\n`/cancel` - cancel current operation during checkins" |
42 | 43 | ||
44 | PROMPT_DELAYED_CHECKIN = "How many minutes to delay your checkin? By default, checkin will be posted immediately.\n" \ | ||
45 | "If you wish to set delayed checkin, at least <b>5</b> minutes is required. \n" \ | ||
46 | "Input less than 5 will be set to 0 (immediate checkin)." | ||
43 | PROMPT_LIST = "You are linked with the following Fediverse accounts:" | 47 | PROMPT_LIST = "You are linked with the following Fediverse accounts:" |
44 | PROMPT_LIST_NO_RESULT = "You are not linked with any Fediverse account yet. \n\n Input <code>/login</code> to login." | 48 | PROMPT_LIST_NO_RESULT = "You are not linked with any Fediverse account yet. \n\n Input <code>/login</code> to login." |
45 | PROMPT_LOGOUT = "Choose Fediverse account to logout" | 49 | PROMPT_LOGOUT = "Choose Fediverse account to logout" |