OpenWeatherMap description of the weather in another language?



Hi, how can I use the "lang" parameter to describe the weather in another language?

if (responseCode == 200) {
			result = {
				"cod" => data["cod"],
				"lat" => data["coord"]["lat"],
				"lon" => data["coord"]["lon"],
				"dt" => data["dt"],
				"temp" => data["main"]["temp"],
				"temp_min" => data["main"]["temp_min"],
				"temp_max" => data["main"]["temp_max"],
				"humidity" => data["main"]["humidity"],
				"icon" => data["weather"][0]["icon"],
				"des" => data["weather"][0]["main"],
				"lang"  => data["des"][0]["bg"]