strings.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. // This file is subject to a 1-clause BSD license.
  2. // Its contents can be found in the enclosed LICENSE file.
  3. package admin
  4. const (
  5. // ref: https://godoc.org/time#Time.Format
  6. TextDateFormat = "2 January, 2006"
  7. TextTimeFormat = "15:04 MST"
  8. TextFloodName = "flood"
  9. TextFloodDisplay = "%s heeft de source code gelezen %d"
  10. TextFloodCount = "aantal"
  11. TextHelpName = "help"
  12. TextHelpAll = "Commando's (zie ook https://notabug.org/mouz/bot/wiki ):"
  13. TextHelpAdmins = "Commando's beschikbaar voor beheerders: !baas, !herstart, !join, !n00p, !nick, !ontbaas, !part."
  14. TextNickName = "nick"
  15. TextNickNickName = "naam"
  16. TextNickPassName = "wachtwoord"
  17. TextJoinName = "join"
  18. TextJoinChannelName = "kanaal"
  19. TextJoinKeyName = "sleutel"
  20. TextPartName = "part"
  21. TextPartChannelName = "kanaal"
  22. TextNoopName = "n00p"
  23. TextNoopChannelName = "kanaal"
  24. TextReloadName = "herstart"
  25. TextAuthListName = "bazen"
  26. TextAuthListDisplay = "De beheerder(s) is/zijn: %s"
  27. TextAuthorizeName = "baas"
  28. TextAuthorizeMaskName = "hostmask"
  29. TextAuthorizeDisplay = "Gebruiker %q is toegevoegd aan de beheerderslijst."
  30. TextDeauthorizeName = "ontbaas"
  31. TextDeauthorizeMaskName = "hostmask"
  32. TextDeauthorizeDisplay = "Gebruiker %q is verwijderd van de beheerderslijst."
  33. TextVersionName = "versie"
  34. 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"
  35. )
  36. // CommandsHelp is a complete list of available (non-admin) commands. It can be
  37. // generated using listcommands.sh in the bot.wiki repository.
  38. var CommandsHelp = map[int]string{
  39. 1: "!bazen",
  40. 2: "!bier <wie>",
  41. 3: "!cola <wie>",
  42. 4: "!fris <wie>",
  43. 5: "!help",
  44. 6: "!joint <wie>",
  45. 7: "!knmi",
  46. 8: "!koffie <wie> / !kof <wie>",
  47. 9: "!peuk <wie>",
  48. 10: "!reminder_remove <code> / !rr <code>",
  49. 11: "!reminders / !rl",
  50. 12: "!reminder <tijd> <bericht> / !r <tijd> <bericht>",
  51. 13: "!reminder <tijd> / !r <tijd>",
  52. 14: "!thee <wie>",
  53. 15: "!versie",
  54. 16: "!weer <lokatie>",
  55. 17: "!wijn <wie>",
  56. }