12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- // This file is subject to a 1-clause BSD license.
- // Its contents can be found in the enclosed LICENSE file.
- package admin
- const (
- // ref: https://godoc.org/time#Time.Format
- TextDateFormat = "2 January, 2006"
- TextTimeFormat = "15:04 MST"
- TextFloodName = "flood"
- TextFloodDisplay = "%s heeft de source code gelezen %d"
- TextFloodCount = "aantal"
- TextHelpName = "help"
- TextHelpAll = "Commando's (zie ook https://notabug.org/mouz/bot/wiki ):"
- TextHelpAdmins = "Commando's beschikbaar voor beheerders: !baas, !herstart, !join, !n00p, !nick, !ontbaas, !part."
- TextNickName = "nick"
- TextNickNickName = "naam"
- TextNickPassName = "wachtwoord"
- TextJoinName = "join"
- TextJoinChannelName = "kanaal"
- TextJoinKeyName = "sleutel"
- TextPartName = "part"
- TextPartChannelName = "kanaal"
- TextNoopName = "n00p"
- TextNoopChannelName = "kanaal"
- TextReloadName = "herstart"
- TextAuthListName = "bazen"
- TextAuthListDisplay = "De beheerder(s) is/zijn: %s"
- TextAuthorizeName = "baas"
- TextAuthorizeMaskName = "hostmask"
- TextAuthorizeDisplay = "Gebruiker %q is toegevoegd aan de beheerderslijst."
- TextDeauthorizeName = "ontbaas"
- TextDeauthorizeMaskName = "hostmask"
- TextDeauthorizeDisplay = "Gebruiker %q is verwijderd van de beheerderslijst."
- TextVersionName = "versie"
- TextVersionDisplay = "%s, ik ben %s, versie %s. Mijn laatste wijziging was op %s, om %s. De laatste herstart was %.0fd%02.0fu%02.0fm%02.0fs geleden. Mijn broncode is te vinden op: https://notabug.org/mouz/bot"
- )
- // CommandsHelp is a complete list of available (non-admin) commands. It can be
- // generated using listcommands.sh in the bot.wiki repository.
- var CommandsHelp = map[int]string{
- 1: "!bazen",
- 2: "!bier <wie>",
- 3: "!boksbal <wie>",
- 4: "!boks <wie>",
- 5: "!cola <wie>",
- 6: "!fris <wie>",
- 7: "!help",
- 8: "!hond <wie>",
- 9: "!joint <wie>",
- 10: "!knmi",
- 11: "!koffie <wie> / !kof <wie>",
- 12: "!lollie <wie>",
- 13: "!peuk <wie>",
- 14: "!reminder_remove <code> / !rr <code>",
- 15: "!reminders / !rl",
- 16: "!reminder <tijd> <bericht> / !r <tijd> <bericht>",
- 17: "!reminder <tijd> / !r <tijd>",
- 18: "!sokken <wie>",
- 19: "!thee <wie>",
- 20: "!versie",
- 21: "!weer <lokatie>",
- 22: "!wijn <wie>",
- }
|