strings.go 1.2 KB

1234567891011121314151617181920212223242526272829
  1. // This file is subject to a 1-clause BSD license.
  2. // Its contents can be found in the enclosed LICENSE file.
  3. package owm
  4. // Language specific constants for this package
  5. const (
  6. TextLanguage = "nl"
  7. TextUnits = "metric"
  8. TextCurrentWeatherName = "weer"
  9. TextLocation = "lokatie"
  10. TextNoWeather = "%s, het weerbericht is momenteel niet beschikbaar."
  11. TextNotFound404 = "De weerserver (OpenWeatherMap) kent '%s' niet. Kijk op https://notabug.org/mouz/bot/wiki/PlacesNL voor een lijst met Nederlandse plaatsnamen. Zoek op https://www.openweathermap.org naar plaatsnamen van over de hele wereld."
  12. TextCurrentWeatherDisplay = "%s, in %s is het %s, %s%s, luchtdruk %.0f hPa, luchtvochtigheid %.0f%%, " +
  13. "wind %.1f m/s (kracht %.0f) uit richting %s%s"
  14. TextTempExact = "%.0f°C"
  15. TextTempRange = "tussen %.0f°C en %.0f°C"
  16. TextRainFall = ", regen %.1f mm/uur"
  17. TextSnowFall = ", sneeuw %.1f mm/uur"
  18. TextTimeZone = "Europe/Amsterdam"
  19. TextTimeFormat = "15:04"
  20. TextSunRiseSet = ", zon op %s onder %s"
  21. )
  22. // Language specific variables for this package
  23. var (
  24. TextWindDirection = [16]string{"N", "NNO", "NO", "ONO", "O", "OZO", "ZO", "ZZO", "Z", "ZZW", "ZW", "WZW", "W", "WNW", "NW", "NNW"}
  25. )