forked from 21isenough/LightningATM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.py
77 lines (63 loc) · 2.02 KB
/
messages.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Text for update_startup_screen()
startup_screen_1 = "Welcome to the"
startup_screen_2 = "LightningATM"
startup_screen_3 = "- please insert coins -"
# Text for update_qr_request()
qr_request_1 = "Please scan"
qr_request_2 = "your invoice in"
qr_request_3 = "Scanning..."
qr_request_4 = "for "
qr_request_5 = " sats."
# Text for update_qr_failed()
qr_failed_1 = "Scan failed."
qr_failed_2 = "Try again."
# Text for update_payout_screen()
payout_screen_1 = " sats"
payout_screen_2 = "on the way!"
# text for update_payment_failed()
payment_failed_1 = "Payment failed!"
payment_failed_2 = "Please contact"
payment_failed_3 = "operator."
# Text for update_thankyou_screen()
thankyou_screen_1 = "Enjoy your new"
thankyou_screen_2 = "satoshis!!"
thankyou_screen_3 = "#bitcoin #lightning"
# Text for update_nocoin_screen()
nocoin_screen_1 = "No coins added!"
nocoin_screen_2 = "Please add"
nocoin_screen_3 = "coins first"
# Text for update_lnurl_generation()
lnurl_generation_1 = "Generating"
lnurl_generation_2 = "QR code to scan"
# Text for update_shutdown_screen()
shutdown_screen_1 = "ATM turned off!"
shutdown_screen_2 = "Please contact"
shutdown_screen_3 = "operator."
# Text for update_wallet_scan()
wallet_scan_1 = "Please scan"
wallet_scan_2 = "your wallet"
wallet_scan_3 = "credentials."
# Text for update_lntxbot_balance()
lntxbot_balance_1 = "Success!!"
lntxbot_balance_2 = "Your current balance:"
lntxbot_balance_3 = " sats"
# Text for update_btcpay_lnd()
btcpay_lnd_1 = "Success!!"
btcpay_lnd_2 = "Successfuly scanned"
btcpay_lnd_3 = "BTCPay LND Wallet."
# Text for draw_lnurl_qr()
lnurl_qr_1 = "Scan to"
lnurl_qr_2 = "receive"
# Text for update_amount_screen()
amount_screen_1 = " sats"
amount_screen_2 = "Rate"
amount_screen_3 = "= "
amount_screen_4 = " sats/"
amount_screen_5 = "Fee"
amount_screen_6 = "= "
amount_screen_7 = "% ("
amount_screen_8 = " sats)"
# Text for update_lnurl_cancel_notice
lnurl_cancel_notice_1 = "Prepare for LNURL"
lnurl_cancel_notice_2 = "(Not LNURL compatible?"
lnurl_cancel_notice_3 = "Press button to cancel)"