blob: 748844f610ae33a58fe1a87a043e719a5c9c4b27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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."
FailedCreateWarningDetailed = "Failed to create warning for %s: %v."
FailedDeactivateWarn = "Failed to deactivate warning."
)
|