strings.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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: "!boksbal <wie>",
  42. 4: "!boks <wie>",
  43. 5: "!cola <wie>",
  44. 6: "!fris <wie>",
  45. 7: "!help",
  46. 8: "!hond <wie>",
  47. 9: "!joint <wie>",
  48. 10: "!knmi",
  49. 11: "!koffie <wie> / !kof <wie>",
  50. 12: "!lollie <wie>",
  51. 13: "!peuk <wie>",
  52. 14: "!reminder_remove <code> / !rr <code>",
  53. 15: "!reminders / !rl",
  54. 16: "!reminder <tijd> <bericht> / !r <tijd> <bericht>",
  55. 17: "!reminder <tijd> / !r <tijd>",
  56. 18: "!sokken <wie>",
  57. 19: "!thee <wie>",
  58. 20: "!versie",
  59. 21: "!weer <lokatie>",
  60. 22: "!wijn <wie>",
  61. }