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