strings.go 730 B

1234567891011121314151617
  1. // This file is subject to a 1-clause BSD license.
  2. // Its contents can be found in the enclosed LICENSE file.
  3. package weather
  4. const (
  5. TextLanguageISO = "NL"
  6. TextCurrentWeatherName = "weer"
  7. TextForecastName = "weerfc"
  8. TextLocation = "lokatie"
  9. TextNoWeather = "%s, het weerbericht is momenteel niet beschikbaar."
  10. TextNoResult = "%s, er is momenteel geen data beschikbaar voor deze lokatie."
  11. TextLocationsText = "%s: er zijn meerdere lokaties met deze naam: %s"
  12. TextCurrentWeatherDisplay = "%s, in %s is het %d°C, %s, luchtdruk: %s hPa, luchtvochtigheid: %s, wind: %.1f km/u uit richting: %s."
  13. TextForecastDisplay = "Weersvoorspelling voor %s:"
  14. )