blob: d29a34b7dd40b4e9ba47df31ef38fceb5099c871 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package messages
const (
CannotWarnSelf = "You cannot warn yourself."
CannotWarnOwner = "You cannot warn the owner."
CannotWarnAdmin = "Only the owner can warn an administrator."
WarningTitleRequired = "Warning title is required."
WarningMessageRequired = "Warning message is required."
WarningNotFound = "Warning not found."
WarningAlreadyInactive = "Warning is already inactive."
FailedCreateWarning = "Failed to create warning."
FailedDeactivateWarn = "Failed to deactivate warning."
)
|