-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtexts.py
28 lines (21 loc) · 1004 Bytes
/
texts.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
expense_summary_justification = """
### Expense Summary
- **Expense Time:** {timestamp}
- **Value:** {value}
- **Tags:** {tags}
"""
expense_summary_approval = """
### Expense Summary
- **Expense Time:** {timestamp}
- **Value:** {value}
- **Tags:** {tags}
- **Justification:** {justification}
"""
expense_rejected_message = "Your request was rejected for the following reason(s): {reject_message}. \nPlease, contact the finance team for further assistance."
thread_title_pending_approval = "Expenses Pending Approval"
thread_title_pending_justification = "Expenses Pending Justification"
no_expenses_pending_approval = "There are no expenses pending approval."
no_expenses_pending_justification = "There are no expenses pending justification."
user_not_registered = "User is not registered in our database."
not_invoice_error = "Fatal: This does not seem to be an invoice."
value_mismatch_error = "Fatal: The value of the invoice is {invoice_value}. This does not seem to match the expected value."