Would you guys mind helping at a simple translation?
The OpenWeather API allows to use the lang
parameter to get the output in your language, and there’s quite a lot of languages to choose from. Localized output doesn’t look well if the rest of UI remains in English, so I thought to add a buch of translated string. Could you please copy, translate and paste the json below in any language you know other than en
and pl
?
Source:
{
"5-day-forecast": "5-day forecast",
"cloudiness": "Cloudiness",
"feels-like": "Feels like",
"gust": "gust",
"humidity": "Humidity",
"pressure": "Pressure",
"visibility": "Visibility",
"wind": "Wind"
}
Sample Polish translation:
{
"5-day-forecast": "prognoza pięciodniowa",
"cloudiness": "Zachmurzenie",
"feels-like": "Odczucie",
"gust": "w porywach",
"humidity": "Wilgotność",
"pressure": "Ciśnienie",
"visibility": "Widoczność",
"wind": "Wiatr"
}
Thanks in advance!