You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
598 B
25 lines
598 B
package txt
|
|
|
|
const (
|
|
CommandHelp = "!help"
|
|
CommandState = "!state"
|
|
CommandClose = "!close"
|
|
CommandClosed = "!closed"
|
|
|
|
StateUnknown = "Ich weiß leider nicht ob der Space offen ist."
|
|
StateOpen = "Space ist OFFEN."
|
|
StateClosed = "Space ist zu."
|
|
|
|
TransitionToOpen = "Space ist jetzt OFFEN!"
|
|
TransitionToClosed = "Space ist jetzt ZU!"
|
|
|
|
HelpMessage = `Spacebot hat folgende Kommandos:
|
|
|
|
!help - Diese Nachricht.
|
|
!state - Ist der Space offen?
|
|
!close - Space ist zu.
|
|
|
|
Gern geschehen.`
|
|
|
|
ErrorNonPublic = "Bitte mach das öffentlich, damit jeder weiß von wem die Information ist."
|
|
)
|
|
|