-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconstant_messages.go
29 lines (21 loc) · 1003 Bytes
/
constant_messages.go
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
package main
const (
// SuccessTitle is a generic success message for inline replies
SuccessTitle = "Here's your reflink!"
// PersonalTitle is a success message for personal reflinks
PersonalTitle = "Personal reflink"
// AlreadySent is an already sent request
AlreadySent = "You already sent this request."
// ApproveOrDeny is a message sent to a user when the registration is successful
ApproveOrDeny = "An administrator will either approve or deny your request as soon as possible!"
// HalfAdminAddNotify is a half admin add notify string
HalfAdminAddNotify = "A new code add request has been received from @"
// DENIED is.. DENIED
DENIED = "The administrator decided that your code cannot be added to this bot.\nSorry!"
// Accepted is happy feeling!
Accepted = "Your request has been accepted!"
)
// GetAdminAddNotify builds a string with a notification for the admin for a new user
func GetAdminAddNotify(username string) string {
return HalfAdminAddNotify + username + "!"
}