You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
msg=f'This is your current Others settings.\nClick on "Add new" to add a new one (max 5).\nIf you wish to update, you will have to do so manually in the "Tracker" sheet.\n\nPayment, Category\n'
Copy file name to clipboardExpand all lines: bot/text_str.py
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -41,14 +41,19 @@
41
41
42
42
QUICK_SETUP_TRANSPORT="You have not set up your quick add settings for transport yet, please do so by typing /config"
43
43
QUICK_SETUP_OTHER="You have not set up your quick add settings for others yet, please do so by typing /config"
44
+
QUICK_OTHER_LIMIT=5# max i can go is 10, but testing with 5 first
45
+
QUICK_OTHER_TEXT=f'This is your current Others settings.\nClick on "Add new" to add a new one (max {QUICK_OTHER_LIMIT}).\nIf you wish to update, you will have to do so manually in the "Tracker" sheet.\n\nPayment, Category\n'
44
46
45
47
HELP_TEXT= (
46
48
"To get started, please type /start\n"
47
49
+"Remember to configure your Dropdown sheet to get started on this bot.\n\n"
48
-
+"To configure, type /config\n"
49
-
+"To add entry, type /addentry\n"
50
-
+"To add transport quickly, type /addtransport\n"
51
-
+"To add others quickly, type /addothers\n"
50
+
+"/config - Update Sheet Settings"
51
+
+"/addentry - Add Expense Entry\n"
52
+
+"/addtransport - Quick Add Transport Entry\n"
53
+
+"/addothers - Quick Add Other Entry\n"
54
+
+"/addincome - Add Income Entry\n"
55
+
+"/retrievetransaction - Retrieve transaction from dates\n"
56
+
+"/cancel - Cancel Conversation\n"
52
57
)
53
58
54
59
RETRIEVE_TRANSACTION_TEXT="Please specify the date and month you wish to retrieve from in this format: DD MMM\ne.g 16 Mar\nor use /cancel to exit"
0 commit comments