strings.go 984 B

1234567891011121314151617181920212223242526
  1. // This file is subject to a 1-clause BSD license.
  2. // Its contents can be found in the enclosed LICENSE file.
  3. package url
  4. // constants for this plugin
  5. const (
  6. TextDisplay = "De link van %s toont: %s"
  7. TextYoutubeDuration = " (speelduur: %s)"
  8. )
  9. // Ignore is a map of title strings to ignore. Only exact matches will
  10. // be ignored.
  11. var Ignore = map[string]bool{
  12. "Imgur: The most awesome images on the Internet": true,
  13. "Imgur: The magic of the Internet": true,
  14. "Tweakers": true,
  15. "Privacy settings": true,
  16. "Cookies op AD.nl | AD.nl": true,
  17. "Cookies op Trouw.nl": true,
  18. "Cookies op gelderlander.nl | gelderlander.nl": true,
  19. "Too Many Requests": true,
  20. "FOK.nl cookie-informatie": true,
  21. "Mibbit.com - Easy and fast Webchat in your browser": true,
  22. }