summaryrefslogtreecommitdiff
path: root/shrine/messages/system.go
blob: e6fe442a88ec402e9e0f614a9f232d51c7c81363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package messages

const (
	StorageNotConfigured    = "Storage not configured."
	InvalidServerPort       = "Invalid server port: %d."
	InvalidDatabaseDriver   = "Invalid database driver: %s."
	DSNCannotBeEmpty        = "Data source name (DSN) cannot be empty."
	ConfigMustBePointer     = "Config must be a pointer to struct."
	FailedLoadTemplate      = "Failed to load %s template: %v."
	CannotActionSelf        = "You cannot %s yourself."
	CannotActionOwner       = "You cannot %s the owner."
	OnlyOwnerCanActionAdmin = "Only the owner can %s an administrator."
)