strings.go 842 B

123456789101112131415161718192021222324
  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. const (
  5. TextDisplay = "De link van %s toont: %s"
  6. TextYoutubeDuration = " (speelduur: %s)"
  7. )
  8. // Ignore is a map of title strings to ignore. Only exact matches will
  9. // be ignored.
  10. var Ignore = map[string]bool{
  11. "Imgur: The most awesome images on the Internet": true,
  12. "Imgur: The magic of the Internet": true,
  13. "Tweakers": true,
  14. "Privacy settings": true,
  15. "Cookies op AD.nl | AD.nl": true,
  16. "Cookies op Trouw.nl": true,
  17. "Cookies op gelderlander.nl | gelderlander.nl": true,
  18. "Too Many Requests": true,
  19. "FOK.nl cookie-informatie": true,
  20. }