aboutsummaryrefslogtreecommitdiff
path: root/prompt
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2023-02-24 21:08:59 -0800
committerclarkzjw <[email protected]>2023-02-28 15:58:02 -0800
commit353b83d415061bff2881cbe324273409740be64c (patch)
tree420fa402e7eda3425fd69b24959cffb0b2cc5039 /prompt
parent0041eb4f9893687565e444be9d50648f49aa4d91 (diff)
downloadswarm2fediverse-353b83d415061bff2881cbe324273409740be64c.tar.gz
bot: implement delayed checkin, (kind of), some TODO leftfeature/delayed_checkin
Diffstat (limited to 'prompt')
-rw-r--r--prompt/string.py4
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
44PROMPT_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)."
43PROMPT_LIST = "You are linked with the following Fediverse accounts:" 47PROMPT_LIST = "You are linked with the following Fediverse accounts:"
44PROMPT_LIST_NO_RESULT = "You are not linked with any Fediverse account yet. \n\n Input <code>/login</code> to login." 48PROMPT_LIST_NO_RESULT = "You are not linked with any Fediverse account yet. \n\n Input <code>/login</code> to login."
45PROMPT_LOGOUT = "Choose Fediverse account to logout" 49PROMPT_LOGOUT = "Choose Fediverse account to logout"
Powered by cgit v1.2.3 (git 2.41.0)