@daniel-szulc/react-weather-widget
Version:
A simple weather widget created using React.js ☀. This Component loading forecast data from various weather providers ⛈.
33 lines (32 loc) • 610 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.langText = void 0;
const langText = exports.langText = {
en: {
Wind: 'Wind',
Humidity: 'Humidity',
FeelsLike: 'Feels like'
},
pl: {
Wind: 'Wiatr',
Humidity: 'Wilgotność',
FeelsLike: 'Odczuwalna'
},
de: {
Wind: 'Wind',
Humidity: 'Feuchtigkeit',
FeelsLike: 'Gefühlt'
},
es: {
Wind: 'Viento',
Humidity: 'Humedad',
FeelsLike: 'Sensación'
},
ru: {
Wind: 'Ветер',
Humidity: 'Влажность',
FeelsLike: 'Ощущается как'
}
};